Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbittel/django-multimedia
Encode and upload multimedia from the Django admin interface. Supports any video profile you can write a command line statement to accomplish.
https://github.com/jbittel/django-multimedia
Last synced: 3 days ago
JSON representation
Encode and upload multimedia from the Django admin interface. Supports any video profile you can write a command line statement to accomplish.
- Host: GitHub
- URL: https://github.com/jbittel/django-multimedia
- Owner: jbittel
- License: bsd-3-clause
- Created: 2011-04-01T19:28:04.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-04-23T21:23:40.000Z (over 9 years ago)
- Last Synced: 2024-10-13T14:42:46.104Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 539 KB
- Stars: 56
- Watchers: 8
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
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 multimediaConfigure your selected `storage backend`_::
MULTIMEDIA_FILE_STORAGE = 'path.to.backend'
.. _pip: http://www.pip-installer.org/
.. _storage backend: http://django-storages.readthedocs.org/