Skip to content

Instantly share code, notes, and snippets.

View geenloop's full-sized avatar
🏠
Working from home

GeenLoop geenloop

🏠
Working from home
View GitHub Profile
@docPhil99
docPhil99 / macFFmpeg.md
Last active March 1, 2024 12:31
Mac webcam FFmpeg

#Capture and stream a webcam To capture using the iSight camera on a Mac, or infact any other webcam connected to the Mac, we can use FFmpeg. First get a list of the devices installed.

ffmpeg -f avfoundation -list_devices true -i "" 

This will list the aviable video and audio devices.

The below will capture at 30fps and the set video size to a file. ffmpeg -f avfoundation -framerate 30 -video_size 640x480 -i "0:none" out.avi