Video/Get
Description: Obtain information on a video.
Example of function call:
http://api.nimbb.com/Video/Get.aspx?key=PUBLIC_KEY&code=PRIVATE_KEY&guid=VIDEO_GUID&output=OUTPUT
where you replace the values:
PUBLIC_KEY: your developer public key;
PRIVATE_KEY: your developer private key;
VIDEO_GUID: the video GUID;
OUTPUT (optional): specify the format of the data returned, can be "xml" (default) or "csv" (Comma Separated Values).
Example of XML response:
<?xml version="1.0" encoding="utf-8" ?>
<nimbb version="1">
<video>
<guid>XXXXXXXXXX</guid>
<length>4.103</length>
<fileSize>52748</fileSize>
<dateCreated>2009-05-22T19:35:29.617-04:00</dateCreated>
<dateExpires>2009-06-23T17:51:56-04:00</dateExpires>
<totalViews>18</totalViews>
<dateLastView>2009-05-25T11:58:34.54-04:00</dateLastView>
<dateMoved>0001-01-01T05:00:00-05:00</dateMoved>
<site>blog.d2soft.com</site>
<custom>optional_custom_data</custom>
<page>http://blog.d2soft.com/mypage.html</page>
<resolution>320x240</resolution>
<type>Flash/Flv</type>
</video>
</nimbb>
The node <custom> holds a value only if the value was provided to the Nimbb Player when recording the video using the parameter custom.
The node <page> is the URL of the page on your site from where the video was recorded.
Go back to Web Service documentation.