Convert .FLAC audio files to .MP3 in Linux with FFMPEG

Convert .FLAC audio files to .MP3 in Linux with FFMPEG:

$ ffmpeg -i  input.flac -ab 320k output.mp3


*NOTES:
- Where input is the source file and output the outcome file.
- The $ sign at the start of the command is to signify the terminal's prompt, no need to type this in.
- Many file formats are supported, for more see $ man ffmpeg

0 comments:

Post a Comment