[problem help] 想给电话机添加一个铃声,在深度系统内如何转换音频文件?
Tofloor
poster avatar
丛林狼
deepin
2024-07-27 09:21
Author

电话机支持32kbps的wav格式的音频文件,请问在深度系统下如何把一首mp3格式的歌曲转换成电话铃声呢?实验了格式工厂,ffmpeg,都默认把码流率升的很高,实现不了32kbps的格式转换,多谢各位大神的支持

Reply Favorite View the author
All Replies
风月相知
deepin
2024-07-27 10:30
#1

ffmpeg好像可以设置码率呀

以下是网上找的答案

ffmpeg -i input.mp3 -acodec pcm_s16le -ar 32000 output.wav

其中,input.mp3是你要转换的MP3文件,output.wav是转换后的WAV文件。

Reply View the author
丛林狼
deepin
2024-07-27 11:44
#2

多些啦,我再研究下ffmpeg的用法!👍

Reply View the author
丛林狼
deepin
2024-07-27 11:44
#3
风月相知

ffmpeg好像可以设置码率呀

以下是网上找的答案

ffmpeg -i input.mp3 -acodec pcm_s16le -ar 32000 output.wav

其中,input.mp3是你要转换的MP3文件,output.wav是转换后的WAV文件。

多些啦,我再研究下ffmpeg的用法

Reply View the author
ggbond
deepin
2024-07-27 18:06
#4

agree

Reply View the author
135******15
deepin
2024-07-28 19:02
#5

like

Reply View the author