您好我正在使用ffmpeg
找到here的Windows手机。有了这个我试图将.ts
文件转换为.mp3
文件,但我使用的命令不适用于这种类型的转换,我还注意到它适用于某些其他格式转换,如作为ts
至wma
,ts
至ogg
等。我尝试过的命令是
-i sourcewithfullpath.ts destinationwithfullpath.mp3
-i sourcewithfullpath.ts
-f destinationwithfullpath.mp3
-i sourcewithfullpath.ts
-c:a libmp3lame destinationwithfullpath.mp3
-i sourcewithfullpath.ts
-acodec mp3 destinationwithfullpath.mp3
其中大多数人在致电AccessViolationException
时给了我一个ffmpeg.Run()
任何帮助表示赞赏。
答案 0 :(得分:0)
我认为Mulvya是正确的MP3编码不包含在这个FFMPEG
版本中,但我想出了另一种不满足确切需求的方法仍然是一个不错的选择
-i sourcewithfullpath.ts
-f destinationwithfullpath.mp2
FFMPEG
支持mp2
格式,文件已转换为mp2
音频并重命名为mp3
,可在Windows手机中播放。请注意,与mp2
格式相比,mp3
格式的压缩率并不理想,这意味着输出文件的大小要大得多,几乎是两倍。