Hallo

> I have got a AVI file which is in DivX;-) format done with the ffmpeg
> codec. Is there any way with the mjpegtools to bring this Video into
> VCD-Format and split the output into two files each about 650 MB?
Take a look at a late version of the mjpeghowto section: Creating videos
from other sources, subsection: Decoding streams with mplayer

Or in the german version (only in the PDF version on mjpeg.sf.net): look
for Dekomprimierung mit MPlayer.

It lookes like that for video:
mkfifo stream.yuv 
player -nosound -noframedrop -vo yuv4mpeg Datei.mpg &
cat sream.yuv | yuv2lav -o file.avi

You can replace the yuv2lav part with a mpeg2enc for VCD format: 
... | mpeg2enc -f 1 -o vcd.m1v

And for audio:
mplayer -vo null -ao pcm -aofile Datei.wav Datei.mpg
and then encode it with mp2enc or toolame. 

When multiplexing you only have to add a %02d to the filename so mplex
can split it at the proper size for a 650MB VCD. 

auf hoffentlich bald,

Berni the Chaos of Woodquarter

Email: [EMAIL PROTECTED]
www: http://www.lysator.liu.se/~gz/bernhard


-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
Mjpeg-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to