Metadata-Version: 1.0
Name: collective.videoanysurfer
Version: 1.0.6
Summary: Youtube Integration to be AnySurfer compliant
Home-page: https://github.com/collective/collective.videoanysurfer
Author: JeanMichel FRANCOIS
Author-email: toutpt@gmail.com
License: GPL
Description: Introduction
        ============
        
        This addon adds controls over youtube video to display them
        while being compliant with anysurfer_ 2.0.
        
        AnySurfer 2.0
        =============
        
        French: http://www.anysurfer.org/fr/video-dans-un-lecteur-flash
        Nederlands: http://www.anysurfer.org/video-in-een-flashplayer
        
        How to install
        ==============
        
        This addon can be installed as any other plone addons. Please follow official
        documentation_.
        
        This addons depends on:
        
        * collective.js.nomensamediaplayer
        * collective.captionmanager
        
        
        Badges
        ======
        
        .. image:: https://pypip.in/v/collective.videoanysurfer/badge.png
            :target: https://crate.io/packages/collective.videoanysurfer/
            :alt: Latest PyPI version
        
        .. image:: https://pypip.in/d/collective.videoanysurfer/badge.png
            :target: https://crate.io/packages/collective.videoanysurfer/
            :alt: Number of PyPI downloads
        
        .. image:: https://secure.travis-ci.org/collective/collective.videoanysurfer.png
            :target: http://travis-ci.org/#!/collective/collective.videoanysurfer
        
        .. image:: https://coveralls.io/repos/collective/collective.videoanysurfer/badge.png?branch=master
            :alt: Coverage
            :target: https://coveralls.io/r/collective/collective.videoanysurfer
        
        
        Features
        ========
        
        * Add play/pause links to control video
        * Add transcription and captions support
        * Add link options to download MP4 files with subs
        * Add components to easy embed youtube video in custom views/viewlet
        * Add portlet to display youtube video
        * Automatic download of captions from youtube
        
        Players
        =======
        
        This addon at the moment supports only nomensa_ jquery media player. By default
        this player support TTML captions. You can find a working captions at
        https://raw.github.com/nomensa/Accessible-Media-Player/master/example/captions/captions-order-of-content.xml
        
        About Captions Format
        =====================
        
        captions format depends on the used player. Nomensa player support only TTML
        but the addon collective.captionmanager let you write it in other formats.
        
        SRT (SubRip subtitle)
        SBV (YouTube)
        Flash DFXP,
        SMI or SAMI (Windows Media),
        SCC for iOS,
        CPT.XML (Flash Captionate XML),
        QT (Quicktime)
        STL (Spruce Subtitle File).
        TTML (<tt ...>) W3C Timed text markup language
        
        How to integrate the player in a template
        =========================================
        
        To integrate this player in a custom template you just have to use this snippet::
        
          <h2><a href="" tal:attributes="href item/link_url" tal:content="item/title">video title</a></h2>
          <div class="nomensa">
            <p>
                <a class="videoanysurfer" tal:attributes="href item/youtube_url" tal:content="item/title">VIDEO TITLE</a>
                <a class="captions" style="display:none;"
                   tal:condition="item/captions|nothing" tal:attributes="href item/captions">Captions</a>
            </p>
          </div>
        
        Where item should look like::
        
          {'youtube_url': 'http://www.youtube.com/watch?v=kXiGXcq4pqY',
          'captions': 'http://localhost:8080/Plone/youtube_link/@@videoanysurfer_captions',
          'link_url': 'http://localhost:8080/Plone/youtube_link',
          'title': 'Order of content by Emily Coward'}
        
        Credits
        =======
        
        Companies
        ---------
        
        * `Contact CIRB <mailto:irisline@irisnet.be>`_
        * `Contact Makina-Corpus <mailto:python@makina-corpus.org>`_
        
        People
        ------
        
        - JeanMichel FRANCOIS aka toutpt <toutpt@gmail.com>
        - Stéphane Moussiaux <smoussiaux@cirb.irisnet.be>
        
        .. _anysurfer: http://www.anysurfer.org
        .. _nomensa: http://nomensa.com
        .. _documentation: http://plone.org/documentation/kb/installing-add-ons-quick-how-to
        
        
        Changelog
        =========
        
        1.0.6 (2013-07-02)
        ------------------
        
        - JWPlayer integration
        
        1.0.5 (2012-10-08)
        ------------------
        
        - update translations
        
        
        1.0.4 (2012-08-07)
        ------------------
        
        - Add integration of collective.captionmanager and captionstransformer
        
        1.0.3 (2012-07-04)
        ------------------
        
        - Move the edit video form link into edit bar
        - Make nomensa media player the default one
        
        
        1.0.2 (2012-07-03)
        ------------------
        
        - use height of the parent container
        
        
        1.0.1 (2012-07-03)
        ------------------
        
        - add package metadatas
        
        
        1.0 (2012-07-03)
        ----------------
        
        - Initial release
        
Keywords: plone video anysurfer
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.0
Classifier: Framework :: Plone :: 4.1
Classifier: Framework :: Plone :: 4.2
