这是我的代码
dir=Desktop/mp3convert #I left out the whole t
find "${dir:-.}" -name "*.mp3" -exec avconv -i {} -b 64k -ar 44100 -ac 1 {} \;
这是我的代码
dir=Desktop/mp3convert #I left out the whole t
find "${dir:-.}" -name "*.mp3" -exec avconv -i {} -b 64k -ar 44100 -ac 1 {} \;
这是我为完成我需要的功能而写的。我只是使用循环来遍历目录而不是使用查找。现在想想就简单多了。我只需要将所有我想要下采样的文件保存在同一个目录中,这对我的目的来说很好。谢谢您的帮助!