├── .gitignore ├── .travis.yml ├── AUTHORS.txt ├── MANIFEST.in ├── README.md ├── converter ├── __init__.py ├── avcodecs.py ├── ffmpeg.py └── formats.py ├── doc ├── Makefile ├── api.rst ├── conf.py ├── index.rst ├── installing.rst ├── intro.rst └── tutorial.rst ├── setup.py └── test ├── install-ffmpeg.sh ├── test.aac ├── test.mp3 ├── test.py └── test1.ogg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/README.md -------------------------------------------------------------------------------- /converter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/converter/__init__.py -------------------------------------------------------------------------------- /converter/avcodecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/converter/avcodecs.py -------------------------------------------------------------------------------- /converter/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/converter/ffmpeg.py -------------------------------------------------------------------------------- /converter/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/converter/formats.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/doc/installing.rst -------------------------------------------------------------------------------- /doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/doc/intro.rst -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/setup.py -------------------------------------------------------------------------------- /test/install-ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/test/install-ffmpeg.sh -------------------------------------------------------------------------------- /test/test.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/test/test.aac -------------------------------------------------------------------------------- /test/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/test/test.mp3 -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko/python-video-converter/HEAD/test/test1.ogg --------------------------------------------------------------------------------