merlinyz / python-y4m

YUV4MPEG2 (.y4m) Reader/Writer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YUV4MPEG2 (.y4m) Reader/Writer

tested with python-2.7, python-3.3 and python3.4

Build Status

import sys
import y4m


def process_frame(frame):
    # do something with the frame
    pass


if __name__ == '__main__':

    parser = y4m.Reader(process_frame, verbose=True)
    # simulate chunk of data
    infd = sys.stdin
    if sys.hexversion >= 0x03000000: # Python >= 3
        infd = sys.stdin.buffer

    with infd as f:
        while True:
            data = f.read(1024)
            if not data:
                break
            parser.decode(data)

About

YUV4MPEG2 (.y4m) Reader/Writer

License:Apache License 2.0


Languages

Language:Python 98.5%Language:Shell 1.5%