Skip to content

Python module for extracting image from video file

Notifications You must be signed in to change notification settings

Tee0125/pydemux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pydemux

ffmpeg wrapper to decode frames from video sequence

Install

From source:

python setup.py install

From anaconda cloud:

conda install -c tee pydemux

Usage

from PyDemux import Video

v = Video.open('video.mov')

for i in range(0, 10):
    im = v.get_frame()

    if im is None:
        break

    im.show()