Exemple #1
0
        protected CaptureBase(CaptureType type)
        {
            switch (type)
            {
            case CaptureType.Desktop:
            {
                this.mCapturer = CapturerFactory.CreateDesktopCapturer(10, true);
                ((IDesktopCapturer)this.mCapturer).ImageCaptured += Capture;
                break;
            }

            case CaptureType.Audio:
            {
                ((IMicrophoneCapturer)this.mCapturer).AudioCaptured += Capture;
                break;
            }

            case CaptureType.Camera:
            {
                this.mCapturer = CapturerFactory.CreateCameraCapturer(0, new Size(640, 480), 20);
                ((ICameraCapturer)this.mCapturer).ImageCaptured += Capture;
                break;
            }
            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            //capture image from camera device
            this.cameraCapturer = CapturerFactory.CreateCameraCapturer(0, new Size(int.Parse("320"), int.Parse("240")), 20);
            this.cameraCapturer.ImageCaptured += new ESBasic.CbGeneric <Bitmap>(ImageCaptured);
            this.cameraCapturer.Start();

            //At the same time, capture voice from microphone device
            this.microphoneCapturer = CapturerFactory.CreateMicrophoneCapturer(int.Parse("0"));
            this.microphoneCapturer.AudioCaptured += new ESBasic.CbGeneric <byte[]>(microphoneCapturer_AudioCaptured);
            this.microphoneCapturer.Start();

            flag = false;
        }
        private void VideoChat()
        {
            epVideoLocal  = new IPEndPoint(IPAddress.Parse(textBox1.Text), Convert.ToInt32("110"));
            epVideoRemote = new IPEndPoint(IPAddress.Parse(textBox2.Text), Convert.ToInt32("110"));
            sckVideo.Bind(epVideoLocal);
            sckVideo.Connect(epVideoRemote);


            while (true)
            {
                if (sckVideo.Poll(5000, SelectMode.SelectRead))
                {
                    if (flag == true)
                    {
                        //capture image from camera device
                        this.cameraCapturer = CapturerFactory.CreateCameraCapturer(0, new Size(int.Parse("320"), int.Parse("240")), 20);
                        this.cameraCapturer.ImageCaptured += new ESBasic.CbGeneric <Bitmap>(ImageCaptured);
                        this.cameraCapturer.Start();

                        //At the same time, capture voice from microphone device
                        this.microphoneCapturer = CapturerFactory.CreateMicrophoneCapturer(int.Parse("0"));
                        this.microphoneCapturer.AudioCaptured += new ESBasic.CbGeneric <byte[]>(microphoneCapturer_AudioCaptured);
                        this.microphoneCapturer.Start();

                        flag = false;
                    }
                    Console.WriteLine("There are both images and voice !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");

                    MemoryStream ms   = new MemoryStream();
                    int          size = 0;

                    while (size < 230454)
                    {
                        byte[] img = new byte[230454];
                        int    r   = sckVideo.Receive(img, img.Length, SocketFlags.None);
                        size = size + r;
                        Console.WriteLine("This time, there are " + r + " datagrams" + "\n" + "And in total " + size + " have been received");
                        ms.Write(img, 0, r);
                    }
                    if (size == 230454)
                    {
                        Form1_ImageCaptured(StreamToBitmap(ms));
                    }
                }
            }
        }
Exemple #4
0
        //Part3 视频通信
        private void button5_Click(object sender, EventArgs e)
        {
            if (button5.Text == "视频聊天")
            {
                ipeRemote2     = new IPEndPoint(IPAddress.Parse(label1.Text.ToString()), 9000);
                cameracapturer = CapturerFactory.CreateCameraCapturer(0, new Size(int.Parse("160"), int.Parse("120")), 10);//采集格式
                cameracapturer.ImageCaptured += new ESBasic.CbGeneric <Bitmap>(ImageCaptured);

                Listen_video();
                cameracapturer.Start();
                button5.Text = "停止视频聊天";
            }
            else
            {
                cameracapturer.Stop();
                ListenThread_video.Suspend();
                pictureBox1.Image = null;
                pictureBox2.Image = null;
                button5.Text      = "视频聊天";
            }
        }
Exemple #5
0
        private void 录制视频ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                int audioSampleRate           = 16000;
                int channelCount              = 1;
                System.Drawing.Size videoSize = Screen.PrimaryScreen.Bounds.Size;

                {
                    videoSize           = new System.Drawing.Size(640, 480);
                    this.cameraCapturer = CapturerFactory.CreateCameraCapturer(0, videoSize, frameRate);
                    this.cameraCapturer.ImageCaptured += new CbGeneric <Bitmap>(this.Form1_ImageCaptured);
                }


                {
                    this.microphoneCapturer = CapturerFactory.CreateMicrophoneCapturer(0);
                    this.microphoneCapturer.CaptureError += new CbGeneric <Exception>(this.CaptureError);
                }

                this.microphoneCapturer.AudioCaptured += audioMixter_AudioMixed;

                this.microphoneCapturer.Start();

                this.cameraCapturer.Start();

                this.sizeRevised = (videoSize.Width % 4 != 0) || (videoSize.Height % 4 != 0);
                if (this.sizeRevised)
                {
                    videoSize = new System.Drawing.Size(videoSize.Width / 4 * 4, videoSize.Height / 4 * 4);
                }

                this.videoFileMaker = new VideoFileMaker();
                this.videoFileMaker.Initialize(video_save_path, VideoCodecType.H264, videoSize.Width, videoSize.Height, frameRate, VideoQuality.High, AudioCodecType.AAC, audioSampleRate, channelCount, true);
            }
            catch (Exception ee)
            {
                MessageBox.Show(ee.Message);
            }
        }
Exemple #6
0
        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                //根据选择创建对应的采集器
                if (this.comboBox1.SelectedIndex == 0)
                {
                    this.capturer = CapturerFactory.CreateCameraCapturer(0, new Size(int.Parse(this.textBox_width.Text), int.Parse(this.textBox_height.Text)), 20);
                    ((ICameraCapturer)this.capturer).ImageCaptured += new ESBasic.CbGeneric <Bitmap>(Form1_ImageCaptured);
                }
                else if (this.comboBox1.SelectedIndex == 1)
                {
                    this.capturer = CapturerFactory.CreateDesktopCapturer(60, false);
                    ((IDesktopCapturer)this.capturer).ImageCaptured += new ESBasic.CbGeneric <Bitmap>(Form1_ImageCaptured);
                }
                else if (this.comboBox1.SelectedIndex == 2)
                {
                    this.capturer = CapturerFactory.CreateMicrophoneCapturer(0);
                    ((IMicrophoneCapturer)this.capturer).AudioCaptured += new ESBasic.CbGeneric <byte[]>(Form1_AudioCaptured);
                }
                else
                {
                    this.capturer = CapturerFactory.CreateSoundcardCapturer();
                    ((ISoundcardCapturer)this.capturer).AudioCaptured += new ESBasic.CbGeneric <byte[]>(Form1_AudioCaptured);
                }
                this.button1.Enabled           = false;
                this.button2.Enabled           = true;
                this.comboBox1.Enabled         = false;
                this.autioDataTotalLen         = 0;
                this.label_audioDataTotal.Text = "0";

                //开始采集
                this.capturer.Start();
            }
            catch (Exception ee)
            {
                MessageBox.Show(ee.Message);
            }
        }
Exemple #7
0
        private void button_Start_Click(object sender, RoutedEventArgs e)
        {
            //TODO 开始录制桌面,依据 声音复选框 来选择使用 声卡 麦克风 还是混合录制
            //TODO label 中显示实际录制的时间,需要考虑暂停和恢复这种情况。 格式为 hh:mm:ss
            if (string.IsNullOrEmpty(this.filePath.Text) || string.IsNullOrEmpty(this.fileNmae.Text))
            {
                MessageBox.Show("文件路径和文件名!");
                return;
            }
            else if (File.Exists(System.IO.Path.Combine(this.filePath.Text, this.fileNmae.Text)))
            {
                MessageBox.Show("文件已经存在");
                return;
            }
            try
            {
                int audioSampleRate = 16000;
                int channelCount    = 1;
                seconds = 0;

                System.Drawing.Size videoSize = Screen.PrimaryScreen.Bounds.Size;
                this.justRecordAudio = this.radioButton_justAudio.IsChecked.Value;

                if (this.justRecordAudio && this.checkBox_micro.IsChecked == false && this.checkBox_soundCard.IsChecked == false)
                {
                    MessageBox.Show("一定要选择一个声音的采集源!");
                    return;
                }

                #region 设置采集器
                if (this.radioButton_desktop.IsChecked == true)
                {
                    //桌面采集器

                    //如果需要录制鼠标的操作,第二个参数请设置为true
                    this.desktopCapturer = CapturerFactory.CreateDesktopCapturer(frameRate, false);
                    this.desktopCapturer.ImageCaptured += ImageCaptured;
                    videoSize = this.desktopCapturer.VideoSize;
                }
                else if (this.radioButton_camera.IsChecked == true)
                {
                    //摄像头采集器
                    videoSize           = new System.Drawing.Size(int.Parse(this.textBox_width.Text), int.Parse(this.textBox_height.Text));
                    this.cameraCapturer = CapturerFactory.CreateCameraCapturer(0, videoSize, frameRate);
                    this.cameraCapturer.ImageCaptured += new CbGeneric <Bitmap>(ImageCaptured);
                }

                if (this.checkBox_micro.IsChecked == true)
                {
                    //麦克风采集器
                    this.microphoneCapturer = CapturerFactory.CreateMicrophoneCapturer(0);
                    this.microphoneCapturer.CaptureError += capturer_CaptureError;
                }

                if (this.checkBox_soundCard.IsChecked == true)
                {
                    //声卡采集器 【目前声卡采集仅支持vista以及以上系统】
                    this.soundcardCapturer = CapturerFactory.CreateSoundcardCapturer();
                    this.soundcardCapturer.CaptureError += capturer_CaptureError;
                    audioSampleRate = this.soundcardCapturer.SampleRate;
                    channelCount    = this.soundcardCapturer.ChannelCount;
                }

                if (this.checkBox_micro.IsChecked == true && this.checkBox_soundCard.IsChecked == true)
                {
                    //混音器
                    this.audioMixter             = CapturerFactory.CreateAudioMixter(this.microphoneCapturer, this.soundcardCapturer, SoundcardMode4Mix.DoubleChannel, true);
                    this.audioMixter.AudioMixed += audioMixter_AudioMixed; //如果是混音,则不再需要预订microphoneCapturer和soundcardCapturer的AudioCaptured事件
                    audioSampleRate              = this.audioMixter.SampleRate;
                    channelCount = this.audioMixter.ChannelCount;
                }
                else if (this.checkBox_micro.IsChecked == true)
                {
                    this.microphoneCapturer.AudioCaptured += audioMixter_AudioMixed;
                }
                else if (this.checkBox_soundCard.IsChecked == true)
                {
                    this.soundcardCapturer.AudioCaptured += audioMixter_AudioMixed;
                }
                #endregion

                #region 开始采集
                if (this.checkBox_micro.IsChecked == true)
                {
                    this.microphoneCapturer.Start();
                }
                if (this.checkBox_soundCard.IsChecked == true)
                {
                    this.soundcardCapturer.Start();
                }

                if (this.radioButton_camera.IsChecked == true)
                {
                    this.cameraCapturer.Start();
                }
                else if (this.radioButton_desktop.IsChecked == true)
                {
                    this.desktopCapturer.Start();
                }
                #endregion

                #region 录制组件
                if (this.justRecordAudio) //仅仅录制声音
                {
                    this.audioFileMaker = new AudioFileMaker();
                    this.audioFileMaker.Initialize("test.mp3", audioSampleRate, channelCount);
                }
                else
                {
                    //宽和高修正为4的倍数
                    this.sizeRevised = (videoSize.Width % 4 != 0) || (videoSize.Height % 4 != 0);
                    if (this.sizeRevised)
                    {
                        videoSize = new System.Drawing.Size(videoSize.Width / 4 * 4, videoSize.Height / 4 * 4);
                    }

                    if (this.checkBox_micro.IsChecked == false && this.checkBox_soundCard.IsChecked == false) //仅仅录制图像
                    {
                        this.justRecordVideo       = true;
                        this.silenceVideoFileMaker = new SilenceVideoFileMaker();
                        this.silenceVideoFileMaker.Initialize(System.IO.Path.Combine(this.filePath.Text, this.fileNmae.Text) + ".mp4", VideoCodecType.H264, videoSize.Width, videoSize.Height, frameRate, VideoQuality.Middle);
                    }
                    else //录制声音+图像
                    {
                        this.justRecordVideo = false;
                        this.videoFileMaker  = new VideoFileMaker();
                        this.videoFileMaker.Initialize(System.IO.Path.Combine(this.filePath.Text, this.fileNmae.Text) + ".mp4", VideoCodecType.H264, videoSize.Width, videoSize.Height, frameRate, VideoQuality.High, AudioCodecType.AAC, audioSampleRate, channelCount, true);
                    }
                }
                #endregion

                this.isRecording = true;
                this.isParsing   = false;
                this.timer.Start();

                this.checkBox_micro.IsEnabled        = false;
                this.checkBox_soundCard.IsEnabled    = false;
                this.radioButton_desktop.IsEnabled   = false;
                this.radioButton_camera.IsEnabled    = false;
                this.radioButton_justAudio.IsEnabled = false;

                this.button_Start.IsEnabled = false;
            }
            catch (Exception ee)
            {
                MessageBox.Show(ee.Message);
            }
        }