得到适当的最新进展在ASP.NET两个早就在等待并发进程(Get Proper Progress U

2019-09-19 14:27发布

我使用.NET的ffmpeg包装实施背景视频处理http://www.mediasoftpro.com用进度条指示计算多少视频处理和发送信息到网页更新进度条指示器。 它的工作很好,如果只有单一的过程,在工作一段时间,但在两个并发进程的情况下(启动两个视频发布一次让来自两个不同的计算机说的),进度条突然混合进展情况。 这里是我的代码,我使用的静态对象正确发送单一实例的信息,以进度条。

static string FileName = "grey_03";
protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        if (Request.Params["file"] != null)
        {
            FileName = Request.Params["file"].ToString();
        }
    }
}
public static double ProgressValue = 0;
public static MediaHandler _mhandler = new MediaHandler();

[WebMethod]
public static string EncodeVideo()
{
    // MediaHandler _mhandler = new MediaHandler();
    string RootPath = HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath);
    _mhandler.FFMPEGPath = HttpContext.Current.Server.MapPath("~\\ffmpeg_july_2012\\bin\\ffmpeg.exe");
    _mhandler.InputPath = RootPath + "\\contents\\original";
    _mhandler.OutputPath = RootPath + "\\contents\\mp4";
    _mhandler.BackgroundProcessing = true;
    _mhandler.FileName = "Grey.avi";
    _mhandler.OutputFileName =FileName;
    string presetpath = RootPath + "\\ffmpeg_july_2012\\presets\\libx264-ipod640.ffpreset";
    _mhandler.Parameters = " -b:a 192k -b:v 500k -fpre \"" + presetpath + "\"";
    _mhandler.OutputExtension = ".mp4";
    _mhandler.VCodec = "libx264";
    _mhandler.ACodec = "libvo_aacenc";
    _mhandler.Channel = 2;
    _mhandler.ProcessMedia();
    return _mhandler.vinfo.ErrorCode.ToString();
}

[WebMethod]
public static string GetProgressStatus()
{
    return Math.Round(_mhandler.vinfo.ProcessingCompleted, 2).ToString();
    // if vinfo.processingcomplete==100, then you can get complete information from vinfo object and store it in database and perform other processing.
}

下面是负责每一秒等之后更新进度条指示jQuery函数

$(function () {
         $("#vprocess").on({
             click: function (e) {
                 ProcessEncoding();
                 var IntervalID = setInterval(function () {
                     GetProgressValue(IntervalID);
                 }, 1000);
                 return false;
             }
         }, '#btn_process');

     });
     function GetProgressValue(intervalid) {
         $.ajax({
             type: "POST",
             url: "concurrent_03.aspx/GetProgressStatus",
             data: "{}",
             contentType: "application/json; charset=utf-8",
             dataType: "json",
             success: function (msg) {
                 // Do something interesting here.
                 $("#pstats").text(msg.d);
                 $("#pbar_int_01").attr('style', 'width: ' + msg.d + '%;');
                 if (msg.d == "100") {
                     $('#pbar01').removeClass("progress-danger");
                     $('#pbar01').addClass("progress-success");
                     if (intervalid != 0) {
                         clearInterval(intervalid);
                     }
                     FetchInfo();
                 }
             }
         });
     }

这个问题的出现是由于静态mediahandler对象

public static MediaHandler _mhandler = new MediaHandler();

我需要一种方法来保持两个并发进程的信息相互独立,以更新值进度条正好属于这一进程。

Answer 1:

我认为你有一个误解这里。

由于您使用的是static变量,你所看到的并发问题。 这是因为在ASP.NET, static变量被所有的请求,因为他们曾经每AppDomain中,直到应用程序池回收共享。

你应该揭露一个WCF的终点,你可以用它是否完成没有让您的服务。 该服务应该工作队列,并打电话给你ffmpeg程序队列中的每个项目。 您还没有提到有多少用户将调用你的页面,但它可能是更好的这种方式让您可以更简单地控制服务器多少项目允许一次处理设计它。 因为你是下一个服务环境,而不是ASP.NET下运行的过程中,你也将运行到少的问题。



文章来源: Get Proper Progress Updates on Two Long Waited Concurrent Processes in ASP.NET