Convert OGM/MJPEG to OGG/Theora: Difference between revisions

From ElphelWiki
Jump to navigation Jump to search
Polto (talk | contribs)
No edit summary
 
Polto (talk | contribs)
No edit summary
 
Line 2: Line 2:


<pre>
<pre>
gst-launch-0.10 filesrc location=/path/video.ogm ! oggdemux ! ogmvideoparse ! decodebin  ! videorate ! video/x-raw-yuv,framerate=24/1 ! progressreport name=progress ! theoraenc quality=63 ! oggmux ! filesink location=/path/video.ogg
gst-launch-0.10 filesrc location=/path/video.ogm ! oggdemux ! ogmvideoparse ! \
decodebin  ! videorate ! video/x-raw-yuv,framerate=24/1 ! progressreport \
name=progress ! theoraenc quality=63 ! oggmux ! filesink location=/path/video.ogg
</pre>
</pre>

Latest revision as of 18:52, 3 August 2007

This script convert a OGM/MJPEG video to a OGG/Theora.

gst-launch-0.10 filesrc location=/path/video.ogm ! oggdemux ! ogmvideoparse ! \
decodebin  ! videorate ! video/x-raw-yuv,framerate=24/1 ! progressreport \
name=progress ! theoraenc quality=63 ! oggmux ! filesink location=/path/video.ogg