May be it is very simple but I am confused. How can I change mkv movies audio files (mp4a, aac, etc.) to mp3, wma, or AC3 without touching video rapidly, What is the fastest and easiest way ?
+ Reply to Thread
Results 1 to 17 of 17
-
-
Thanks for reply but the software gave this error (I gave it below) message and after saving video can't seen any video only audio stays. Is there any other method or another software that can do this troubleless ?
-
troubleless: mkvextract to extract audio, then convert using any audio program eg. eac3to, foobar2k, audacity, then remux with mkvtoolnix on original file, uncheckmark old audio, add new audio
-
Or ffmpeg or a frontend for it like Xmedia recode, open mkv, under format choose matroska video, under video tab choose video copy, under audio tab choose mp3. Add job. Convert.
-
Post removed
Last edited by hibbs; 20th Jan 2011 at 20:40. Reason: Found answer
-
-
-
Just put files that you want to convert in a folder with a copy of ffmpeg (make sure there are no spaces in the filenames) and create a .bat file (use notepad and save as .bat) and double click the .bat file and it will convert all the files in the folder.
for mp3 audio use...
for %%a in ("*.mkv") do ffmpeg -i %%a -vcodec copy -acodec libmp3lame -sameq %%~na.new.mkv
for ac3 use...
for %%a in ("*.mkv") do ffmpeg -i %%a -vcodec copy -acodec ac3 -sameq %%~na.new.mkv
If you want to do a single file, the above bat file will still work if you put that file in your folder or you could use...
ffmpeg -i yourinputfile.mkv -vcodec copy -acodec libmp3lame -sameq youroutputfile.mkv
ffmpeg -i yourinputfile.mkv -vcodec copy -acodec ac3 -sameq youroutputfile.mkv
yourinputfile = X:\yourfolder\yourfile.mkv
youroutputfile = X:\yourfolder\yourfile.mkv
If you save to the same folder, change the output file name. It's easier for me just to use the first option so that you don't have to keep making new bat files for each file that you want to convert.
You can use ffmpeg to do a lot of different conversions. If you just want to change containers then you would just use the copy command...
-vcodec copy -acodec copy
Example:
To put AVC/AAC.FLV into an MP4 container...
for %%a in ("*.flv") do ffmpeg -i %%a -vcodec copy -acodec copy %%~na.mp4
To fix FLV with Nellymoser or Speex audio...
for %%a in ("*.flv") do ffmpeg -i %%a -vcodec copy -acodec libmp3lame -sameq %%~na.new.flvLast edited by DarrellS; 18th Feb 2013 at 06:33.
-
Sorry i thought you wanted to extract audio.
You can use TEncoder for that. Set video codec to "Direct copy". -
Yeah, Ozok, i just want to change the audio type, so i can play movies in my home cinema (who doesn't work with AAC)
I am currently using Avidemux, that sometimes works, other times dont. Usually, when the file is mp4, it appears an error message saying "the video has been saved but seems to be incomplete"
I have to convert from mkv to avi but sometimes this makes the movie have little "jumps" while playing. It's not fluid (it's hard to explain what happens).
Im gonna try that TEncoder you're talking.
Thanks!
Similar Threads
-
(Mp4, AACv2, MKV, Webm, Theora) Drag Drop Convert GUI Update v 1.2.0.0
By richter03 in forum Video ConversionReplies: 11Last Post: 21st Apr 2013, 05:35 -
Convert MKV with DTS in MKV with Mp3
By logoorange in forum Newbie / General discussionsReplies: 2Last Post: 22nd Nov 2010, 15:10 -
Losslessly convert AAC file to MP3?
By sldvd in forum AudioReplies: 16Last Post: 17th Nov 2010, 06:04 -
How Do I Replace One Soundtrack With Another, mp4/aac file?
By mcompton69 in forum AudioReplies: 4Last Post: 4th Apr 2010, 18:26