├── .gitignore ├── LICENCE ├── MANIFEST.in ├── README.textile ├── demoproject ├── bootstrap.py ├── buildout.cfg ├── setup.py └── src │ └── videodemo │ ├── __init__.py │ ├── manage.py │ ├── settings.py │ └── urls.py ├── setup.py └── src └── videostream ├── LICENCE ├── __init__.py ├── admin.py ├── feeds.py ├── fixtures └── videostream_test_fixtures.json ├── management ├── __init__.py └── commands │ ├── __init__.py │ └── encode.py ├── models.py ├── templates └── videostream │ ├── include │ └── render_video.html │ ├── video_archive.html │ ├── video_archive_day.html │ ├── video_archive_month.html │ ├── video_archive_year.html │ ├── video_detail.html │ ├── videocategory_detail.html │ └── videocategory_list.html ├── templatetags ├── __init__.py └── videostream_tags.py ├── tests.py ├── urls.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include src/videostream/templates * -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/README.textile -------------------------------------------------------------------------------- /demoproject/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/demoproject/bootstrap.py -------------------------------------------------------------------------------- /demoproject/buildout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/demoproject/buildout.cfg -------------------------------------------------------------------------------- /demoproject/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/demoproject/setup.py -------------------------------------------------------------------------------- /demoproject/src/videodemo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demoproject/src/videodemo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/demoproject/src/videodemo/manage.py -------------------------------------------------------------------------------- /demoproject/src/videodemo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/demoproject/src/videodemo/settings.py -------------------------------------------------------------------------------- /demoproject/src/videodemo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/demoproject/src/videodemo/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/setup.py -------------------------------------------------------------------------------- /src/videostream/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/LICENCE -------------------------------------------------------------------------------- /src/videostream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/__init__.py -------------------------------------------------------------------------------- /src/videostream/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/admin.py -------------------------------------------------------------------------------- /src/videostream/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/feeds.py -------------------------------------------------------------------------------- /src/videostream/fixtures/videostream_test_fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/fixtures/videostream_test_fixtures.json -------------------------------------------------------------------------------- /src/videostream/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/management/__init__.py -------------------------------------------------------------------------------- /src/videostream/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/management/commands/__init__.py -------------------------------------------------------------------------------- /src/videostream/management/commands/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/management/commands/encode.py -------------------------------------------------------------------------------- /src/videostream/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/models.py -------------------------------------------------------------------------------- /src/videostream/templates/videostream/include/render_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templates/videostream/include/render_video.html -------------------------------------------------------------------------------- /src/videostream/templates/videostream/video_archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templates/videostream/video_archive.html -------------------------------------------------------------------------------- /src/videostream/templates/videostream/video_archive_day.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templates/videostream/video_archive_day.html -------------------------------------------------------------------------------- /src/videostream/templates/videostream/video_archive_month.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templates/videostream/video_archive_month.html -------------------------------------------------------------------------------- /src/videostream/templates/videostream/video_archive_year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templates/videostream/video_archive_year.html -------------------------------------------------------------------------------- /src/videostream/templates/videostream/video_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templates/videostream/video_detail.html -------------------------------------------------------------------------------- /src/videostream/templates/videostream/videocategory_detail.html: -------------------------------------------------------------------------------- 1 | 2 |

{{ category }}

3 | -------------------------------------------------------------------------------- /src/videostream/templates/videostream/videocategory_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templates/videostream/videocategory_list.html -------------------------------------------------------------------------------- /src/videostream/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/videostream/templatetags/videostream_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/templatetags/videostream_tags.py -------------------------------------------------------------------------------- /src/videostream/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/tests.py -------------------------------------------------------------------------------- /src/videostream/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/urls.py -------------------------------------------------------------------------------- /src/videostream/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewebdev/django-video/HEAD/src/videostream/utils.py --------------------------------------------------------------------------------