====== flvlib ====== flvlib is a Python library for manipulating FLV files. The library comes with a script that can identify the content of the file, including the codecs used to encode its content, the audio rate, keyframe density, etc. It also prints out the file's metadata if present. Another script included in the library can be used to index FLV files, that is to update the file's metadata with information about seekpoints. Most Flash players can use it to enable seeking without having to transfer the full file. ===== Usage examples ===== == Printing information about the file === C:\> debug-flv MyFile.flv === `MyFile.flv' === #00001 #00002 #00003 #00004 (...) == Adding an onMetadata tag and printing it == C:\> index-flv -U MyFile.flv C:\> debug-flv --metadata MyFile.flv === `MyFile.flv' === #00001 {'duration': 9.979000000000001, 'keyframes': {'filepositions': [407.0, 605.0], 'times': [0.0, 1.5]}, 'metadatacreator': 'flvlib 0.x.x'} ===== About ===== flvlib is released under the MIT License. You can freely use it in your programs * Homepage: http://wulczer.org/flvlib/ * The library at the Python Packages Index: http://pypi.python.org/pypi/flvlib