如何使用C#AMR文件转换成MP3

 我来答
hswyh
2017-07-20 · 知道合伙人软件行家
hswyh
知道合伙人软件行家
采纳数:268 获赞数:926
武汉市马里欧网络有限公司技术总监 增强现实技术工程师 软件工程系系主任

向TA提问 私信TA
展开全部
最近看来是跟声音干上了啊!
音频转换的第二种方法,这种方法相对第一种来说,要简单的多!
首先,你得下载个“ffmpeg.exe” 插件,然后把它放到你的项目中,如下图:

程序中会调用该文件,以助于转换音频格式!
上代码:

using System;
using System.Threading;
using System.IO;
using System.Diagnostics;
using System.Security;

public partial class cowala_201512Chritmas_amrtest : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
changedPlay.Visible = false;
}
}

protected void Ffmpeg_Click(object sender, EventArgs e)
{
if (AmrFileUp.HasFile)
{
string key = AmrFileUp.FileName;
string savepath = Server.MapPath("~/upload/amr/") + key;
AmrFileUp.SaveAs(savepath);

string mp3SavePth = Server.MapPath("~/upload/mp3/") + key.Split('.')[0].ToString() + ".mp3";

if (!string.IsNullOrEmpty(ConvertToMp3(savepath, mp3SavePth)))
{
changedPlay.Visible = true;
changedPlay.Attributes.Add("src", "upload/mp3/" + key.Split('.')[0].ToString() + ".mp3");
Response.Write("<script>alert('转换成功!');</script>");
}
}
}

public string ConvertToMp3(string pathBefore, string pathLater)
{
string c = Server.MapPath("/ffmpeg/") + @"ffmpeg.exe -i " + pathBefore + " " + pathLater;
string str = RunCmd(c);
return str;
}

/// <summary>
/// 执行Cmd命令
/// </summary>
private string RunCmd(string c)
{
try
{
ProcessStartInfo info = new ProcessStartInfo("cmd.exe");
info.RedirectStandardOutput = false;
info.UseShellExecute = false;
Process p = Process.Start(info);
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.Start();
p.StandardInput.WriteLine(c);
p.StandardInput.AutoFlush = true;
Thread.Sleep(1000);
p.StandardInput.WriteLine("exit");
p.WaitForExit();
string outStr = p.StandardOutput.ReadToEnd();
p.Close();

return outStr;
}
catch (Exception ex)
{
return "error" + ex.Message;
}
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式