+
+
WAV to AAC/MP4
+
ffmpeg -i input_file.wav -c:a aac -b:a 128k -dither_method modified_e_weighted -ar 44100 output_file.mp4
+
This will convert your WAV file to AAC/MP4.
+
+ - ffmpeg
- starts the command
+ - -i input_file
- path and name of the input file
+ - -c:a aac
- sets the audio codec to AAC
+ - -b:a 128k
- sets the bitrate of the audio to 128k
+ - -dither_method modified_e_weighted
- Dither makes sure you don’t unnecessarily truncate the dynamic range of your audio.
+ - -ar 44100
- sets the audio sampling frequency to 44100 Hz, or 44.1 kHz, or "CD quality"
+ - output_file
- path and name of the output file
+
+
+
+