User Tools

Site Tools


ubuntu:sound:convert_wav_to_mp3

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
ubuntu:sound:convert_wav_to_mp3 [2019/12/04 21:03] – created peterubuntu:sound:convert_wav_to_mp3 [2020/07/15 09:30] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Ubuntu - Sound - Convert WAV to MP3 ====== ====== Ubuntu - Sound - Convert WAV to MP3 ======
 +
 +===== Using ffmpeg =====
 +
 +<code bash>
 +ffmpeg -i "song.wav" -ab 320k "song.mp3"
 +</code>
 +
 +Batch:
 +
 +<code bash>
 +for i in *.wav; do ffmpeg -i "$i" -ab 320k "${i%.*}.mp3"; done
 +</code>
 +
 +<code bash>
 +for i in *.wav; do ffmpeg -i "$i" -f mp3 "${i%}.mp3"; done
 +</code>
 +
 +Mono to stereo conversion:
 +
 +<code bash>
 +ffmpeg -i test.wav -af "pan=stereo|c0=c0|c1=c0" out.wav
 +</code>
 +
 +
 +Strip Video:
 +
 +<code bash>
 +ffmpeg -i input.wav -vn -ar 44100 -ac 2 -b:a 192k output.mp3
 +</code>
 +
 +  *-i - input file
 +  * -vn - Disable video, to make sure no video (including album cover image) is included if the source would be a video file
 +  * -ar - Set the audio sampling frequency. For output streams it is set by default to the frequency of the corresponding input stream. For input streams this option only makes sense for audio grabbing devices and raw demuxers and is mapped to the corresponding demuxer options.
 +  * -ac - Set the number of audio channels. For output streams it is set by default to the number of input audio channels. For input streams this option only makes sense for audio grabbing devices and raw demuxers and is mapped to the corresponding demuxer options. So used here to make sure it is stereo (2 channels)
 +  * -b:a - Converts the audio bitrate to be exact 192kbit per second
 +
 +----
  
 ===== Using Lame ===== ===== Using Lame =====
ubuntu/sound/convert_wav_to_mp3.1575493409.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki