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 characters
"""Lightweight module for video capture: imageio that can talk to ffmpeg | |
""" | |
from pylab import plt | |
import imageio | |
import os | |
# list devices | |
os.system('ffmpeg -f dshow -list_devices true -i ""') | |
# adjust video properties |
OlderNewer