使用Windows Phone中的FFMPEG将.TS文件转换为.mp3

时间:2016-11-04 08:56:06

标签: c# silverlight windows-phone-8 ffmpeg

您好我正在使用ffmpeg找到here的Windows手机。有了这个我试图将.ts文件转换为.mp3文件,但我使用的命令不适用于这种类型的转换,我还注意到它适用于某些其他格式转换,如作为tswmatsogg等。我尝试过的命令是

 -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() 任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

我认为Mulvya是正确的MP3编码不包含在这个FFMPEG版本中,但我想出了另一种不满足确切需求的方法仍然是一个不错的选择

-i sourcewithfullpath.ts 
-f destinationwithfullpath.mp2

FFMPEG支持mp2格式,文件已转换为mp2音频并重命名为mp3,可在Windows手机中播放。请注意,与mp2格式相比,mp3格式的压缩率并不理想,这意味着输出文件的大小要大得多,几乎是两倍。