├── .gitignore ├── LICENSE ├── README.md ├── django_ffmpeg ├── __init__.py ├── admin.py ├── app.py ├── defaults.py ├── fixtures │ └── django-ffmpeg-init.json ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── convert_videos.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_thumb_frame_field.py │ ├── 0003_add_thumb_conv_cmd.py │ ├── 0004_video_title_not_required.py │ ├── 0005_py3_fixes.py │ ├── 0006_convertingcommand_title.py │ └── __init__.py ├── models.py ├── static │ └── django_ffmpeg │ │ └── tests │ │ └── earth.mp4 ├── tasks.py ├── tests │ ├── __init__.py │ ├── base.py │ ├── test_celery_task.py │ └── test_utils_converter.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/README.md -------------------------------------------------------------------------------- /django_ffmpeg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/__init__.py -------------------------------------------------------------------------------- /django_ffmpeg/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/admin.py -------------------------------------------------------------------------------- /django_ffmpeg/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/app.py -------------------------------------------------------------------------------- /django_ffmpeg/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/defaults.py -------------------------------------------------------------------------------- /django_ffmpeg/fixtures/django-ffmpeg-init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/fixtures/django-ffmpeg-init.json -------------------------------------------------------------------------------- /django_ffmpeg/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_ffmpeg/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_ffmpeg/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_ffmpeg/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_ffmpeg/management/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'alrusdi' 2 | -------------------------------------------------------------------------------- /django_ffmpeg/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'alrusdi' 2 | -------------------------------------------------------------------------------- /django_ffmpeg/management/commands/convert_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/management/commands/convert_videos.py -------------------------------------------------------------------------------- /django_ffmpeg/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_ffmpeg/migrations/0002_add_thumb_frame_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/migrations/0002_add_thumb_frame_field.py -------------------------------------------------------------------------------- /django_ffmpeg/migrations/0003_add_thumb_conv_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/migrations/0003_add_thumb_conv_cmd.py -------------------------------------------------------------------------------- /django_ffmpeg/migrations/0004_video_title_not_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/migrations/0004_video_title_not_required.py -------------------------------------------------------------------------------- /django_ffmpeg/migrations/0005_py3_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/migrations/0005_py3_fixes.py -------------------------------------------------------------------------------- /django_ffmpeg/migrations/0006_convertingcommand_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/migrations/0006_convertingcommand_title.py -------------------------------------------------------------------------------- /django_ffmpeg/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_ffmpeg/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/models.py -------------------------------------------------------------------------------- /django_ffmpeg/static/django_ffmpeg/tests/earth.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/static/django_ffmpeg/tests/earth.mp4 -------------------------------------------------------------------------------- /django_ffmpeg/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/tasks.py -------------------------------------------------------------------------------- /django_ffmpeg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_ffmpeg/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/tests/base.py -------------------------------------------------------------------------------- /django_ffmpeg/tests/test_celery_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/tests/test_celery_task.py -------------------------------------------------------------------------------- /django_ffmpeg/tests/test_utils_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/tests/test_utils_converter.py -------------------------------------------------------------------------------- /django_ffmpeg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/django_ffmpeg/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixxxeL/django-ffmpeg/HEAD/setup.py --------------------------------------------------------------------------------