Skip to content

Instantly share code, notes, and snippets.

@kkheon
kkheon / view-yuv.py
Created December 23, 2015 07:54 — forked from leesei/view-yuv.py
#python #view-yuv Load YUV file and render it using Pygame
#!/usr/bin/env python
import argparse
import os
import pygame
from pygame.locals import *
import sys
# constants
supported_formats = ('yv12', 'iyuv', 'i420', 'nv12', 'nv21')