iphone-to-macos-camera
iphone-to-macos-camera copied to clipboard
Enabling camtwist for newer versions of Zoom
Also, this trick works for others tools, like Chime (from Amazon), which I use for work.
you need to override the Validation Entititlement of the app, like described it here: https://github.com/johnboiles/obs-mac-virtualcam/issues/4#issuecomment-612152106
First you need a new file entitlements.xml
with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>
Then you run the following command, pointing to your app path:
sudo codesign --entitlements entitlements.xml -f -s - /Applications/Amazon\ Chime.app
Now all the Virtual Cameras will be visible in the app's camera configuration.
Hey @dbrauner, this is awesome; I was hoping someone would come up with a code snippet for this 😄
I'll try and get this integrated in some of the docs and scripts soon!