=======
avi2flv
=======

Basic usage
-----------

The basic usage of `converter` function::

    >>> import os.path
    >>> from stxnext.transform.avi2flv.avi2flv import converter
    >>> sample_path = os.path.join(os.path.dirname(__file__), 'tests', 'data', 'sample.avi')
    >>> sample_file = open(sample_path, 'rb')
    >>> sample_data = sample_file.read()
    >>> sample_file.close()
    >>> result = converter(sample_data)
    >>> result[:3]
    'FLV'

