Created
July 21, 2013 05:00
-
-
Save frasertweedale/6047541 to your computer and use it in GitHub Desktop.
gstreamer VOB to ogv pipeline
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat $VOBFILES | gst-launch \ | |
filesrc location=/dev/fd/0 \ | |
! dvddemux name=demux \ | |
demux.current_audio \ | |
! queue \ | |
! a52dec \ | |
! audioconvert \ | |
! audioresample \ | |
! vorbisenc \ | |
! mux. \ | |
demux.current_video \ | |
! queue \ | |
! mpeg2dec \ | |
! ffmpegcolorspace \ | |
! theoraenc \ | |
! mux. \ | |
oggmux name=mux \ | |
! filesink location="$OUTFILE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment