Skip to content
This repository was archived by the owner on Jun 23, 2021. It is now read-only.
andrewebdev edited this page Sep 13, 2010 · 9 revisions

django-video Documentation

LICENSE

Please see the LICENCE file for information on the License

Requirements

  • The full version of FFMPEG if you want to use the encode.py script to do your own encoding, but django-video does allow you to upload a flv file directly. Note that, some operating systems, like Ubuntu, by default does not have the full version of FFMPEG installed, so make sure to install the full version.
  • django-taggins is also optional if you want to use it’s tagging features.

Installing

  1. Check that videostream folder is on your python path
  2. Next, add the videostream app to your django INSTALLED_APPS
  3. If you want to use the default templates, you can add them to your TEMPLATE_DIRS
  4. Add the required extra settings
  5. Add the urls to your project
  6. About the encode.py script
  7. Copy and modify the templates

Required django settings with examples

VIDEOSTREAM_SIZE = "320x240"

VIDEOSTREAM_THUMBNAIL_SIZE = "320x240"

VIDEOSTREAM_FEED_TITLE = "RSS Feed Title"

VIDEOSTREAM_FEED_DESCRIPTION = "Description for the video feed"

VIDEOSTREAM_FEED_LINK = "/location/of/the/feed/"

Clone this wiki locally