Running locally doesn't show incomming video stream.
See original GitHub issueHi, thanks for the membrane, it looks awesome.
Grain of salt, I have tried to run membrane_videoroom
locally and encountered a problem: there is no incomming video input at all. I see what my webcam shows, in another tab/another browser/with and without anon mode I don’t see any input.
I took recent version from master and have run Docker image, not sure this is related to my setup because Docker was built without errors or warnings. Can you help me with this, please?
(Not sure is this more relates to https://github.com/membraneframework/membrane_videoroom , this repo or even https://github.com/membraneframework/membrane_core feel free to move to another.)
Issue Analytics
- State:
- Created a year ago
- Reactions:2
- Comments:17 (9 by maintainers)
Top Results From Across the Web
playing incoming video stream - c++ - Stack Overflow
The client is receiving a video stream using udp socket. Now as I am receiving the stream I want to play it simultaneous.It...
Read more >Help With Setting Up Live Video Stream for Incoming Streams
I recently installed Wowza on my mac and setup the server successfully. I am even able to stream video to the “Live” application...
Read more >A client may not be able to connect to multicast streams or to ...
A client may not be able to connect to multicast streams or to other User Datagram Protocol streams through Windows Firewall by using...
Read more >Setup your own RTMP Server to Receive and Redistribute ...
With a little help from some free software, you can have your own RTMP server. You can receive video from a remote location, ......
Read more >Troubleshoot audio and video issues on your computer or ...
If you are not hearing any sound at all from your device: Windows: See Fix sound problems in Windows 10 . Note: Running...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hm, are you using Macbook? If so, there might be problems with option
--network=host
. You can also set range of ports, that will be published. Put these 2 addtional lines to your.env
fileI suggest to set
INTEGRATED_TURN_IP
toen0
, in my case it will beINTEGRATED_TURN_IP=192.168.83.198
. You can get it from output ofifconfig
command.Then, run
$ docker run -p 50000-50050:50000-50050/udp -p 4000:4000/tcp --env-file .env membrane_videoroom_advanced
in your command line.Yay, it works. Indeed config on host was default so the connection was outside the range.
INTEGRATED_TURN_IP
also.Thanks for helping, works perfectly! ❤️