ubuntu:sound:convert_wav_to_mp3
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:sound:convert_wav_to_mp3 [2020/02/13 23:02] – peter | ubuntu:sound:convert_wav_to_mp3 [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 11: | Line 11: | ||
<code bash> | <code bash> | ||
for i in *.wav; do ffmpeg -i " | for i in *.wav; do ffmpeg -i " | ||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | for i in *.wav; do ffmpeg -i " | ||
</ | </ | ||
Line 18: | Line 22: | ||
ffmpeg -i test.wav -af " | ffmpeg -i test.wav -af " | ||
</ | </ | ||
+ | |||
+ | |||
+ | Strip Video: | ||
+ | |||
+ | <code bash> | ||
+ | ffmpeg -i input.wav -vn -ar 44100 -ac 2 -b:a 192k output.mp3 | ||
+ | </ | ||
+ | |||
+ | *-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 | ||
---- | ---- |
ubuntu/sound/convert_wav_to_mp3.1581634966.txt.gz · Last modified: 2020/07/15 09:30 (external edit)