文件属性查看:
file test.mp3
>>test.mp3: MP3, 128 kBits, 44.1 kHz, JStereo
ffmpeg -i test.mp3
>>Input #0, mp3, from 'test.mp3':
Duration: 00:04:31.26, start: 0.000000, bitrate: 128 kb/s
Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 128 kb/s
At least one output file must be specified
lame :linux 其他格式转 mp3 工具 ;
位数 --abr 16/8/4
声道 -m s/m
采样率 --resample 16/44.1..
码率/比特率 -b 128/64
lame --resample 16 --abr 16 -m s -b 128 test.mp3 07_128.mp3
ffmpeg : linux 视频音频处理
*位数
采样率 -ar
声道 -ac 1/2
码率/比特率 -ab 32/218 <acc>
ffmpeg -i test.mp3 -ar 44100 -ac 2 -ab 32 18_32.aac
<wav>
ffmpeg -i test.mp3 -ar 22050 -ac 1 -ab 32 _32.wav
<wma>
ffmpeg -y -i test.mp3 -acodec wmav2 -ar 44100 -ac 2 -ab 32000 24.wma
sox : linux 开源音频转换(只支持开源格式).
<vox_2>
ffmpeg -y -i test.mp3 -acodec pcm_alaw -ar 4000 -ac 1 -ab 32000 22_tmp.wav
file test.mp3
>>test.mp3: MP3, 128 kBits, 44.1 kHz, JStereo
ffmpeg -i test.mp3
>>Input #0, mp3, from 'test.mp3':
Duration: 00:04:31.26, start: 0.000000, bitrate: 128 kb/s
Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 128 kb/s
At least one output file must be specified
lame :linux 其他格式转 mp3 工具 ;
位数 --abr 16/8/4
声道 -m s/m
采样率 --resample 16/44.1..
码率/比特率 -b 128/64
lame --resample 16 --abr 16 -m s -b 128 test.mp3 07_128.mp3
ffmpeg : linux 视频音频处理
*位数
采样率 -ar
声道 -ac 1/2
码率/比特率 -ab 32/218 <acc>
ffmpeg -i test.mp3 -ar 44100 -ac 2 -ab 32 18_32.aac
<wav>
ffmpeg -i test.mp3 -ar 22050 -ac 1 -ab 32 _32.wav
<wma>
ffmpeg -y -i test.mp3 -acodec wmav2 -ar 44100 -ac 2 -ab 32000 24.wma
sox : linux 开源音频转换(只支持开源格式).
<vox_2>
ffmpeg -y -i test.mp3 -acodec pcm_alaw -ar 4000 -ac 1 -ab 32000 22_tmp.wav
sox 22_tmp.wav -r 8000 22.vox
本文转自博客园刘凯毅的博客,原文链接:各种 音频文件转换,如需转载请自行联系原博主。