python-firefogg - video encoding and uploading for python

python-firefogg provides a simple interface to transcode videos
and upload them to sites that have Firefogg chunk upload support. 

Requrements:
    ffmpeg2theora - get the latest version from http://v2v.cc/~j/ffmpeg2theora/

Usage:
    >>> from firefogg import Firefogg
    >>> ogg = Firefogg()
    >>> options = {'profile': 'videobin'}
    >>> ogg.encode(input, output, options)
    >>> ogg.upload(url, oggfile, {'title': 'example', 
                                  'description':'this is an example'})

    To use your current cookies, pass your CookieJar to init
    >>> cj = cookielib.CookieJar()
    >>> ogg = Firefogg(cj=cj)
    >>> ogg.upload(url, oggfile, {'title': 'example', 
                                  'description':'this is an example'})

Options:
    A full list of available encoding options can be found at 
    http://firefogg.org/dev/

Install:
    easy_install python-firefogg

Source:
    bzr branch http://firefogg.org/dev/python-firefogg/
