When you export MPEG2-DVD in Adobe Premiere, you might wind up with separate m2v and wav files instead of one nice tidy mpeg file that you can upload to an online video sharing site. Here’s a freeware way to combine those files:
Download the latest mplayer distributable for your CPU from http://tirnanog.fate.jp/mirror/mplayer/. You’ll need a heavy-duty unzip program like WinRAR to open the .7z file. Extract to the folder where your video and audio file is.
Open up a command prompt and type the following command:
mencoder source.m2v -audiofile source.wav -oac copy -ovc lavc -o output.mpg
where source.m2v is your source video file, source.wav is your source audio file, and output.mpg is what you want your new merged mpg file to be named.
You may have to fiddle with the -oac and -ovc codec options depending on how you output your video in your editor software. Useful options are:
-oac:
copy (Leave codec as is)
lavc (libavcodec) -ovc:
copy (Leave codec as is)
raw (uncompressed)
nuv (nuppel)
lavc (libavcodec)
qtvideo (QuickTime)
xvid (XviD)
Reading:
Social