Read my previous article to install obs: jphein.com/how-to-instal…
I will be using the free Android app called IP webcam. www.google.com/url?sa=t&…

1. Start and configure IP webcam. Run the server.
You can use either USB or Wi-Fi. My Wi-Fi is rather slow, so I’ll be using a USB cable to connect my Android phone to my Ubuntu computer.
2. The second step is to plug your phone into your computer using the USB micro or USB C cable. Then turn on USB tethering on your phone.
Option 1- Use built-in OBS Media Source
The delay is too great for me…


Option 2 – VLC
An easy way is by using VLC, but it seems to also create a delay on my machine. Does anyone have suggestions?
sudo apt --yes install vlc

Then add a VLC media source in OBS, Click the small “+” sign, and “Add Path/URL” then paste your IP Webcam url. See below examples:
MPEG
http://192.168.42.129:8080/videofeed
ULAW
rtsp://192.168.42.129:8080/h264-ulaw.sdp
PCM
rtsp://192.168.42.129:8080/h264-pcm.sdp
Option 3 – Gstreamer with OBS gstreamer plugin
I noticed someone has made a Gstreamer plugin for OBS.
In order to use this you’ll need to use the PPA version and not the Snap version.
- Install OBS using PPA:
launchpad.net/~obsprojec… - Download the .so file from obsproject.com/forum/res… and install in /usr/lib/obs-plugins/
- Add source “gstreamer source” in OBS.
H264
uridecodebin uri=rtsp://192.168.42.129:8080/h264_ulaw.sdp name=bin ! queue ! video. bin. ! queue ! audio.
H264 seems to have more delay. MPEG seems to have less delay:
MPEG
souphttpsrc location="http://192.168.42.129:8080/videofeed" do-timestamp=true is-live=true ! multipartdemux ! jpegdec ! videoconvert ! video.
Option 4 – Gstreamer with v4l2loopback
Gstreamer seems to have less delay. The loopback is sweet, because it let’s you treat your phone just like any other v4l2 device, like a UVC webcam. That way you can use it as a cam for Google Meet, Duo, etc…
Make sure you have gestreamer plugins installed:
sudo apt --yes install gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-plugins-rtp
You can test to make sure that gstreamer connects with the IP webcam from your Android phone by issuing the below command.
gst-launch-1.0 souphttpsrc location="http://192.168.42.129:8080/videofeed" do-timestamp=true is-live=true ! multipartdemux ! jpegdec ! videoconvert ! ximagesink
Install v4loopback
sudo apt install --yes v4l2loopback-utils sudo modprobe v4l2loopback
Create the virtual webcam
This seems to work with the MPEG stream:
gst-launch-1.0 souphttpsrc location="http://192.168.42.129:8080/videofeed" do-timestamp=true is-live=true ! multipartdemux ! jpegdec ! videoconvert ! v4l2sink device="/dev/video2"
I can’t get this one to work yet.
gst-launch-1.0 souphttpsrc location="http://192.168.42.129:8080/videofeed" do-timestamp=true is-live=true \ ! multipartdemux \ ! decodebin3 \ ! videoconvert \ ! videoscale \ ! videorate \ ! video/x-raw,format=YUY2,width=640,height=480,framerate=24/1 \ ! v4l2sink device="/dev/video2"
I wonder how you would receive the IP Webcam H264 stream with gstreamer? maybe:
`gst-launch-1.0 rtspsrc location=’rtsp://192.168.42.129:8080/h264-ulaw.sdp’ ! rtph264depay ! h264parse ! avdec_h264 ! v4l2sink device=”/dev/video2″`
Read more here: medium.com/nutanix-iot/t…
If you want more than one Android phone streaming to your computer using the loop-back method. You’ll have to reload the loopback module inter kernel with a variable telling it how many loopback devices to make. For two, use the commands below:
sudo modprobe -r v4l2loopback
sudo modprobe v4l2loopback devices=2
NOTE: All this needs to be done before you add the Video Capture Device (V4L2) in OBS. If you make any changes to the video stream after you add the source, you will need to remove the source or close OBS in order to create the loopback again.
For automated script for Ubuntu see here: github.com/bluezio/ipweb…
See also: cubethethird.wordpress.c…
iPhone and Windows
For iPhone see: obsproject.com/forum/res… or apps.apple.com/us/app/nd…
For Windows see here: ip-webcam.appspot.com/
Use the output of OBS as a virtual webcam
With any of these options you can use the: obs-v4l2sink plugin
github.com/CatxFish/obs-…
This allows you to use the output of OBS as a virtual cam in any Linux program like Google Meet, Duo, Zoom, Skype, etc..