Need help setting up your site or getting a certain feature working? Ask us, we'd love to help. Email Anne Jonas: anne@pculture.org

[HowTo] MUX Ogg(audio) & Ogv(video) to OGV on Ubuntu Linux

Published 1 year ago
Background thumbnail for [HowTo] MUX Ogg(audio) & Ogv(video) to OGV on Ubuntu Linux
Trying to mux an ogg vorbis audio stream and ogg theora video stream into an OGG Container using Terminal without transcoding. Alternately you can use mkvmerge(GUI) to mux the stream to Matroska Container. Maybe you need:
sudo apt-get install gstreamer
Type the below command in the terminal window:
gst-launch-0.10 filesrc location=out.ogv ! oggdemux ! theoraparse ! oggmux name=mux 
   ! filesink location=screencast.ogv filesrc location=out.ogg ! oggdemux ! vorbisparse ! mux
Loading...