Bindings for FFmpegSource
Project description
Example usage
If you don’t need to keep the index, create a video source right away:
>>> import ffms >>> source_file = "test/x264.mkv" >>> vsource = ffms.VideoSource(source_file)
Or you can create an indexer:
>>> indexer = ffms.Indexer(source_file) >>> indexer.format_name 'matroska' >>> indexer.track_info_list [TrackInfo(type=0, codec_name='h264')]
Then create the index for the video source:
>>> index = indexer.do_indexing(-1) >>> track_number = index.get_first_indexed_track_of_type(ffms.FFMS_TYPE_VIDEO) >>> vsource = ffms.VideoSource(source_file, track_number, index)
Extract information from the video source:
>>> vsource.properties.NumFrames 8 >>> vsource.track.keyframes [0, 5] >>> vsource.track.timecodes [0.0, 1000.0, 2000.0, 3000.0, 4000.0, 5000.0, 6000.0, 7000.0]
Retrieve a video frame:
>>> frame = vsource.get_frame(0) >>> frame.EncodedWidth, frame.EncodedHeight (128, 72) >>> frame.planes[0] array([16, 16, 16, ..., 16, 16, 16], dtype=uint8)
ffmsinfo.py is a demo script showing how this package can be used.
Installation
To install the package for Python 3, use:
$ ./setup.py install
To install the package for Python 2, use:
$ python2 setup.py install
On Windows, you may use one of the MSI binary packages provided on the download page.
Requirements
Python 3.2+ (or 2.7)
pywin32 (Windows only)
lib3to2 (if installing for Python 2)
The API was designed to be an object-oriented and Pythonic version of the original FFmpegSource API.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file ffms-0.3a2.tar.bz2
.
File metadata
- Download URL: ffms-0.3a2.tar.bz2
- Upload date:
- Size: 33.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bcdfee6f1a344cb97a00834748242a40b1686ecfacd08aead536c12e55d1314 |
|
MD5 | 445c4d76b2b163df5a76ae5a2b78bfe0 |
|
BLAKE2b-256 | 3934bbd3436958d8de139d88065e9c2f760e3a79691cdbc79ea4e8510a204672 |