程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> winform-C# (WinForm) 調用Vlc ActiveX 邊播邊保存的問題?求助

winform-C# (WinForm) 調用Vlc ActiveX 邊播邊保存的問題?求助

編輯:編程綜合問答
C# (WinForm) 調用Vlc ActiveX 邊播邊保存的問題?求助

(安裝的VLC 是2.1.5版本的)
我現在調用vlc activex 插件,能夠播放 一個VGA信號器 的信號。
但是我需要把這個信號保存成視頻文件,該怎麼解決?

  private void button1_Click(object sender, EventArgs e)
        {
            //輸入參數
            string parameter = ":sout=#transcode{vcodec=h264,acodec=mpga,ab=128,channels=2,samplerate=44100}:file{dst=D:\\123.mp4,overwrite} :sout-all :sout-keep";

            //this.axVLCPlugin21.AutoPlay = true;
            ////判斷是否正在播放
            //if (this.axVLCPlugin21.playlist.isPlaying)
            //{
            //    //如果正在播放, 則停止
            //    this.axVLCPlugin21.playlist.stop();
            //}

            //清空播放列表
            this.axVLCPlugin21.playlist.clear();

            //添加播放列表
            this.axVLCPlugin21.playlist.add("http://192.168.1.168:80/vga", null, parameter);

            //播放列表更新到新添加的播放項
            //this.axVLCPlugin21.playlist.next();
            //播放
            this.axVLCPlugin21.playlist.play();

        }

是命令的問題嗎?

最佳回答:


http://blog.csdn.net/bluebirdssh/article/details/6135542

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