-
-
Save GoMino/1a17e8fe3e0a2516f36b395b5da13966 to your computer and use it in GitHub Desktop.
Revisions
-
docPhil99 revised this gist
Mar 13, 2018 . 1 changed file with 7 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,4 +9,10 @@ This will list the aviable video and audio devices. The below will capture at 30fps and the set video size to a file. ```fmpeg -f avfoundation -framerate 30 -video_size 640x480 -i "0:none" out.avi``` The ```-i 0:none``` will select the 0 indexed video source and no audio. We can stream this to the network with ```ffmpeg -f avfoundation -framerate 30 -video_size 640x480 -i "0:none" -vcodec libx264 -preset ultrafast -tune zerolatency -pix_fmt yuv422p -f mpegts udp://localhost:12345``` This can be viewed using VLC or OpenCV, although there maybe a significant lactancy in the stream -
docPhil99 revised this gist
Mar 13, 2018 . 1 changed file with 10 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,12 @@ #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. ```fmpeg -f avfoundation -framerate 30 -video_size 640x480 -i "0:none" out.avi``` The ```-i 0:none``` will select the 0 indexed video source and no audio. -
docPhil99 revised this gist
Mar 13, 2018 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,3 @@ #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 "" ``` -
docPhil99 created this gist
Mar 13, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ temp