Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 644 Bytes

README.rst

File metadata and controls

31 lines (20 loc) · 644 Bytes

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'