web-dev-qa-db-ja.com

ビデオをアップロードし、.netでオンラインで.mp4に変換します

奇妙な要件があります。ユーザーは、任意の形式(または制限された形式)のビデオをアップロードできます。それらを保存して。mp4形式に変換し、サイトで再生できるようにする必要があります。

オーディオファイルについても同じ要件。

私はグーグルで検索しましたが、適切なアイデアを得ることができません。ヘルプや提案.... ??

前もって感謝します

11
Sachin

FFMpegコマンドラインユーティリティ を使用すると、ほとんどすべてのビデオ/オーディオユーザーファイルをmp4/mp3に変換できます。 .NETからは、 Video Converter for .NET のようなラッパーライブラリを使用して呼び出すことができます(すべてが1つのDLLにパックされているため、これは素晴らしいです):

(new NReco.VideoConverter.FFMpegConverter()).ConvertMedia(pathToVideoFile, pathToOutputMp4File, Formats.mp4)

ビデオ変換にはかなりのCPUリソースが必要であることに注意してください。バックグラウンドで実行することをお勧めします。

11

あなたの答え

。flvを.mp4に置き換えてくださいあなたはあなたの答えを得るでしょう

private bool ReturnVideo(string fileName)
    {
        string html = string.Empty;
        //rename if file already exists

        int j = 0;
        string AppPath;
        string inputPath;
        string outputPath;
        string imgpath;
        AppPath = Request.PhysicalApplicationPath;
        //Get the application path
        inputPath = AppPath + "OriginalVideo";
        //Path of the original file
        outputPath = AppPath + "ConvertVideo";
        //Path of the converted file
        imgpath = AppPath + "Thumbs";
        //Path of the preview file
        string filepath = Server.MapPath("~/OriginalVideo/" + fileName);
        while (File.Exists(filepath))
        {
            j = j + 1;
            int dotPos = fileName.LastIndexOf(".");
            string namewithoutext = fileName.Substring(0, dotPos);
            string ext = fileName.Substring(dotPos + 1);
            fileName = namewithoutext + j + "." + ext;
            filepath = Server.MapPath("~/OriginalVideo/" + fileName);
        }
        try
        {
            this.fileuploadImageVideo.SaveAs(filepath);
        }
        catch
        {
            return false;
        }
        string outPutFile;
        outPutFile = "~/OriginalVideo/" + fileName;
        int i = this.fileuploadImageVideo.PostedFile.ContentLength;
        System.IO.FileInfo a = new System.IO.FileInfo(Server.MapPath(outPutFile));
        while (a.Exists == false)
        {

        }
        long b = a.Length;
        while (i != b)
        {

        }


        string cmd = " -i \"" + inputPath + "\\" + fileName + "\" \"" + outputPath + "\\" + fileName.Remove(fileName.IndexOf(".")) + ".flv" + "\"";
        ConvertNow(cmd);
        string imgargs = " -i \"" + outputPath + "\\" + fileName.Remove(fileName.IndexOf(".")) + ".flv" + "\" -f image2 -ss 1 -vframes 1 -s 280x200 -an \"" + imgpath + "\\" + fileName.Remove(fileName.IndexOf(".")) + ".jpg" + "\"";
        ConvertNow(imgargs);


        return true;
    }
    private void ConvertNow(string cmd)
    {
        string exepath;
        string AppPath = Request.PhysicalApplicationPath;
        //Get the application path
        exepath = AppPath + "ffmpeg.exe";
        System.Diagnostics.Process proc = new System.Diagnostics.Process();
        proc.StartInfo.FileName = exepath;
        //Path of exe that will be executed, only for "filebuffer" it will be "flvtool2.exe"
        proc.StartInfo.Arguments = cmd;
        //The command which will be executed
        proc.StartInfo.UseShellExecute = false;
        proc.StartInfo.CreateNoWindow = true;
        proc.StartInfo.RedirectStandardOutput = false;
        proc.Start();

        while (proc.HasExited == false)
        {

        }
    }
    protected void btn_Submit_Click(object sender, EventArgs e)
    {
        ReturnVideo(this.fileuploadImageVideo.FileName.ToString());
    }
8
Tejas

少し古いスレッドだとは思いますが、ここに着くと他の人にも見られます。 ffmpegを開始するためにプロセス情報を使用するべきではありません。それはそれと関係があります。 Xabe.FFmpeg これを実行するには

await Conversion.Convert("inputfile.mkv", "file.mp4").Start()

これは最も簡単な使用法の1つです。このライブラリは、FFmpegに流暢なAPIを提供します。

3
peacefulgoes