0

我是初学者。从下面的代码创建视频后,我应该如何以及在何处放置标签消息。
我想在流程完成后显示两条消息,即 label1:视频已成功创建,第二条消息是视频的视频路径。
我只想在过程完成后显示它(创建视频)。

namespace test
{
    public partial class liveRecording : System.Web.UI.Page
    {
    //video codec
    AVIWriter writer = new AVIWriter("MSVC");  

    protected void Page_Load(object sender, EventArgs e)
    {
        string streamingSource = "http://xxx.sample.com:85/snapshot.cgi";
        string login = "login";
        string password = "password";

        JPEGStream JPEGSource = new JPEGStream(streamingSource);
        JPEGSource.Login = login;
        JPEGSource.Password = password;
        JPEGSource.NewFrame += new NewFrameEventHandler(video_NewFrame);
        JPEGSource.Start();
    }

    public bool IsRecording = false;
    int width = 0;
    int height = 0;

    Queue<Bitmap> frames = new Queue<Bitmap>(); //Queue that store frames to be written by the recorder thread

    private void video_NewFrame(object sender, NewFrameEventArgs eventArgs) //event handler for NewFrame
    {
        //get frame from JPEGStream source
        //Bitmap image = eventArgs.Frame;
        Bitmap image = (Bitmap)eventArgs.Frame.Clone(); //get a copy of the Bitmap from the source

        width = image.Width;
        height = image.Height;

        if (IsRecording)
        {
            //enqueue the current frame to be encoded to a video file
            frames.Enqueue((Bitmap)image.Clone());
        }

        if (!IsRecording)
        {
            IsRecording = true;
            Thread th = new Thread(DoRecording);
            th.Start();
        }
    }

    private void DoRecording()
    {
        //writer.FrameRate = 5;
        string SavingPath = (Server.MapPath("~\\video\\")); 
        string VideoName = "ICS_" + String.Format("{0:yyyyMMdd_hhmmss}", DateTime.Now) + ".avi";
        writer.Open(SavingPath + VideoName, width, height);

        DateTime start = DateTime.Now;
        while (DateTime.Now.Subtract(start).Seconds < 30)
        {
            if (frames.Count > 0)
            {
                Bitmap bmp = frames.Dequeue();
                writer.AddFrame(bmp);//add frames to AVI file
            }
        }
        writer.Close();//close
    }
}
}
4

1 回答 1

0

我只想在过程完成后显示它(创建视频)。

那么你应该使用AJAX,基本上。您的“开始编码”(或其他)请求应该很快完成,以便用户返回适当的页面。该页面应包含 Javascript 以定期轮询服务器以查看任务是否已完成 - 您需要进行一些协调(例如,通过提供给客户端的随机生成的“作业 ID”)。您可以使用SignalR 之类的东西进行“长轮询”(AJAX 会触发一个请求,该请求预计会等到作业完成或超时),或者每隔几秒发出一次快速轮询请求。

如果您是 Web 开发的新手,恐怕这一切都不容易——但是在基于 HTTP 请求和响应的世界中,您尝试执行的任务并不容易。

于 2012-10-10T06:16:50.350 回答