Windows平台RTMP推送|轻量级RTSP服务实现本地摄像头|屏幕|叠加数据预览

背景

大家在做Windows平台RTMP推送或轻量级RTSP服务的时候,不管是采集屏幕还是采集摄像头,亦或屏幕摄像头的叠加模式,总会有这样的诉求,采集到的数据,希望能本地看看具体采集的数据或者图像实际效果,也就是本次介绍的“预览”功能。

废话不多说,想上图:

如何实现

开始预览

开始预览,大概的流程是,调用OpenPublisherHandle(),进行初始的数据源类型设置,然后调用Open()接口,获取推送handler,并设置event回调。

bool CSmartPublisherDemoDlg::OpenPublisherHandle()
{if ( publisher_handle_ != NULL ){return true;}// 视频auto video_option = NT_PB_E_VIDEO_OPTION_NO_VIDEO;if ( BST_CHECKED == btn_check_desktop_camera_switch_.GetCheck()|| BST_CHECKED == btn_check_camera_overlay_to_desktop_.GetCheck() || BST_CHECKED == btn_check_desktop_overlay_to_camera_.GetCheck() ){// 使用叠加模式video_option = NT_PB_E_VIDEO_OPTION_LAYER;}else if (BST_CHECKED == btn_check_desktop_input_.GetCheck() && BST_CHECKED == btn_check_scale_desktop_.GetCheck()){// 使用叠加模式来实现缩放video_option = NT_PB_E_VIDEO_OPTION_LAYER;}else if (BST_CHECKED == btn_check_desktop_input_.GetCheck() && BST_CHECKED != btn_check_scale_desktop_.GetCheck() ){video_option = NT_PB_E_VIDEO_OPTION_SCREEN;}else if (BST_CHECKED == btn_check_window_input_.GetCheck()){video_option = NT_PB_E_VIDEO_OPTION_WINDOW;// video_option = NT_PB_E_VIDEO_OPTION_LAYER;}else if (BST_CHECKED == btn_check_camera_input_.GetCheck()){video_option = NT_PB_E_VIDEO_OPTION_CAMERA;}// 音频auto audio_option = NT_PB_E_AUDIO_OPTION_NO_AUDIO;audio_option = NT_PB_E_AUDIO_OPTION_NO_AUDIO;if ( BST_CHECKED == btn_check_auido_mic_input_.GetCheck()&& BST_CHECKED == btn_check_auido_speaker_input_.GetCheck() ){audio_option = NT_PB_E_AUDIO_OPTION_CAPTURE_MIC_SPEAKER_MIXER;}else if ( BST_CHECKED == btn_check_auido_mic_input_.GetCheck() ){audio_option = NT_PB_E_AUDIO_OPTION_CAPTURE_MIC;}else if (BST_CHECKED == btn_check_auido_speaker_input_.GetCheck()){audio_option = NT_PB_E_AUDIO_OPTION_CAPTURE_SPEAKER;}publisher_handle_count_ = 0;if ( NT_ERC_OK != publisher_api_.Open(&publisher_handle_,video_option, audio_option, 0, NULL)){AfxMessageBox(_T("Call open failed!"));return false;}if ( publisher_handle_ != NULL ){// 设置事件回调publisher_api_.SetEventCallBack(publisher_handle_, GetSafeHwnd(), &NT_PB_SDKPublisherEventHandle);return true;}else{return false;}
}

目前我们的SDK支持以下几种视频源类型,实时预览仅限于编码前数据类型:

/*定义Video源选项*/
typedef enum _NT_PB_E_VIDEO_OPTION
{NT_PB_E_VIDEO_OPTION_NO_VIDEO = 0x0,NT_PB_E_VIDEO_OPTION_SCREEN   = 0x1, // 采集屏幕NT_PB_E_VIDEO_OPTION_CAMERA	  = 0x2, // 摄像头采集NT_PB_E_VIDEO_OPTION_LAYER    = 0x3, // 视频合并,比如桌面叠加摄像头等NT_PB_E_VIDEO_OPTION_ENCODED_DATA = 0x4, // 已经编码的视频数据,目前支持H264NT_PB_E_VIDEO_OPTION_WINDOW   = 0x5, // 采集窗口
} NT_PB_E_VIDEO_OPTION;

接着是调用SetCommonOptionToPublisherSDK(),完成叠加和其他参数设定。

void CSmartPublisherDemoDlg::SetCommonOptionToPublisherSDK()
{ASSERT(publisher_handle_ != NULL);layer_conf_wrappers_.clear();// 视频相关设置if ( BST_CHECKED == btn_check_desktop_camera_switch_.GetCheck()|| BST_CHECKED == btn_check_camera_overlay_to_desktop_.GetCheck()|| BST_CHECKED == btn_check_desktop_overlay_to_camera_.GetCheck()|| BST_CHECKED == btn_check_desktop_input_.GetCheck()|| BST_CHECKED == btn_check_window_input_.GetCheck()|| BST_CHECKED == btn_check_camera_input_.GetCheck() ){if ( BST_CHECKED == btn_check_desktop_camera_switch_.GetCheck() ){auto left = GetIntValueFromEdit(&edit_clip_left_);auto top = GetIntValueFromEdit(&edit_clip_top_);auto w = GetIntValueFromEdit(&edit_clip_width_);auto h = GetIntValueFromEdit(&edit_clip_height_);// 有一个是0, 就使用全屏if ( w == 0 || h == 0 ){left = 0;top  = 0;GetScreenSize(w, h);}else{// 保证4字节对齐w = NT_ByteAlign(w, 2);h = NT_ByteAlign(h, 4);}auto index = 0;// 第0层填充RGBA矩形, 目的是保证帧率, 颜色就填充全黑auto rgba_layer_c0 = std::make_shared<nt_pb_sdk::RGBARectangleLayerConfigWrapper>(index++, true,0, 0, w, h);rgba_layer_c0->conf_.red_	= 0;rgba_layer_c0->conf_.green_ = 0;rgba_layer_c0->conf_.blue_	= 0;rgba_layer_c0->conf_.alpha_ = 255;layer_conf_wrappers_.push_back(rgba_layer_c0);// 第1层是摄像头if ( CB_ERR != cur_sel_camera_index_ ){auto& camera = cameras_[cur_sel_camera_index_];auto camera_layer_c1 = std::make_shared<nt_pb_sdk::CameraLayerConfigWrapperV2>(index++, false,0, 0, w, h);strcpy_s(camera_layer_c1->conf_.device_unique_id_utf8_, camera.id_.c_str());camera_layer_c1->conf_.is_flip_horizontal_ = BST_CHECKED == btn_check_flip_horizontal_camera_.GetCheck();camera_layer_c1->conf_.is_flip_vertical_   = BST_CHECKED == btn_check_flip_vertical_camera_.GetCheck();// 这种叠加模式下不要旋转,否则变形厉害, 要么就定好一个角度,调整宽高,但不要动态旋转camera_layer_c1->conf_.rotate_degress_ = 0;layer_conf_wrappers_.push_back(camera_layer_c1);}// 第2层是屏幕auto screen_layer_c2 = std::make_shared<nt_pb_sdk::ScreenLayerConfigWrapper>(index++, true,0, 0, w, h);screen_layer_c2->conf_.reserve_ = nullptr;screen_layer_c2->conf_.clip_region_.x_ = left;screen_layer_c2->conf_.clip_region_.y_ = top;screen_layer_c2->conf_.clip_region_.width_  = w;screen_layer_c2->conf_.clip_region_.height_ = h;layer_conf_wrappers_.push_back(screen_layer_c2);// 第3层填充RGBA矩形, 增加半透明效果auto r = GetIntValueFromEdit(&edit_rgba_rect_layer_red_);r = ClipIntValue(r, 0, 255);auto g = GetIntValueFromEdit(&edit_rgba_rect_layer_green_);g = ClipIntValue(g, 0, 255);auto b = GetIntValueFromEdit(&edit_rgba_rect_layer_blue_);b = ClipIntValue(b, 0, 255);auto a = GetIntValueFromEdit(&edit_rgba_rect_layer_alpha_);a = ClipIntValue(a, 0, 255);auto rgba_layer_c3 = std::make_shared<nt_pb_sdk::RGBARectangleLayerConfigWrapper>(index++, a != 0,0, 0, w, h);rgba_layer_c3->conf_.red_	= r;rgba_layer_c3->conf_.green_ = g;rgba_layer_c3->conf_.blue_	= b;rgba_layer_c3->conf_.alpha_ = a;layer_conf_wrappers_.push_back(rgba_layer_c3);// 如果有图片,增加图片层if ( !image_layer_file_name_utf8_.empty()&& image_layer_width_ > 0 && image_layer_height_ > 0){auto image_layer_c4 = std::make_shared<nt_pb_sdk::ImageLayerConfigWrapper>(index++, true,image_layer_left_, image_layer_top_, image_layer_width_, image_layer_height_ );strcpy_s(image_layer_c4->conf_.file_name_utf8_, image_layer_file_name_utf8_.c_str());// 图片层是可以增加背景的,有兴趣的话,可以打开看看效果/*image_layer_c4->conf_.is_setting_background_ = 1;image_layer_c4->conf_.bk_red_ = 255;image_layer_c4->conf_.bk_green_ = 255;image_layer_c4->conf_.bk_blue_ = 255;*/layer_conf_wrappers_.push_back(image_layer_c4);}SetLayersConfig();publisher_api_.SetFrameRate(publisher_handle_, GetIntValueFromEdit(&edit_frame_rate_));}else if (BST_CHECKED == btn_check_camera_overlay_to_desktop_.GetCheck()){auto left = GetIntValueFromEdit(&edit_clip_left_);auto top  = GetIntValueFromEdit(&edit_clip_top_);auto w = GetIntValueFromEdit(&edit_clip_width_);auto h = GetIntValueFromEdit(&edit_clip_height_);// 有一个是0, 就使用全屏if ( w == 0 || h == 0 ){left = 0;top = 0;GetScreenSize(w, h);}else{// 保证4字节对齐w = NT_ByteAlign(w, 2);h = NT_ByteAlign(h, 4);}auto index = 0;/*auto image_layer_c0 = std::make_shared<nt_pb_sdk::ImageLayerConfigWrapper>(index++, true,0, 0, w, h);strcpy_s(image_layer_c0->conf_.file_name_utf8_, "D:\\myxxyy\\testpng\\ggdwdd.png");image_layer_c0->conf_.is_setting_background_ = 1;image_layer_c0->conf_.bk_red_ = 255;image_layer_c0->conf_.bk_green_ = 255;image_layer_c0->conf_.bk_blue_ = 255;layer_conf_wrappers_.push_back(image_layer_c0);*/// 第0层是屏幕auto screen_layer_c0 = std::make_shared<nt_pb_sdk::ScreenLayerConfigWrapper>(index++, true,0, 0, w, h);screen_layer_c0->conf_.reserve_ = nullptr;screen_layer_c0->conf_.clip_region_.x_ = left;screen_layer_c0->conf_.clip_region_.y_ = top;screen_layer_c0->conf_.clip_region_.width_ = w;screen_layer_c0->conf_.clip_region_.height_ = h;layer_conf_wrappers_.push_back(screen_layer_c0);// 第1层是摄像头if ( CB_ERR != cur_sel_camera_index_ ){auto& camera = cameras_[cur_sel_camera_index_];auto c_l = GetIntValueFromEdit(&edit_camera_overlay_left_);auto c_t = GetIntValueFromEdit(&edit_camera_overlay_top_);auto c_w = GetIntValueFromEdit(&edit_camera_overlay_width_);auto c_h = GetIntValueFromEdit(&edit_camera_overlay_height_);if ( c_w == 0 ){c_w = w / 2;}if ( c_h == 0 ){c_h = h / 2;}if ( c_w >0 && c_h > 0 ){auto camera_layer_c1 = std::make_shared<nt_pb_sdk::CameraLayerConfigWrapperV2>(index++, true,c_l, c_t, c_w, c_h);strcpy_s(camera_layer_c1->conf_.device_unique_id_utf8_, camera.id_.c_str());camera_layer_c1->conf_.is_flip_horizontal_ = BST_CHECKED == btn_check_flip_horizontal_camera_.GetCheck();camera_layer_c1->conf_.is_flip_vertical_ = BST_CHECKED == btn_check_flip_vertical_camera_.GetCheck();camera_layer_c1->conf_.rotate_degress_ = GetCameraRotateDegress();layer_conf_wrappers_.push_back(camera_layer_c1);}	}SetLayersConfig();publisher_api_.SetFrameRate(publisher_handle_, GetIntValueFromEdit(&edit_frame_rate_));}else if (BST_CHECKED == btn_check_desktop_overlay_to_camera_.GetCheck()){if (CB_ERR != cur_sel_camera_index_&& CB_ERR != cur_sel_camera_resolutions_index_&& CB_ERR != cur_sel_camera_frame_rate_index_){auto& camera = cameras_[cur_sel_camera_index_];auto& cap = camera.capabilities_[cur_sel_camera_resolutions_index_];auto index = 0;// 第0层是摄像头auto camera_layer_c0 = std::make_shared<nt_pb_sdk::CameraLayerConfigWrapperV2>(index++, true,0, 0, cap.width_, cap.height_);strcpy_s(camera_layer_c0->conf_.device_unique_id_utf8_, camera.id_.c_str());camera_layer_c0->conf_.is_flip_horizontal_ = BST_CHECKED == btn_check_flip_horizontal_camera_.GetCheck();camera_layer_c0->conf_.is_flip_vertical_   = BST_CHECKED == btn_check_flip_vertical_camera_.GetCheck();// 这种叠加模式下不要旋转,否则变形厉害, 要么就定好一个角度,调整宽高,但不要动态旋转camera_layer_c0->conf_.rotate_degress_ = 0;layer_conf_wrappers_.push_back(camera_layer_c0);// 第1层是屏幕auto screen_layer_c1 = std::make_shared<nt_pb_sdk::ScreenLayerConfigWrapper>(index++, true,0, 0, cap.width_ / 2, cap.height_/2);screen_layer_c1->conf_.reserve_ = nullptr;screen_layer_c1->conf_.clip_region_.x_ = 0;screen_layer_c1->conf_.clip_region_.y_ = 0;screen_layer_c1->conf_.clip_region_.width_ = cap.width_ / 2;screen_layer_c1->conf_.clip_region_.height_ = cap.height_ / 2;layer_conf_wrappers_.push_back(screen_layer_c1);SetLayersConfig();publisher_api_.SetFrameRate(publisher_handle_, cur_sel_camera_frame_rate_index_ + 1);}}else if (BST_CHECKED == btn_check_desktop_input_.GetCheck() && BST_CHECKED == btn_check_scale_desktop_.GetCheck()){int left = 0, top = 0, w = 0, h = 0, scale_w = 0, scale_h = 0;GetScreenScaleConfigInfo(left, top, w, h, scale_w, scale_h);auto index = 0;// 第0层填充RGBA矩形, 目的是保证帧率, 颜色就填充全黑auto rgba_layer_c0 = std::make_shared<nt_pb_sdk::RGBARectangleLayerConfigWrapper>(index++, true,0, 0, scale_w, scale_h);rgba_layer_c0->conf_.red_ = 0;rgba_layer_c0->conf_.green_ = 0;rgba_layer_c0->conf_.blue_ = 0;rgba_layer_c0->conf_.alpha_ = 255;layer_conf_wrappers_.push_back(rgba_layer_c0);// 第1层是屏幕auto screen_layer_c1 = std::make_shared<nt_pb_sdk::ScreenLayerConfigWrapperV2>(index++, true,0, 0, scale_w, scale_h);screen_layer_c1->conf_.reserve1_ = nullptr;screen_layer_c1->conf_.reserve2_ = 0;screen_layer_c1->conf_.clip_region_.x_ = left;screen_layer_c1->conf_.clip_region_.y_ = top;screen_layer_c1->conf_.clip_region_.width_ = w;screen_layer_c1->conf_.clip_region_.height_ = h;screen_layer_c1->conf_.scale_filter_mode_ = 3; // 屏幕缩放考虑到清晰度,这里用3,最高缩放质量layer_conf_wrappers_.push_back(screen_layer_c1);SetLayersConfig();publisher_api_.SetFrameRate(publisher_handle_, GetIntValueFromEdit(&edit_frame_rate_));}else if (BST_CHECKED == btn_check_desktop_input_.GetCheck() && BST_CHECKED != btn_check_scale_desktop_.GetCheck()){publisher_api_.SetScreenClip(publisher_handle_,GetIntValueFromEdit(&edit_clip_left_),GetIntValueFromEdit(&edit_clip_top_),GetIntValueFromEdit(&edit_clip_width_),GetIntValueFromEdit(&edit_clip_height_));publisher_api_.SetFrameRate(publisher_handle_, GetIntValueFromEdit(&edit_frame_rate_));}else if ( BST_CHECKED == btn_check_window_input_.GetCheck() ){if ( nullptr != cur_sel_capture_window_ ){publisher_api_.SetCaptureWindow(publisher_handle_, cur_sel_capture_window_);publisher_api_.SetFrameRate(publisher_handle_, GetIntValueFromEdit(&edit_frame_rate_));// 窗口层测试和演示代码++/*auto index = 0;auto rgba_layer_c0 = std::make_shared<nt_pb_sdk::RGBARectangleLayerConfigWrapper>(index++, true,0, 0, 1280, 720);rgba_layer_c0->conf_.red_ = 0;rgba_layer_c0->conf_.green_ = 255;rgba_layer_c0->conf_.blue_ = 0;rgba_layer_c0->conf_.alpha_ = 255;layer_conf_wrappers_.push_back(rgba_layer_c0);auto window_layer_c1 = std::make_shared<nt_pb_sdk::WindowLayerConfigWrapper>(index++, true,100, 100, 800, 600);window_layer_c1->conf_.window_ = cur_sel_capture_window_;layer_conf_wrappers_.push_back(window_layer_c1);SetLayersConfig();*/// 窗口层测试和演示代码--}}else if (BST_CHECKED == btn_check_camera_input_.GetCheck()){if (CB_ERR != cur_sel_camera_index_&& CB_ERR != cur_sel_camera_resolutions_index_&& CB_ERR != cur_sel_camera_frame_rate_index_){auto& camera = cameras_[cur_sel_camera_index_];auto& cap = camera.capabilities_[cur_sel_camera_resolutions_index_];publisher_api_.SetVideoCaptureDeviceBaseParameter(publisher_handle_,camera.id_.c_str(), cap.width_, cap.height_);publisher_api_.SetFrameRate(publisher_handle_, cur_sel_camera_frame_rate_index_+ 1);publisher_api_.FlipVerticalCamera(publisher_handle_,BST_CHECKED == btn_check_flip_vertical_camera_.GetCheck());publisher_api_.FlipHorizontalCamera(publisher_handle_, BST_CHECKED == btn_check_flip_horizontal_camera_.GetCheck());auto degress = GetCameraRotateDegress();publisher_api_.RotateCamera(publisher_handle_, degress);}}publisher_api_.EnableDXGIScreenCapturer(publisher_handle_, BST_CHECKED == btn_check_dxgi_screen_capturer_.GetCheck());publisher_api_.DisableAeroScreenCapturer(publisher_handle_, BST_CHECKED == btn_check_capturer_disable_aero_.GetCheck());publisher_api_.EnableScreenCaptureLayeredWindow(publisher_handle_, BST_CHECKED == check_capture_layered_window_.GetCheck()?1:0);publisher_api_.SetCaptureWindowWay(publisher_handle_, BST_CHECKED == btn_check_wr_way_capture_window_.GetCheck() ? 2 : 1);auto cur_video_codec_id = btn_check_h265_encoder_.GetCheck() != BST_CHECKED? NT_MEDIA_CODEC_ID_H264 : NT_MEDIA_CODEC_ID_H265;NT_INT32 cur_sel_encoder_id = 0;NT_INT32 cur_sel_gpu = 0;auto is_hw_encoder = btn_check_video_hardware_encoder_.GetCheck() == BST_CHECKED;if (is_hw_encoder){auto cur_sel_hw = combobox_video_encoders_.GetCurSel();if (cur_sel_hw >=0 ){cur_sel_encoder_id = combobox_video_encoders_.GetItemData(cur_sel_hw);cur_sel_gpu = -1;auto cur_sel_hw_dev = combobox_video_hardware_encoder_devices_.GetCurSel();if (cur_sel_hw_dev >= 0){cur_sel_gpu = combobox_video_hardware_encoder_devices_.GetItemData(cur_sel_hw_dev);}}else{is_hw_encoder = false;}}if (!is_hw_encoder){if (NT_MEDIA_CODEC_ID_H264 == cur_video_codec_id){cur_sel_encoder_id = btn_check_openh264_encoder_.GetCheck() == BST_CHECKED ? 1 : 0;}}publisher_api_.SetVideoEncoder(publisher_handle_, is_hw_encoder? 1 : 0, cur_sel_encoder_id, cur_video_codec_id, cur_sel_gpu);if ( BST_CHECKED != btn_check_window_input_.GetCheck() ){publisher_api_.SetVideoBitRate(publisher_handle_, GetIntValueFromEdit(&edit_bit_rate_));}else{// 窗口的分辨率会变, 所以设置一组码率下去auto frame_rate = GetIntValueFromEdit(&edit_frame_rate_);SetBitrateGroup(publisher_handle_, frame_rate);}publisher_api_.SetVideoQualityV2(publisher_handle_, GetIntValueFromEdit(&edit_video_quality_));publisher_api_.SetVideoMaxBitRate(publisher_handle_, GetIntValueFromEdit(&edit_video_max_bitrate_));publisher_api_.SetVideoKeyFrameInterval(publisher_handle_, GetIntValueFromEdit(&edit_key_frame_));if (NT_MEDIA_CODEC_ID_H264 == cur_video_codec_id){auto profile_sel = combox_h264_profile_.GetCurSel();if (profile_sel != CB_ERR){publisher_api_.SetVideoEncoderProfile(publisher_handle_, profile_sel + 1);}}publisher_api_.SetVideoEncoderSpeed(publisher_handle_, GetIntValueFromEdit(&edit_video_encode_speed_));// 清除编码器所有的特定的参数publisher_api_.ClearVideoEncoderSpecialOptions(publisher_handle_);if (cur_sel_encoder_id == 1){// qp_max 和 qp_min 当前只对openh264有效, 这里也就只在openh264使用的场景下设置配置值publisher_api_.SetVideoEncoderQPMax(publisher_handle_, GetIntValueFromEdit(&edit_qp_max_));publisher_api_.SetVideoEncoderQPMin(publisher_handle_, GetIntValueFromEdit(&edit_qp_min_));// openh264 配置特定参数publisher_api_.SetVideoEncoderSpecialInt32Option(publisher_handle_, "usage_type", btn_check_openh264_ppt_usage_type_.GetCheck() == BST_CHECKED ? 1 : 0);publisher_api_.SetVideoEncoderSpecialInt32Option(publisher_handle_, "rc_mode", btn_check_openh264_rc_bitrate_mode_.GetCheck() == BST_CHECKED ? 1 : 0);publisher_api_.SetVideoEncoderSpecialInt32Option(publisher_handle_, "enable_frame_skip", btn_check_openh264_frame_skip_.GetCheck() == BST_CHECKED ? 1 : 0);}else{publisher_api_.SetVideoEncoderQPMax(publisher_handle_, -1);publisher_api_.SetVideoEncoderQPMin(publisher_handle_, -1);}}// 音频相关设置if ( BST_CHECKED == btn_check_auido_mic_input_.GetCheck() ){auto count = combox_auido_input_devices_.GetCount();if (count != CB_ERR && count > 0){auto cur_sel = combox_auido_input_devices_.GetCurSel();if (cur_sel != CB_ERR){publisher_api_.SetAuidoInputDeviceId(publisher_handle_, cur_sel);}}}// 只采集扬声器时做静音补偿if ( BST_CHECKED != btn_check_auido_mic_input_.GetCheck()&& BST_CHECKED == btn_check_auido_speaker_input_.GetCheck() ){publisher_api_.SetCaptureSpeakerCompensateMute(publisher_handle_, 1);}if ( BST_CHECKED == btn_check_speex_encoder_.GetCheck()){publisher_api_.SetPublisherAudioCodecType(publisher_handle_, 2);publisher_api_.SetPublisherSpeexEncoderQuality(publisher_handle_, GetIntValueFromEdit(&edit_speex_quality_));}else{publisher_api_.SetPublisherAudioCodecType(publisher_handle_, 1);}if ( BST_CHECKED == btn_check_auido_mic_input_.GetCheck()|| BST_CHECKED == btn_check_auido_speaker_input_.GetCheck()){if (BST_CHECKED == btn_check_set_mute_.GetCheck()){publisher_api_.SetMute(publisher_handle_, 1);}}if ( BST_CHECKED == btn_check_echo_cancel_.GetCheck() ){publisher_api_.SetEchoCancellation(publisher_handle_, 1, GetIntValueFromEdit(&edit_echo_delay_));}else{publisher_api_.SetEchoCancellation(publisher_handle_, 0, 0);}if ( BST_CHECKED == btn_check_noise_suppression_.GetCheck() ){publisher_api_.SetNoiseSuppression(publisher_handle_, 1);}else{publisher_api_.SetNoiseSuppression(publisher_handle_, 0);}if ( BST_CHECKED == btn_check_agc_.GetCheck() ){publisher_api_.SetAGC(publisher_handle_, 1);}else{publisher_api_.SetAGC(publisher_handle_, 0);}if (BST_CHECKED == btn_check_vad_.GetCheck()){publisher_api_.SetVAD(publisher_handle_, 1);}else{publisher_api_.SetVAD(publisher_handle_, 0);}if (BST_CHECKED == btn_check_auido_mic_input_.GetCheck()&& BST_CHECKED == btn_check_auido_speaker_input_.GetCheck()){publisher_api_.SetInputAudioVolume(publisher_handle_, 0, GetDoubleValueFromEdit(&edit_audio_input_volume_));publisher_api_.SetInputAudioVolume(publisher_handle_, 1, GetDoubleValueFromEdit(&edit_audio_speaker_input_volume_));}else if (BST_CHECKED == btn_check_auido_mic_input_.GetCheck()){publisher_api_.SetInputAudioVolume(publisher_handle_, 0, GetDoubleValueFromEdit(&edit_audio_input_volume_));}else if (BST_CHECKED == btn_check_auido_speaker_input_.GetCheck()){publisher_api_.SetInputAudioVolume(publisher_handle_, 0, GetDoubleValueFromEdit(&edit_audio_speaker_input_volume_));}
}

接下来,设置preview回调:

	publisher_api_.SetVideoPreviewImageCallBack(publisher_handle_, NT_PB_E_IMAGE_FORMAT_RGB32, GetSafeHwnd(), &NT_PB_SDKVideoPreviewImageHandle);

然后,调用preview接口:

void CSmartPublisherDemoDlg::OnBnClickedButtonStartPreview()
{if ( BST_CHECKED == btn_check_window_input_.GetCheck() ){if (nullptr == cur_sel_capture_window_){AfxMessageBox(_T("请先下拉选择采集窗口"));return;}}if ( publisher_handle_ == NULL ){if (!OpenPublisherHandle()){return;}}if ( publisher_handle_count_ < 1 ){SetCommonOptionToPublisherSDK();}ASSERT(publisher_handle_ != NULL);publisher_api_.SetVideoPreviewImageCallBack(publisher_handle_, NT_PB_E_IMAGE_FORMAT_RGB32, GetSafeHwnd(), &NT_PB_SDKVideoPreviewImageHandle);if (NT_ERC_OK != publisher_api_.StartPreview(publisher_handle_, 0, NULL)){if ( 0 == publisher_handle_count_ ){publisher_api_.Close(publisher_handle_);publisher_handle_ = NULL;}AfxMessageBox(_T("预览失败, 请确保选择了视频采集选项"));return;}publisher_handle_count_++;btn_preview_.EnableWindow(FALSE);btn_stop_preview_.EnableWindow(TRUE);if ( 1 == publisher_handle_count_ ){if (BST_CHECKED == btn_check_desktop_input_.GetCheck()){btn_choose_screen_region_.SetWindowTextW(L"移动屏幕区域");}btn_check_dxgi_screen_capturer_.EnableWindow(FALSE);check_capture_layered_window_.EnableWindow(FALSE);btn_check_wr_way_capture_window_.EnableWindow(FALSE);btn_check_desktop_camera_switch_.EnableWindow(FALSE);btn_check_camera_overlay_to_desktop_.EnableWindow(FALSE);btn_check_desktop_overlay_to_camera_.EnableWindow(FALSE);btn_add_image_watermark_.EnableWindow(FALSE);if (BST_CHECKED == btn_check_desktop_camera_switch_.GetCheck()|| BST_CHECKED == btn_check_camera_overlay_to_desktop_.GetCheck()|| BST_CHECKED == btn_check_desktop_overlay_to_camera_.GetCheck()){}else{btn_check_desktop_input_.EnableWindow(FALSE);btn_check_scale_desktop_.EnableWindow(FALSE);edit_desktop_scale_.EnableWindow(FALSE);btn_check_camera_input_.EnableWindow(FALSE);btn_check_window_input_.EnableWindow(FALSE);}DisableAuidoInputControl();}CreatePreViewWindow();ShowPreViewWindow(true);
}

NT_PB_SDKVideoPreviewImageHandle相关回调实现:

extern "C"  NT_VOID NT_CALLBACK NT_PB_SDKVideoPreviewImageHandle(NT_HANDLE handle, NT_PVOID user_data,const NT_PB_Image* image)
{if ( image != nullptr && image->format_ == NT_PB_E_IMAGE_FORMAT_RGB32&& image->width_ > 0 && image->height_ > 0&& image->plane_[0] != nullptr&& image->stride_[0] > 0){std::unique_ptr<nt_pb_rgbx_image> rgbx_image(new nt_pb_rgbx_image());rgbx_image->width_  = image->width_;rgbx_image->height_ = image->height_;rgbx_image->stride_ = image->stride_[0];rgbx_image->size_   = image->stride_[0] * image->height_;rgbx_image->data_.reset(new NT_BYTE[rgbx_image->size_]);if ( rgbx_image->data_ ){memcpy(rgbx_image->data_.get(), image->plane_[0], rgbx_image->size_);HWND hwnd = reinterpret_cast<HWND>(user_data);if (hwnd != NULL && ::IsWindow(hwnd)){::PostMessage(hwnd, WM_USER_PB_SDK_PREVIEW_RGBX_IMAGE, (WPARAM)(rgbx_image.release()), 0);}}}/*std::ostringstream ss;ss << "OnPreviewImage handle:" << handle << " w=" << image->width_<< " h=" << image->height_<< " format=" << image->format_ << " \r\n";OutputDebugStringA(ss.str().c_str());*/
}

这里通过调用封装后的nt_pb_ui_preview_wnd, 来完成本地实时预览:

LRESULT CSmartPublisherDemoDlg::OnSDKPreviewRGBXImage(WPARAM wParam, LPARAM lParam)
{nt_pb_rgbx_image* rgbx_image = (nt_pb_rgbx_image*)(wParam);if ( rgbx_image != nullptr ){std::shared_ptr<nt_pb_rgbx_image> sp_rgbx_image(rgbx_image);preview_wnd_.OnRGBXImage(sp_rgbx_image);}return S_OK;
}

具体实现如下:

void nt_pb_ui_preview_wnd::OnRGBXImage(const std::shared_ptr<nt_pb_rgbx_image>& sp_image)
{rgbx_image_ = sp_image;if (m_hWnd != NULL && ::IsWindow(m_hWnd) && ::IsWindowVisible(m_hWnd)){InvalidateRect(NULL, FALSE);}
}

OnPaint()实时刷新数据:

void nt_pb_ui_preview_wnd::OnPaint()
{CPaintDC dc(this); // device context for painting// TODO: Add your message handler code here// Do not call CWnd::OnPaint() for painting messagesif ( IsIconic() ){return;}CRect rc_client(0, 0, 0, 0);GetClientRect(rc_client);if ( rc_client.IsRectNull()|| rc_client.IsRectEmpty() ){return;}auto mem_dc = ::CreateCompatibleDC(dc.GetSafeHdc());auto mem_bitmap = ::CreateCompatibleBitmap(dc.GetSafeHdc(), rc_client.Width(), rc_client.Height());::SelectObject(mem_dc, mem_bitmap);HBRUSH brush = ::CreateSolidBrush(RGB(238, 243, 250));::FillRect(mem_dc, &rc_client, brush);::DeleteObject(brush);DrawImage(mem_dc, rc_client);::BitBlt(dc.GetSafeHdc(),0, 0,rc_client.Width(), rc_client.Height(),mem_dc,0, 0,SRCCOPY);::DeleteObject(mem_bitmap);::DeleteDC(mem_dc);
}

DrawImage()封装实现

void nt_pb_ui_preview_wnd::DrawImage(HDC hdc, const CRect& rc_client)
{ASSERT(hdc != NULL);ASSERT(!rc_client.IsRectNull());ASSERT(!rc_client.IsRectEmpty());if ( !rgbx_image_ )return;if (rc_client.Width() < 100 || rc_client.Height() < 100)return;if (draw_api_ == nullptr)return;NT_PB_Image image;memset(&image, 0, sizeof(image));image.cb_size_ = sizeof(image);image.format_  = NT_PB_E_IMAGE_FORMAT_RGB32;image.width_   = rgbx_image_->width_;image.height_  = rgbx_image_->height_;image.timestamp_ = 0;image.plane_[0]		 = rgbx_image_->data_.get();image.stride_[0]	 = rgbx_image_->stride_;image.plane_size_[0] = rgbx_image_->size_;auto limit_w = rc_client.Width() - 8;auto limit_h = rc_client.Height() - 8;auto  d_w = 0, d_h = 0;if ( rgbx_image_->width_ <= limit_w && rgbx_image_->height_ <= limit_h ){d_w = rgbx_image_->width_;d_h = rgbx_image_->height_;}else{CalScaleSize(limit_w, limit_h, rgbx_image_->width_, rgbx_image_->height_, d_w, d_h);}if ( d_w > 0 && d_h > 0 ){auto d_x = rc_client.Width()/2 - d_w/2;auto d_y = rc_client.Height()/2 - d_h/2;draw_api_->Draw(hdc, d_x, d_y,d_w, d_h,0, 0,rgbx_image_->width_, rgbx_image_->height_,&image);}
}

停止预览

调用StopPreview()即可。

void CSmartPublisherDemoDlg::OnBnClickedButtonStopPreview()
{publisher_handle_count_--;publisher_api_.StopPreview(publisher_handle_);if (0 == publisher_handle_count_){publisher_api_.Close(publisher_handle_);publisher_handle_ = NULL;}btn_preview_.EnableWindow(TRUE);btn_stop_preview_.EnableWindow(FALSE);if (0 == publisher_handle_count_){if (BST_CHECKED == btn_check_desktop_input_.GetCheck()){btn_choose_screen_region_.SetWindowTextW(L"选择屏幕区域");}btn_check_dxgi_screen_capturer_.EnableWindow(TRUE);check_capture_layered_window_.EnableWindow(TRUE);btn_check_wr_way_capture_window_.EnableWindow(TRUE);btn_desktop_camera_switch_.SetWindowTextW(L"切换到摄像头");btn_disable_image_watermark_.SetWindowTextW(L"停止水印");btn_disable_camera_overlay_.SetWindowTextW(L"停止叠加摄像头");btn_disable_desktop_overlay_.SetWindowTextW(L"停止叠加屏幕");btn_check_desktop_camera_switch_.EnableWindow(TRUE);btn_check_camera_overlay_to_desktop_.EnableWindow(TRUE);btn_check_desktop_overlay_to_camera_.EnableWindow(TRUE);btn_add_image_watermark_.EnableWindow(TRUE);if (BST_CHECKED == btn_check_desktop_camera_switch_.GetCheck()|| BST_CHECKED == btn_check_camera_overlay_to_desktop_.GetCheck()|| BST_CHECKED == btn_check_desktop_overlay_to_camera_.GetCheck()){}else{btn_check_desktop_input_.EnableWindow(TRUE);btn_check_scale_desktop_.EnableWindow(TRUE);edit_desktop_scale_.EnableWindow(TRUE);btn_check_camera_input_.EnableWindow(TRUE);btn_check_window_input_.EnableWindow(TRUE);}EnableAuidoInputControl();}ShowPreViewWindow(false);
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/553051.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Windows平台RTMP|RTSP播放器为什么要兼容GDI绘制

为什么要支持GDI 先说结论&#xff0c;Windows平台播放渲染这块&#xff0c;一般来说99%以上的机器都是支持D3D的&#xff0c;实现GDI模式绘制&#xff0c;除了为了好的兼容性外&#xff0c;在远程连接的场景下&#xff0c;D3D创建不成功&#xff0c;需要使用GDI模式。 简单来…

Android平台实现Unity3D下RTMP推送

像Unity3D下的RTMP或RTSP播放器一样&#xff0c;好多开发者苦于在Unity环境下&#xff0c;如何高效率低延迟的把数据采集并编码实时推送到流媒体服务器&#xff0c;实现Unity场景下的低延迟推拉流方案。 关于屏幕采集&#xff0c;有两种方案&#xff1a; 1. 直接封装Android原…

Windows平台实现Unity下窗体|摄像头|屏幕采集推送

技术背景 随着Unity3D的应用范围越来越广&#xff0c;越来越多的行业开始基于Unity3D开发产品&#xff0c;如传统行业中虚拟仿真教育、航空工业、室内设计、城市规划、工业仿真等领域。 基于此&#xff0c;好多开发者苦于在Unity环境下&#xff0c;没有低延迟的推拉流解决方案…

数据推送选择GB28181、RTSP还是RTMP?

GB/T28181 国标GB/T28181协议全称《安全防范视频监控联网系统信息传输、交换、控制技术要求》&#xff0c;是一个定义视频联网传输和设备控制标准的白皮书&#xff0c;由公安部科技信息化局提出&#xff0c;该标准规定了城市监控报警联网系统中信息传输、交换、控制的互联结构…

Android平台基于RTMP或RTSP的一对一音视频互动技术方案探讨

背景 随着智能门禁等物联网产品的普及&#xff0c;越来越多的开发者对音视频互动体验提出了更高的要求。目前市面上大多一对一互动都是基于WebRTC&#xff0c;优点不再赘述&#xff0c;我们这里先说说可能需要面临的问题&#xff1a;WebRTC的服务器部署非常复杂&#xff0c;可…

Android前端音视频数据接入GB28181平台意义

技术背景 在我们研发Android平台GB28181前端音视频接入模块之前&#xff0c;业内听到最多的是&#xff0c;如何用Android或者Windows端&#xff0c;在没有国标IPC设备的前提下&#xff0c;模拟GB28181的信令和媒体流交互流程&#xff0c;实现GB28181整体方案的测试&#xff1f…

std::atomic和std::mutex区别

​std::atomic介绍​ ​模板类std::atomic是C11提供的原子操作类型&#xff0c;头文件 #include<atomic>。​在多线程调用下&#xff0c;利用std::atomic可实现数据结构的无锁设计。​​ ​和互斥量的不同之处在于&#xff0c;std::atomic原子操作&#xff0c;主要是保…

C++ std::remove/std::remove_if/erase用法探讨

​std::remove 不会改变输入vector/string的长度。其过程相当于去除指定的字符&#xff0c;剩余字符往前靠。后面的和原始字符保持一致。​ 需要注意的是&#xff0c;remove函数是通过覆盖移去的&#xff0c;如果容器最后一个值刚好是需要删除的&#xff0c;则它无法覆盖掉容器…

再谈NULL和nullptr(C++11)区别

在谈NULL和nullptr区别之前&#xff0c;我们先看段代码&#xff1a; #include "stdafx.h" #include <iostream>using namespace std; void func(void *p) {cout << "p is pointer " << p << endl; } void func(int num) {cout &l…

C++11新特性探索:原始字符串字面值(raw string literal)

原始字符串字面值(raw string literal)是C11引入的新特性。 原始字符串简单来说&#xff0c;“原生的、不加处理的”&#xff0c;字符表示的就是自己&#xff08;所见即所得&#xff09;&#xff0c;引号、斜杠无需 “\” 转义&#xff0c;比如常用的目录表示&#xff0c;引入…

Android国标接入终端实现GB28181实时位置(MobilePosition)上报

技术背景 在实现本文提到的Android平台国标GB28181接入终端的实时位置上报之前&#xff0c;之前已经完成了Android终端GB28181常规功能接入&#xff0c;采集到实时音视频数据&#xff0c;编码PS打包后&#xff0c;按需传到GB28281服务平台&#xff0c;媒体流支持最新GB28181-2…

基于RTMP的智慧数字人|AI数字人传输技术方案探讨

技术背景 随着智慧数字人、AI数字人的兴起&#xff0c;越来越多的公司着手构建​全息、真实感数字角色等技术合成的数字仿真人虚拟形象&#xff0c;通过“虚拟形象语音交互&#xff08;T-T-S、ASR&#xff09;自然语言理解&#xff08;NLU&#xff09;深度学习”&#xff0c;构…

​GB28181心跳机制探讨和技术实现

​GB/T 28181-2016心跳机制​ ​通过周期性的状态信息报送&#xff0c;实现注册服务器与源设备之间的状态检测即心跳机制。 ​ ​心跳发送方、接收方需统一配置“心跳间隔”参数&#xff0c;按照“心跳间隔”定时发送心跳消息&#xff0c;默认心跳间隔60s。心跳发送方、接收方…

Unity3D下Linux平台播放RTSP或RTMP流

背景 尽管Windows平台有诸多优势&#xff0c;Linux平台的发展还是势不可挡&#xff0c;特别实在传统行业&#xff0c;然而Linux生态构建&#xff0c;总是差点意思&#xff0c;特别是有些常用的组件&#xff0c;本文基于已有的Linux平台RTSP、RTMP播放模块&#xff0c;构建Unit…

Unity3D平台实现全景实时RTMP|RTSP流渲染

好多开发者的使用场景&#xff0c;需要在Windows特别是Android平台实现Unity3D的全景实时视频渲染&#xff0c;本文以Windows平台为例&#xff0c;简单介绍下具体实现&#xff1a; 如果是RTSP或RTMP流数据&#xff0c;实际上难点&#xff0c;主要在于拉取RTSP或RTMP流&#xf…

C++17新特性之std::string_view

std::string_view系C17标准发布后新增的内容&#xff0c;类成员变量包含两个部分&#xff1a;字符串指针和字符串长度&#xff0c;相比std::string, std::string_view涵盖了std::string的所有只读接口。如果生成的std::string无需进行修改操作&#xff0c;可以把std::string转换…

Android平台实现RTSP|RTMP转GB28181网关接入

背景 在事先Android平台RTSP、RTMP转GB28181网关之前&#xff0c;我们已经实现了Android平台GB28181的接入&#xff0c;可实现Android平台采集到的音视频数据&#xff0c;编码后&#xff0c;打包按需发到GB28181服务平台。此外&#xff0c;拉流端&#xff0c;我们已经有了成熟…

Unity3D下实现Linux平台RTMP推流(以采集Unity窗体和声音为例)

技术背景 随着物联网等行业的崛起&#xff0c;越来越多的传统行业如虚拟仿真、航天工业、工业仿真、城市规划等&#xff0c;对Linux下的生态构建&#xff0c;有了更大的期望&#xff0c;Linux平台下&#xff0c;可选的直播推拉流解决方案相对Windows和移动端&#xff0c;非常少…

Android平台实现VR头显Unity下音视频数据RTMP推送

背景 随着技术发展的日新月异&#xff0c;虚拟现实产业已经从过去的探索期&#xff0c;自2020年起&#xff0c;慢慢过渡到高速发展期&#xff0c;随着5G时代的到来&#xff0c;大带宽高可靠低延迟网络环境&#xff0c;为虚拟现实产业提供了很好的网络保障&#xff0c;虚拟现实…

C++11特性之std:call_once介绍

std:call_once是C11引入的新特性&#xff0c;如需使用&#xff0c;只需要#include <mutex>即可&#xff0c;简单来说std:call_once的作用&#xff0c;确保函数或代码片段在多线程环境下&#xff0c;只需要执行一次&#xff0c;常用的场景如Init()操作或一些系统参数的获取…