Showing posts with label linux-terminal. Show all posts
Showing posts with label linux-terminal. Show all posts

Friday, October 9, 2009

cinelerra is blonkers

cinelerra does a messy job muxing audio and video.

1.....................
demux the video sound with ffmpeg first.
code:
..................................

$ ffmpeg -i source-video.avi -vn -acodec copy sound2.mp3

==================================
use cinellera to do your edits.
then use mplayer to mux every thing back to gather again.
mencoder:

$ mencoder source-video.avi -ovc copy -soundfile sound2.mp3
-o remuxed-output.avi



=================================