使用 C# 将 Avi 转换为 Mpeg
是的,我想将 avi 文件转换为 mpeg 文件。这对我来说是第一次体验。我对此很新手。使用 C# 可以将 avi 文件转换为 mpeg 吗? 如果是,我该怎么办?我必须阅读哪篇文章?
Yes i want to convert avi file to mpeg file..This will be first experience for me..I am so newbie at this..Is converting avi to mpeg possible with using C#.
If yes,what i have to do? Which article i have to read?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个相当复杂的主题,您需要将其交给第三方组件。最广泛使用的工具是 ffmpeg,您可以通过将其作为子进程启动来从 C# 调用它。
http://www.ffmpeg.org/
由于许可限制,它通常无法作为二进制下载 - 您需要下载源代码并自行编译。
This is a quite complicated topic that you'll want to relegate to a 3rd party component. The most widely used tool is ffmpeg which you can call from c# by launching it as a child process.
http://www.ffmpeg.org/
Due to licensing restrictions it's generally not available as a binary download--you'll need to download source and compile it yourself.