用la脚增加mp3音量的命令


14

我正在使用Ubuntu 12.04(主要是Unity 2D),并且想在终端中使用use脚。我曾经将其用作mp3放大器,但我忘记了该命令,我只记得:

lame scale-<scale you want to increase> <infile> <outfile>

但它显示:

lame: excess arg Because.mp3 out

因为.mp3是文件名。

谁能告诉我命令吗?

Answers:


19

您必须使用:

lame --scale <scale you want to increase> <infile> <outfile>

因此,这将在您的示例中:

lame --scale 3 Because.mp3 Because_loud.mp3

很好,它说找不到“ Because.mp3”。无法初始化infile'Because.mp3,因为该文件位于/ home / cheenu / beeatles / love
Jatttt 2014年

那么您必须在执行命令之前转到该目录(cd / home / cheenu / beeatles / love)或将其添加到文件名中。me脚--scale 3 /home/cheenu/beeatles/love/Because.mp3 /path/to/output/Because_load.mp3(标签可帮助您完成路径/文件名)
要求

3

如果文件名包含空格,则应正确地对文件名进行转义,或者用双引号将其引起来或使用“ \”转义符。

lame --scale 3 "Because you should escape.mp3" out.mp3
lame --scale 3 Because\ you\ should\ escape.mp3 out.mp3

如果不逃跑,bash将传递到跛脚只是因为它的输入文件,并瘸将因错误而退出。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.