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

http://www.bijimi.com/multimedia/multimedia_develop/51240.html

大哥 你能发给我代码吗。。我最近也在做这个。。H264视频流播放