django-multimedia

Encode and upload multimedia from the Django admin interface


Keywords
multimedia, media, audio, video, encoding, conversion
License
BSD-3-Clause
Install
pip install django-multimedia==0.2.0

Documentation

django-multimedia

Encode and upload multimedia from the Django admin interface. Supports any encoding profile you can write a command line statement to accomplish.

Quick start

Install with pip:

$ pip install django-multimedia

Add to INSTALLED_APPS:

INSTALLED_APPS += (
    'storage',
    'multimedia',
)

Update your database:

$ ./manage.py syncdb
$ ./manage.py migrate multimedia

Configure your selected storage backend:

MULTIMEDIA_FILE_STORAGE = 'path.to.backend'