FFVideo is a python extension makes possible to access to decoded frames at two format: PIL.Image or numpy.ndarray.
Project description
Installation
In Ubuntu you can install the above using the following commands:
sudo aptitude install python-dev cython libavcodec-dev libavformat-dev libswscale-dev tar -xf FFVideo-0.0.13.tar.gz cd FFVideo-0.0.13 python setup.py install
or:
sudo aptitude install python-dev cython libavcodec-dev libavformat-dev libswscale-dev python-pip pip install ffvideo
How to use
Getting thumnails or videostream info
from ffvideo import VideoStream
def print_info(vs):
print '-' * 20
print "codec: %s" % vs.codec_name
print "duration: %.2f" % vs.duration
print "bit rate: %d" % vs.bitrate
print "frame size: %dx%d" % (vs.frame_width, vs.frame_height)
print "frame_mode: %s" % vs.frame_mode
vs = VideoStream('0.flv')
print_info(vs)
vs = VideoStream('0.flv',
frame_size=(128, None), # scale to width 128px
frame_mode='L') # convert to grayscale
print_info(vs)
frame = vs.get_frame_at_sec(2)
print frame.size
# PIL image, required installed PIL
frame.image().save('frame2sec.jpeg')
# numpy.ndarray, required installed numpy
print frame.ndarray().shape
Iterating over frame sequence
from ffvideo import VideoStream
for frame in VideoStream('0.flv'):
print frame.timestamp
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
FFVideo-0.0.13.tar.gz
(47.4 kB
view details)
File details
Details for the file FFVideo-0.0.13.tar.gz.
File metadata
- Download URL: FFVideo-0.0.13.tar.gz
- Upload date:
- Size: 47.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
648aa2f45dd2091fd814de4b55479f7089379c2bf290b63a637afac6df9ac28b
|
|
| MD5 |
a28ff6e211fbb114c60b51090c6d7d1a
|
|
| BLAKE2b-256 |
00881837ebf7d023f03ecfcad0d49e95102969c4d0f631efcc137f2611500770
|