3

I am using FFMPEG Audio Converter to convert the file format. At Present it bit rate is 176.4 kbit/s, so it file size to big.

I want to convert it as possible at low bit rate but unable to find any solution.

I use below command line to convert the file

ffmpeg.exe -i "Audio Input FilePath" "Audio Output FilePath"
rekire
  • 47,260
  • 30
  • 167
  • 264
Mitesh Machhi
  • 203
  • 2
  • 5
  • 18

1 Answers1

2

You can define with -b:a the target bitrate so try for example:

ffmpeg.exe -i "Audio Input FilePath" -b:a 64k "Audio Output FilePath"
rekire
  • 47,260
  • 30
  • 167
  • 264