Platform Explorer / Nuxeo Platform 6.0

Component org.nuxeo.ecm.platform.video.service.VideoService

Documentation

The VideoService provides extension points to register named video conversions and default conversions to run when importing a video.

Implementation

Class: org.nuxeo.ecm.platform.video.service.VideoServiceImpl

Services

Extension Points

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.video.service.VideoService">

  <implementation
    class="org.nuxeo.ecm.platform.video.service.VideoServiceImpl" />

  <service>
    <provide
      interface="org.nuxeo.ecm.platform.video.service.VideoService" />
  </service>

  <documentation>
    The VideoService provides extension points to register
    named video conversions and default conversions to run
    when importing a video.
  </documentation>

  <extension-point name="videoConversions">
    <documentation>
      Extension point to contribute available video conversions
    </documentation>
    <object
      class="org.nuxeo.ecm.platform.video.service.VideoConversion" />
  </extension-point>

  <extension-point name="automaticVideoConversions">
    <documentation>
      Extension point to contribute default video conversions
      launched after the creation of a Video document.
    </documentation>
    <object
      class="org.nuxeo.ecm.platform.video.service.AutomaticVideoConversion" />
  </extension-point>

</component>