<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Are Nuxeo DAM video thumbnail or storyboard images exposed through CMIS? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327754#M14755</link>
    <description>&lt;P&gt;For those asking, I am finally using the PHP Rest client instead of CMIS, it does the job perfectly and you can get both the thumbnails and storyboard images.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Apr 2013 13:57:11 GMT</pubDate>
    <dc:creator>jiyarza_Yarza</dc:creator>
    <dc:date>2013-04-03T13:57:11Z</dc:date>
    <item>
      <title>Are Nuxeo DAM video thumbnail or storyboard images exposed through CMIS?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327751#M14752</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I have updated the question, so I'm just asking for a yes or no...&lt;/P&gt;
&lt;P&gt;I am doing some tests with the Apache Chemistry CMIS PHP client. I am stuck trying to figure out how to get the video thumbnail images (all I have got is the generic video icon by calling getRenditions). Is it possible to access the video thumbnails created by Nuxeo DAM from a cmis client?&lt;/P&gt;
&lt;P&gt;Thank you,
Jose&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 12:05:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327751#M14752</guid>
      <dc:creator>jiyarza_Yarza</dc:creator>
      <dc:date>2013-02-06T12:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Are Nuxeo DAM video thumbnail or storyboard images exposed through CMIS?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327752#M14753</link>
      <description>&lt;P&gt;+1 I'd like to know this too. Also I'd like to know how to do conversion / transcoding through API.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Mar 2013 02:08:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327752#M14753</guid>
      <dc:creator>Fei_Yan</dc:creator>
      <dc:date>2013-03-30T02:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Are Nuxeo DAM video thumbnail or storyboard images exposed through CMIS?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327753#M14754</link>
      <description>&lt;P&gt;Even I have the same trouble.. Will anyone answer please???&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 13:49:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327753#M14754</guid>
      <dc:creator>shravankumarbj_</dc:creator>
      <dc:date>2013-04-03T13:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Are Nuxeo DAM video thumbnail or storyboard images exposed through CMIS?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327754#M14755</link>
      <description>&lt;P&gt;For those asking, I am finally using the PHP Rest client instead of CMIS, it does the job perfectly and you can get both the thumbnails and storyboard images.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 13:57:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327754#M14755</guid>
      <dc:creator>jiyarza_Yarza</dc:creator>
      <dc:date>2013-04-03T13:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Are Nuxeo DAM video thumbnail or storyboard images exposed through CMIS?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327755#M14756</link>
      <description>&lt;P&gt;As commented above, I have been using the PHP Rest client instead of CMIS. Check here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://doc.nuxeo.com/display/NXDOC56/PHP+Automation+Client" target="test_blank"&gt;http://doc.nuxeo.com/display/NXDOC56/PHP+Automation+Client&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can get the thumbnail building an url such as this one ($uid refers to the document's Uid):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;$nuxeoUrl."/nxpicsfile/default/".$uid."/Thumbnail:content/";
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And any of the storyboard images with this one ($index is the image index and can be 0..7 i think):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;$nuxeoUrl."/nxbigfile/default/".$uid."/vid:storyboard/".$index."/content/storyboard-000.jpeg";
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Cheers.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 14:07:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327755#M14756</guid>
      <dc:creator>jiyarza_Yarza</dc:creator>
      <dc:date>2013-04-03T14:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Are Nuxeo DAM video thumbnail or storyboard images exposed through CMIS?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327756#M14757</link>
      <description>&lt;P&gt;You're misunderstanding the goal of CMIS. CMIS is a generic (cross-vendor) content access method, that only has generic file-related features. It's not able (nor designed to) access all Nuxeo features. If you want to access Nuxeo-specific features, then you need to use a Nuxeo-specific interface like Nuxeo Automation.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 15:07:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/are-nuxeo-dam-video-thumbnail-or-storyboard-images-exposed/m-p/327756#M14757</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2013-04-03T15:07:37Z</dc:date>
    </item>
  </channel>
</rss>

