Open mpena2099 opened 3 years ago
I still think this is a bug but to be able to solve it: https://www.codeleading.com/article/43242589556/
The reason is that ubuntu has no sound by default. The way to turn on the root sound: vi /root/.profile add
pulseaudio --start --log-target=syslog
So, in the docker container:
$ pulseaudio --start --log-target=syslog
$ roslaunch webrtc_ros webrtc_ros.launch
It still didn't work, but the error has been eliminated.
OK, it is working but not in Firefox, as #40.
The relevant HTTP/1.1 fix is in the revived async_web_server_cpp package here. The package is released and waiting for sync with the main repository. In the meantime, you can compile it yourself, or take it from ros-testing.
The relevant HTTP/1.1 fix is in the revived async_web_server_cpp package here. The package is released and waiting for sync with the main repository. In the meantime, you can compile it yourself, or take it from ros-testing.
The "ros-testing" didn't work but compile the package did! :smiley:
Hi ~
(core_audio_utility_win.cc:672): IsSupported
(core_audio_utility_win.cc:208): C:\WINDOWS\system32\audioses.dll
(core_audio_base_win.cc:168): webrtc::webrtc_win::CoreAudioBase::CoreAudioBase[Output]
(core_audio_base_win.cc:169): Automatic restart: 1
(core_audio_base_win.cc:170): Windows version: 5
(core_audio_utility_win.cc:716): CreateDeviceEnumerator
(core_audio_base_win.cc:188): webrtc::webrtc_win::CoreAudioBase::CoreAudioBase:Registered endpoint notification callback.
(core_audio_output_win.cc:33): webrtc::webrtc_win::CoreAudioOutput::CoreAudioOutput
(core_audio_base_win.cc:168): webrtc::webrtc_win::CoreAudioBase::CoreAudioBase[Input]
(core_audio_base_win.cc:169): Automatic restart: 1
(core_audio_base_win.cc:170): Windows version: 5
(core_audio_utility_win.cc:716): CreateDeviceEnumerator
(core_audio_base_win.cc:188): webrtc::webrtc_win::CoreAudioBase::CoreAudioBase:Registered endpoint notification callback.
(core_audio_input_win.cc:36): webrtc::webrtc_win::CoreAudioInput::CoreAudioInput
(audio_device_module_win.cc:516): webrtc::webrtc_win::CreateWindowsCoreAudioAudioDeviceModuleFromInputAndOutput
(audio_device_module_win.cc:98): webrtc::webrtc_win::anonymous-namespace'::WindowsAudioDeviceModule::WindowsAudioDeviceModule (audio_processing_impl.cc:274): Injected APM submodules: Echo control factory: 0 Echo detector: 0 Capture analyzer: 0 Capture post processor: 0 Render pre processor: 0 (webrtc_voice_engine.cc:263): WebRtcVoiceEngine::WebRtcVoiceEngine (webrtc_video_engine.cc:588): WebRtcVideoEngine::WebRtcVideoEngine() (webrtc_voice_engine.cc:285): WebRtcVoiceEngine::Init (audio_device_module_win.cc:128): webrtc::webrtc_win::
anonymous-namespace'::WindowsAudioDeviceModule::Init
I seem to have a similar problem on Windows.
Any ideia?
Thanks! Yu
it is working, I modified the file webrtc\rtc_base\synchronization\sequence_checker.h
#define RTC_DCHECK_RUN_ON(x)
#if 0
webrtc::webrtc_seq_check_impl::SequenceCheckerScope seq_check_scope(x); \
RTC_DCHECK((x)->IsCurrent()) << webrtc::ExpectationToString(x)
#endif
#endif // RTC_BASE_SYNCHRONIZATION_SEQUENCE_CHECKER_H_
Hi!
$ docker run --network=host -t -i webrtc_ros /bin/bash $ roslaunch webrtc_ros webrtc_ros.launch
And then, on browser, when I click on the image topic, that is what I get on ROS:
Any ideia?
Thanks! Mauricio