将SWF文件转换为MP4 [英] Convert SWF files to MP4

查看:91
本文介绍了将SWF文件转换为MP4的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

提前致谢,

Thanks in advance, 

他们是一种转换SWF的方式 使用visual studio将文件转换为MP4。任何想法/方向都将受到高度赞赏。

Is their a way to convert SWF  files to MP4 using visual studio. Any idea/direction would be highly appreciated.

谢谢。

Thanks.

推荐答案

您好,

您可以使用ffmpeg进行转换。

You can use ffmpeg to convert it.


FFmpeg网站
下载执行的ffmpeg.exe,然后使用它:

Download the executed ffmpeg.exe from the FFmpeg site, then use it:

private void convert_Click(object sender, EventArgs e)
{
    Process p = new Process();
    // the full path of ffmpeg.exe
    p.StartInfo.FileName = @"D:\ffmpeg\ffmpeg\bin\ffmpeg.exe";
    // set the argument
    // inputPath.Text: the existing swf location, such as "D:\1.swf"
    // savePath.Text: the new mp4 location, such as "D:\1.mp4"
    p.StartInfo.Arguments = "-i " + inputPath.Text + " " + savePath.Text;
    p.Start();
    if(p.HasExited)
    {
        p.Kill();
    }
}

问候,

Stanly

注意:此响应包含对第三方万维网站点的引用。 Microsoft提供此信息是为了方便您。 Microsoft不控制这些网站,也未测试在这些网站上找到的任何软件或信息;因此,
Microsoft不能就其中发现的任何软件或信息的质量,安全性或适用性做出任何陈述。使用互联网上的任何软件都存在固有的危险,微软提醒您在从互联网上检索任何软件之前,确保您完全了解风险。

Note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; Therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.


这篇关于将SWF文件转换为MP4的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆