运行 Chromium 与假摄像头和真正的微型
Run Chromium with fake webcam and real micro
我可以使用以下命令 运行 Google Chrome 使用假网络摄像头:
$ google-chrome-stable --use-fake-device-for-media-stream --use-file-for-fake-video-capture=video.mjpeg
这很好用,但我只能使用此配置使用假音频源。如何运行 Chromium/Google Chrome 假视频流和真实音频流?
您也可以使用任何您想要的 Python 模块。
用--use-fake-device-for-media-stream
是不可能的,Chrome will always use fake audio:
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kUseFakeDeviceForMediaStream)) {
params_.set_format(media::AudioParameters::AUDIO_FAKE);
}
改用虚拟网络摄像头和真实麦克风。
从搜索中快速选择:
- Webcamoid、Windows/macOS/Linux
- OBS Virtualcam, plugin for OBS Studio、Windows/macOS/Linux
- Syphon Virtual Webcam, plugin for Isadora、macOS
我可以使用以下命令 运行 Google Chrome 使用假网络摄像头:
$ google-chrome-stable --use-fake-device-for-media-stream --use-file-for-fake-video-capture=video.mjpeg
这很好用,但我只能使用此配置使用假音频源。如何运行 Chromium/Google Chrome 假视频流和真实音频流?
您也可以使用任何您想要的 Python 模块。
用--use-fake-device-for-media-stream
是不可能的,Chrome will always use fake audio:
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kUseFakeDeviceForMediaStream)) {
params_.set_format(media::AudioParameters::AUDIO_FAKE);
}
改用虚拟网络摄像头和真实麦克风。 从搜索中快速选择:
- Webcamoid、Windows/macOS/Linux
- OBS Virtualcam, plugin for OBS Studio、Windows/macOS/Linux
- Syphon Virtual Webcam, plugin for Isadora、macOS