This file contains 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 characters
# http://names.mooseroots.com/stories/5165/most-popular-gender-neutral-names | |
Avery | |
Riley | |
Peyton | |
Logan | |
Taylor | |
Ryan | |
Jordan | |
Cameron |
This file contains 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 characters
$ ffprobe -f avfoundation -list_devices true '' | |
<snip> | |
[AVFoundation input device @ 0x7f809940d4c0] AVFoundation video devices: | |
[AVFoundation input device @ 0x7f809940d4c0] [0] FaceTime HD Camera | |
[AVFoundation input device @ 0x7f809940d4c0] [1] Capture screen 0 | |
[AVFoundation input device @ 0x7f809940d4c0] AVFoundation audio devices: | |
[AVFoundation input device @ 0x7f809940d4c0] [0] Built-in Microphone | |
: Input/output error | |
$ ffprobe -f avfoundation 0:0 |
This file contains 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 characters
import glob | |
import threading | |
from queue import Queue | |
import av | |
packet_queue = Queue(1) | |
def read_target(): |
OlderNewer