https://github.com/MrLucky974/VirtualWebcam
This python code permit the user to use the IpWebcam app (Android) with the OBS Virtual Camera.
https://github.com/MrLucky974/VirtualWebcam
camera python
Last synced: 4 months ago
JSON representation
This python code permit the user to use the IpWebcam app (Android) with the OBS Virtual Camera.
- Host: GitHub
- URL: https://github.com/MrLucky974/VirtualWebcam
- Owner: MrLucky974
- Created: 2021-03-18T18:15:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-16T16:23:14.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T13:37:26.380Z (7 months ago)
- Topics: camera, python
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VirtualWebcam
Use your Android phone as OBS Virtual Camera using IpWebcam.# Requirements
- Python 3.7+
- pygame
- numpy
- pygame_widgets
- pyvirtualcam
- ipwebcam# How to install
You need to have python installed.1. Download this Github repository.
2. Install all the following modules (by doing ``pip install module_name``) :
- pygame
- numpy
- pygame_widgets
- pyvirtualcam
- ipwebcam
3. You also need to have OBS installed (for the virtual camera).
4. Extract the repository (or go in the file if you used 'git' method).# How to use
1. Install the app IpWebcam (by Pavel Khlebovich) on your Android device.
2. Open the app and click on 'Start the server' (or something like that).
3. You will have an address, copy it somewhere.
4. Open 'main.py' inside the directory of the repository, in line 16, replace the ADDRESS:PORT in brackets by what you saved in step 3 (Don't change anything else!).
5. Open a console in the directory of the repository.
6. Type ```python main.py``` and enter !
7. You can now use OBS Virtual Camera.# Features (Current version : v1.0.0)
- You can use the IpWebcam app as a webcam for your computer.
- A configuration panel with currently only a slider that let you zoom in/out.# Resources/Assets
Of course, I didn't figured that code out all by myself, thanks to smarter people on the Internet this project exists :[StackOverflow] : (https://stackoverflow.com/questions/63475061/how-to-make-a-virtual-camera-with-python)
[IpWebcam Module Code Example] : (https://pypi.org/project/ipwebcam/)