欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net音频转换之.amr转.mp3(利用ffmpeg转换法)

程序员文章站 2022-08-27 16:25:49
前言 上篇文章已经跟大家分享了的方法,当时也说了还有另外一种方法是利用ffmpeg转换法,下面这篇文章就给大家详细介绍这种方法。这种方法相对第一种来说,要简单的多! f...

前言

上篇文章已经跟大家分享了的方法,当时也说了还有另外一种方法是利用ffmpeg转换法,下面这篇文章就给大家详细介绍这种方法。这种方法相对第一种来说,要简单的多!

ffmpeg的名称来自mpeg视频编码标准,前面的“ff”代表“fast forward”,ffmpeg是一套可以用来记录、转换数字音频、视频,并能将其转化为流的开源计算机程序。可以轻易地实现多种视频格式之间的相互转换。

ffmpeg转换法

首先,你得下载个“ffmpeg.exe” 插件,然后把它放到你的项目中,如下图:

asp.net音频转换之.amr转.mp3(利用ffmpeg转换法)

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

上代码:

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;
 }
 }
}

接着来张效果图:

asp.net音频转换之.amr转.mp3(利用ffmpeg转换法)

总结

好了,就这么简单,不要不敢不相信你的眼睛,其实就是这么简单!以上就是asp.net音频转换之.amr转.mp3(利用ffmpeg转换法)的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。