Skip to content

Instantly share code, notes, and snippets.

@frasertweedale
Created July 21, 2013 05:00
Show Gist options
  • Save frasertweedale/6047541 to your computer and use it in GitHub Desktop.
Save frasertweedale/6047541 to your computer and use it in GitHub Desktop.
gstreamer VOB to ogv pipeline
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