Settings

Configuration options.

class EncodeConf(**kwargs)

Configuration settings.

MEDIA_PATH_NAME = 'encode_test'

Name of the root directory holding the user-uploaded files.

MEDIA_ROOT = '/home/docs/checkouts/readthedocs.org/user_builds/django-encode/checkouts/latest/doc/media'

Absolute filesystem path to the directory that will hold user-uploaded files for the encode application.

AUDIO_PROFILES = ['MP3 Audio', 'Ogg Audio']

TODO

VIDEO_PROFILES = ['MP4', 'WebM Audio/Video']

TODO

IMAGE_PROFILES = ['PNG']

TODO

LOCAL_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'

TODO

REMOTE_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'

Django file storage used for transferring media uploads to the encoder.

CDN_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'

Django file storage used for storing encoded media on a CDN network.

LOCAL_STORAGE_OPTIONS = {'location': '/home/docs/checkouts/readthedocs.org/user_builds/django-encode/checkouts/latest/doc/media'}

TODO

REMOTE_STORAGE_OPTIONS = {'location': '/home/docs/checkouts/readthedocs.org/user_builds/django-encode/checkouts/latest/doc/media/remote'}

TODO

DEFAULT_ENCODER_CLASS = 'encode.encoders.BasicEncoder'

TODO