Skip to content

Use your iPhone camera as a video source in OBS Studio and stream high quality video from your iPhone's camera over USB

License

Notifications You must be signed in to change notification settings

dougg3/obs-ios-camera-source

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

obs-ios-camera-source Linux branch

This is a fork of obs-ios-camera-source that supports Linux.

To use this you use the accompanying iOS app to begin streaming in OBS.

Downloads

Ubuntu 22.04 (and possibly other distros), 20.04, and 18.04

(Confirmed working on Manjaro as of 06 Oct 2022 by @seffyroff)

Go to the releases section of this repository and download the latest release. After downloading, place the zip file in your home directory and run:

unzip plugin-ubuntu-*.zip

You must have the unzip package installed for this to work: sudo apt install unzip.

Building

Ubuntu 22.04/20.04/18.04

  • Make sure you have the universe and multiverse repositories enabled so you will have access to FFmpeg.
  • Install OBS Studio using the Ubuntu instructions on the OBS wiki.
    • This should install the headers and CMake files necessary for compiling against libobs. It does on Ubuntu; I can't speak for other distros.
  • Install prerequisites: sudo apt install build-essential git cmake libavcodec-dev libssl-dev pkg-config
  • Download this plugin source code:
    • git clone https://github.com/dougg3/obs-ios-camera-source.git
  • Build the plugin:
    • cd obs-ios-camera-source
    • mkdir build
    • cd build
    • cmake ..
    • make -j$(nproc)
  • Manually install the plugin by copying relevant files into your OBS plugins directory (assuming 64-bit Linux):
    • mkdir -p ~/.config/obs-studio/plugins/obs-ios-camera-source/data/locale
    • mkdir -p ~/.config/obs-studio/plugins/obs-ios-camera-source/bin/64bit
    • cp ../data/locale/en-US.ini ~/.config/obs-studio/plugins/obs-ios-camera-source/data/locale/
    • cp obs-ios-camera-source.so ~/.config/obs-studio/plugins/obs-ios-camera-source/bin/64bit/

Note for Ubuntu 18.04 users: this plugin now requires a newer version of CMake than what was bundled originally. Either use the premade binaries, or upgrade your CMake.

Fedora 36

  • Install OBS Studio using the Fedora instructions on the OBS wiki.
  • Install prerequisites: sudo dnf install obs-studio-devel cmake openssl-devel git make automake gcc gcc-c++ ffmpeg-devel
  • Follow the same instructions as Ubuntu starting from "Download this plugin source code"

Arch

  • Install OBS Studio using the Arch instructions on the OBS wiki.
  • Install prerequisites: sudo pacman -S git make gcc cmake pkg-config
  • Follow the same instructions as Ubuntu starting from "Download this plugin source code"

Note: Depending on how OBS is installed, SteamOS users may need to explicitly install ffmpeg in addition to the above mentioned prerequisites should they encounter compilation errors around missing libavcodec:

  • sudo pacman -S ffmpeg

Other distros

  • As you can see from the different sections above, the instructions are pretty much the same on all distros. You basically just have to make sure you have FFmpeg, OpenSSL, and libobs development packages installed, along with git, pkg-config, cmake, make, and gcc. CMake should handle everything for you after all the prerequisites are installed.

Special thanks

  • wtsnz for creating an awesome plugin/app for using your iOS camera in OBS!

About

Use your iPhone camera as a video source in OBS Studio and stream high quality video from your iPhone's camera over USB

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 57.4%
  • CMake 11.1%
  • C 10.1%
  • Shell 8.2%
  • Batchfile 6.8%
  • Ruby 4.5%
  • Inno Setup 1.9%