Giter Site home page Giter Site logo

django-brightcove's Introduction

Django Brightcove

Manages the integration of brightcove videos in a django project. It extends the the Brightcove library developed by Jonathan Beluch: https://pypi.python.org/pypi/brightcove/0.2

It basically add a form field to easily integrate brightcove account video in the django admin or any form. And adds a template tag to fast integrate a brightcove video in a template.

Install

It is strongly recommanded to install this theme from GIT with PIP onto you project virtualenv.

From PyPi

pip install django-brightcove

From Github

https://github.com/RevSquare/django-brightcove#egg=django-brightcove

Setup

Before starting, you will need a Brightcove API token in order to connect to brightcove: http://docs.brightcove.com/en/video-cloud/media/guides/managing-media-api-tokens.html

The first step is to add the app in your installed apps list in settings.py

INSTALLED_APPS = (
    ...
    'django_brightcove'
    ...
)

The you will need to declare the loaders you want to add in your settings.py file

BRIGHTCOVE_TOKEN = 'YOUR_TOKEN..'

Finally you will need to add the django-brightcove urls to your Root URLCONF

urlpatterns = patterns('',
    ...

    (r'^django_brightcove', include('django_brightcove.urls')),
    ...
)

Add a Brightcove video to a model

Simply add the Brightcove field manager to it.

from django.db import models
from django_brightcove.fields import BrightcoveField


class MyModel(models.Model):
    brightcove = BrightcoveField()

Template tags

You can easily insert a video with a built in template tag.

The first step is to list your brightcove player id and key in your settings file.

BRIGHTCOVE_PLAYER = {
    'default': {
        'PLAYERID': 'a_default_player_id',
        'PLAYERKEY': 'a_default_player_key',
    },
    'single': {
        'PLAYERID': 'another_player_id',
        'PLAYERKEY': 'another_player_key',
    },
}

Then within your template, simply call for the player tag and pass your video id and eventualy a specific brightcove player type. By default the tag with the key set as 'default' in settings.BRIGHTCOVE_PLAYER dictionary.

{% load brightcove %}

<div class="player">{% brightcove_player object.brightcove_id player='single' %}</div>

You can also pass height and width to the template tag, ie:

{% load brightcove %}

<div class="player">{% brightcove_player object.brightcove_id width=480 height=270 %}</div>

You will also need to add the Brightcove javascript library

<script type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script>

Contribution

Please feel free to contribute. Any help and advices are much appreciated.

Development:

https://github.com/RevSquare/django-brightcove

Package:

https://pypi.python.org/pypi/django-brightcove

django-brightcove's People

Contributors

ayeowch avatar omji avatar tokersey avatar tomaszroszko avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.