mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-03-19 06:40:22 +00:00
34 lines
531 B
ReStructuredText
34 lines
531 B
ReStructuredText
Settings
|
|
===========
|
|
|
|
.. setting:: EMBED_VIDEO_BACKENDS
|
|
|
|
EMBED_VIDEO_BACKENDS
|
|
--------------------
|
|
|
|
List of backends to use.
|
|
|
|
Default::
|
|
|
|
EMBED_VIDEO_BACKENDS = (
|
|
'embed_video.backends.YoutubeBackend',
|
|
'embed_video.backends.VimeoBackend',
|
|
'embed_video.backends.SoundCloudBackend',
|
|
)
|
|
|
|
|
|
EMBED_VIDEO_CACHE
|
|
------------------
|
|
|
|
Allows to cache backends data in cache
|
|
|
|
Default: ``True``
|
|
|
|
|
|
EMBED_VIDEO_CACHE_TIMEOUT
|
|
-------------------------
|
|
|
|
To set how long backends data stay in the cache.
|
|
|
|
Default: ``3600``
|
|
|