程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> asp.net音頻轉換之.amr轉.mp3(利用ffmpeg轉換法),.amrffmpeg

asp.net音頻轉換之.amr轉.mp3(利用ffmpeg轉換法),.amrffmpeg

編輯:關於.NET

asp.net音頻轉換之.amr轉.mp3(利用ffmpeg轉換法),.amrffmpeg


前言

上篇文章已經跟大家分享了asp.net利用七牛轉換法將.amr轉.mp3的方法,當時也說了還有另外一種方法是利用ffmpeg轉換法,下面這篇文章就給大家詳細介紹這種方法。這種方法相對第一種來說,要簡單的多!

FFmpeg的名稱來自MPEG視頻編碼標准,前面的“FF”代表“Fast Forward”,FFmpeg是一套可以用來記錄、轉換數字音頻、視頻,並能將其轉化為流的開源計算機程序。可以輕易地實現多種視頻格式之間的相互轉換。

ffmpeg轉換法

首先,你得下載個“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;
 }
 }
}

接著來張效果圖:

總結

好了,就這麼簡單,不要不敢不相信你的眼睛,其實就是這麼簡單!以上就是asp.net音頻轉換之.amr轉.mp3(利用ffmpeg轉換法)的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved