[App Sharing] 有没有能够调整mp3音量的那种编辑工具?
Tofloor
poster avatar
liujy126
deepin
2023-03-22 05:05
Author

调整音量,不知道有没有

Reply Favorite View the author
All Replies
昨夜的星辰
deepin
2023-03-22 05:22
#1

我以前是在WIN上用的adobe audition调的

Reply View the author
enforcee
deepin
2023-03-22 09:14
#2

audacity

Reply View the author
vivian_me
deepin testing team
2023-03-22 19:29
#3

亲,可以在应用商店下载这款应用试试看:audacity

image.png

Reply View the author
来自Ubuntu的某位用户
deepin
2023-03-23 04:25
#4

如果只是临时调整一次的话,可以在终端输入

sudo apt install ffmpeg

然后如果按倍数调整音量,可以输入

ffmpeg -i input.mp3-filter:“volume = 0.5” output.mp3

volume = 0.5这里0.5可以改成自己需要的倍数

或者输入

ffmpeg -i input.mp3 -filter:“volume = 5dB” output.mp3

volume = 5dB中5可以改成自己需要的数值,如果需要降低音量可以输入负数,提高音量输入正数

https://blog.csdn.net/LS7011846/article/details/90813220

Reply View the author