recover frame packed

Discuss about generic usage of MediaCoder.

Moderator: HuggiL

Post Reply
zigg
Amateur
Amateur
Posts: 16
Joined: Sat Jul 21, 2012 2:11 am

recover frame packed

Post by zigg » Tue Sep 04, 2012 3:43 am

Hello

when i do a xvid mp3 in a avi with bvop (fourcc xvid). I need frame packed (packed bitstream) to play on my old stand-alone divx player.
So i don't want to give up bvop. and i like mediacoder ... :mrgreen:
It's possible to apply the frame packed after mediacoder with mpeg4modifier.

the tips here http://forum.doom9.org/showthread.php?t=117553

the program of moitah.net
http://www.moitah.net/download/latest/M ... fierCL.zip

do the pack and replace the avi files packed and cleaned the temp
@ECHO OFF

md pack
FOR %%I IN (*.avi) DO ""C:\Program Files\MPEG4 Modifier\mmcl.exe" --pack "%%~fI" "%%~dpIpack\%%~nxI"
xcopy /y pack\*.avi
del pack\*.avi
rd /q pack
write the command line in notepad and rename .txt to .bat . Place it in the root of the folder contain avi
launch, it makes the work

ps to cancel replace --pack by --unpack and launch

Post Reply