Skip to main content

All Questions

0 votes
1 answer
444 views

How do you convert PSF music files to FLAC without using some "online tool"?

I love the soundtrack to the 1997 PlayStation video game Breath of Fire III. I have its soundtrack as MP3 files on my computer. After hearing what a huge difference it made to go from MP3 to FLAC for ...
Juandavid's user avatar
0 votes
1 answer
2k views

How to change output names when batch converting with ffmpeg to the same directory?

I have a bunch of mkv files that I'm trying to convert their audio while copying the video with this command: for %i in (*.mkv) do ffmpeg -i "%i" -c:a aac -ar 44100 -b:a 128k -c:v copy "...
BelowAverageUser's user avatar
0 votes
1 answer
5k views

Convert MKV with DTS audio to MKV with AAC, AC3 or MP3 audio

I have an MKV with multi-channel DTS audio. Using ffmpeg from the command line I want to convert to MKV with either multi-channel AAC, AC3 or MP3 audio. Can someone please tell me command-line for all ...
Caleb's user avatar
  • 1
16 votes
3 answers
50k views

Batch convert *.avi files using ffmpeg

I am trying to convert 20+ .avi files in a batch using ffmpeg. I've got the following @echo off. for file in *.avi do ffmpeg -i "$file" -s 640x480 -vcodec msmpeg4v2 "'basename "$file" .avi'....
Darius's user avatar
  • 2,206