我可以使用这个每个文件:
afconvert -f caff -d LEI8@22050 walking.wav walking.caf
但是,这将需要几年,所以我试图转换所有文件:
for i in *.wav; do afconvert -f -caff -d LEI16@44100 -c 1 $i ${i%.wav}.caf; done
但是我收到这个错误:
Error: ExtAudiofileCreateWithURL Failed ('typ?')
编辑:由于上述for循环中的打字错误,实际上会发生错误.它应该是caff not -caff.那么正确的代码片段就可以了.
for i in *.wav; do afconvert -f caff -d LEI16@44100 -c 1 $i ${i%.wav}.caf; done
可能还有其他问题,接受的答案是有效的,只是想帮助解决问题. /编辑
解决方法 这是我一直在使用的脚本,从另一个来源稍微修改,这是值得所有的信用:#### Shell script to batch convert all files in a directory to caf sound format for iPhone## Place this shell script a directory with sound files and run it: 'sh afconvert_wavtocaf.sh'## Any comments to 'support@ezone.com'##for f in *.wav; doif [ "$f" != "afconvert_wavtocaf.sh" ]then afconvert -f caff -d ima4 $f echo "$f converted"fidone
将其保存在名为“afconvert_wavtocaf.sh”的文件中.看看是否这样做.
总结以上是内存溢出为你收集整理的iphone – 将多个.wav转换为.caf全部内容,希望文章能够帮你解决iphone – 将多个.wav转换为.caf所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)