I have had the same Pb. Here's the way i change "dvsd" to "CDVC" fourcc, using a tiny patch tool and a unix shell. I know it's not simple, but it works ok and fast. - Step 1 - First you have to create the patcher. go to and download aPATCH v0.34 Write the folowing script in a text file (this one is to write the CDVC fourcc) ^FILECL^ ^GOTO^ 70 ^WRITE^ 43 44 56 43 ^GOTO^ BC ^WRITE^ 43 44 56 43 ^PRINT^ "Done!\n" ^END^ Of course, "43 44 56 43" is for "CDVC"; change this if you want another fourcc. Call it "cdvc.aps" for example, then run (from where you unziped apatch34.zip) : apatch cdvc.aps It creates "patch.com". Rename it to "cdvc.com" put this file in your windows directory (winnt). - step 2 - You also need a shell Get "UnxUtils.zip" at and put the sh.exe in your windows directory (winnt). - step 3 - Write the folowing script in a text file, call it "fcc.txt" for example, and put it in the same directory than your avi files: for i in *.avi do mv "$i" foo cmd /c "cdvc foo" mv foo "$i" done - step 4 - Open a command box, go to where your avi files are, run "sh fcc.txt". Well, that's all... the next time you only have to do step 4. Hope this helps... .