[HowTo] MUX Ogg(audio) & Ogv(video) to OGV on Ubuntu Linux
Published 1 year ago
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 gstreamerType 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

