Introduction
The Viddler API exposes key features to clients that would like to build custom solutions using Viddler’s multimedia platform. In order to use Viddler’s API you must have a Viddler account that has API access enabled, and an active API key. If you do not have API access and would like to upgrade your account, please contact our sales department either via email: solutions@viddler.com or via phone at 1-888-444-1119.
Responsible Use Guidelines
We ask that you keep in mind the following to allow for the best API experience for all of our users:
- Limit requests to no more than one per second, and only one request at a time
- Cache response results for as long as possible when circumstances allow for it.
- Protect user credentials by storing them no longer than necessary or at all.
- Do not expose your API Key or user credentials when using our API with JavaScript.
- Report issues through our Support Helpdesk, included with all accounts.
API Endpoint
- HTTP:
http://api.viddler.com/api/v2/{methodname.format}
- HTTPS:
https://api.viddler.com/api/v2/{methodname.format}
For example, to call viddler.api.getInfo
using a PHP response format and using HTTPS: https://api.viddler.com/api/v2/viddler.api.getInfo.php
Request Formats and Methods
The Viddler platform API uses the REST (simplified) method in most cases (HTTP request with all arguments passed as HTTP parameters)
- GET
- methods that don't change anything (read-only data)
- POST
- methods that change underlying data model (create, change, or delete)
- multipart POST
- used for media uploads only.
- SSL
- supported for all API methods (and required for many)
(In general, methods with “get” in their name involve GET requests, and methods with “set”, "remove", or “upload” are POST/Multipart POST.)
Methods
Naming Convention
Viddler’s API uses the format of [scope].[group].[action]
- Scope – method scope – this will always be “viddler” for public methods
- Group – what this method affects – “users”,”videos”,”groups”, etc.
- Action – what this method will perform – “register”,”getDetails”,”getByUser”, etc.
Common Parameters
-
api_key
– Required – Each method must be authorized by your API Key. This is required by all methods, and will not be included in the documentation for each individual method. -
sessionid
- Recommended – In order to fully manipulate videos that belong to you (or get full details on those videos, accounts, etc) You will need to pass along asessionid
obtained fromviddler.users.auth
-
video_id
– This is the video’s ID – this can be found easily in the Video’s URL on Viddler.com (viddler.com/v/{video_id}) This can also referred to interchangeably as a “token”
Special Characters
When passing along special characters for parameters (usually as a part of a password) you should take care to urlencode the characters before sending them to the Viddler API.
Response Formats
Request: GET http://api.viddler.com/api/v2/viddler.api.getInfo.xml?key=API_KEY
Response:
Content-Type: text/xml;charset=UTF-8
X-Viddler-Node: api0
<viddler_api>
<version>2.0.0</version>
</viddler_api>
Request: GET http://api.viddler.com/api/v2/viddler.api.getInfo.json?key=API_KEY
Response:
Content-Type: application/json;charset=UTF-8 X-Viddler-Node: api0
{
"viddler_api":{
"version":"2.0.0"
}
}
jsonViddlerAPI(
{
"viddler_api":{
"version":"2.0.0"
}
}
)
Request: GET http://api.viddler.com/api/v2/viddler.api.getInfo.php?key=API_KEY
Response:
Content-Type: text/plain
X-Viddler-Node: api0
a:1:{
s:11:"viddler_api";a:1:{
s:7:"version";s:5:"2.0.0";
}
}
Viddler's API v2 supports four response formats:
- XML
- JSON
- JSONP
- JSONP will always call
jsonViddlerAPI(response)
- JSONP will always call
- PHP
Content-type HTTP response changes according to the response format.
Paginated Responses
{
"list_result": {
"page": "1",
"per_page": "1",
"sort": "uploaded-desc",
"featured_videos": [
{ ... } // This would contain the list items
]}}
jsonViddlerAPI (
{
"list_result":{
"page":"1",
"per_page":"10",
"total":"25",
"sort":"uploaded-desc",
"video_list":[
{...} // This would contain the list results
]}})
Array (
[list_result] => Array (
[page] => 1
[per_page] => 1
[sort] => uploaded-desc //sort tag is added on sort enabled methods
[featured_videos] => Array //tag name depends on data it holds ([0] => Array (
... // This would contain the list items
)
)))
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>25</total>
<sort>uploaded-desc</sort>
<video_list>
...
</video_list>
</list_result>
Some methods include a paginated list of items. These methods use a unified response format in order to return list metadata in addition of pure list items. All paginated lists results will have a very similar, if not identical, schema. The list of results is listed in a nested array with a “tag” appropriate for its method. Sort tags are available for methods that allow for sorting.
"per_page" and Obtaining The Total Number of Pages
Most methods that return lists include per_page
and page
parameters. The maximum allowed value for the per_page
parameter is 100
.
While there is no upper limit for the page value, you can use the following information to obtain the total/maximum for a particular response:
total_count / per_page
Round the result up to the nearest number. In PHP, for example, you can use the ceil()
method.
Data Types
- date, datetime – UNIX timestamp (number of seconds elapsed since 1 Jan 1970 UTC). For dates, time part will be ignored. Dates passed as method parameters are in
YYYY-MM-DD
format. - Booleans – responses will use only
0
(false) or1
(true). Requests may contain 0/1, true/false, t/f, or yes/no. Any other value will be considered as “false.” - Floating-point numbers – will be scaled to the second decimal value (Ex: 42.187 will become 42.19)
- Null values – The Viddler API will not return “null” values. Instead, they will be represented as an empty string.
Authentication
When using the Viddler API, your API key is not the only method of authorizing what you are able to do. As the API was built with the ability to manipulate data from multiple accounts, we also utilize a session ID, which can be obtained using the viddler.users.auth
method. The session ID ties an API method to your account, enabling read/write of private information (your account data, information on private videos, etc.)
Platform API EULA
BY OBTAINING AN API PRODUCT KEY FROM VIDDLER, YOU AGREE TO BE BOUND BY AND BECOME A PARTY TO THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, YOU MAY NOT OBTAIN AN API KEY AND VIDDLER DOES NOT GRANT YOU A LICENSE TO USE THE APIs.
Viddler reserves the right to update and change, from time to time, the terms of this Agreement by posting the amended terms on the Developers Site. Except as stated below, all amended terms shall be effective thirty (30) days after they are initially posted on the Developers Site. Use of the API after the date on which such changes become effective shall constitute your acceptance of such changes.
- GRANT OF API LICENSE – Subject to your (“Licensee’s”) full compliance with all of the terms and conditions of this API Agreement (“Agreement”), Viddler, Inc. (“Viddler”) grants Licensee a non-exclusive, revocable, non-sublicensable, non-transferable license to download and use the Viddler application program interface and other materials provided by Viddler (collectively, “APIs”) to develop, reproduce and distribute non-commercial applications that interoperate with Viddler.com or any other web property owned by Viddler. Licensee may not install or use the APIs for any other purpose, including without limit any commercial purpose, without Viddler’s prior written consent and execution of a Partner License Agreement. Requests for API keys intended for commercial use are reviewed by staff and a Partner License Agreement can be executed for commercial use.
Licensee shall not use the APIs in connection with or to promote any products, services, or materials that constitute, promote or are used primarily for the purpose of dealing in: spyware, adware, or other malicious programs or code, counterfeit goods, items subject to U.S. embargo, unsolicited mass distribution of email (“spam”), multi-level marketing proposals, hate materials, hacking/ surveillance /interception/ descrambling equipment, libelous, defamatory, obscene, pornographic, abusive or otherwise offensive content, prostitution, body parts and bodily fluids, stolen products and items used for theft, fireworks, explosives, and hazardous materials, government IDs, police items, gambling, professional services regulated by state licensing regimes, non-transferable items such as airline tickets or event tickets, weapons and accessories. .In the event Viddler establishes API call volume limitations and Licensee exceeds such limitations, Viddler may discontinue Licensee’s use of the API and/or charge Licensee at the then-current rates for all API calls that exceed the limitations.
PROPRIETARY RIGHTS – As between Viddler and Licensee, the APIs and all intellectual property rights in and to the APIs are and shall at all times remain the sole and exclusive property of Viddler and are protected by applicable intellectual property laws and treaties.
OTHER RESTRICTIONS – Except as expressly and unambiguously authorized under this Agreement, Licensee may not (i) copy, rent, lease, sell, transfer, assign, sublicense, disassemble, reverse engineer or decompile (except to the limited extent expressly authorized by applicable statutory law), modify or alter any part of the APIs, or (ii) otherwise use the APIs on behalf of any third party. This Agreement does not include any right for Licensee to use any trademark, service mark, trade name or any other mark of Viddler or any other party or licensor. No rights or licenses are granted except as expressly and unambiguously set forth herein. If Licensee violates any of the foregoing restrictions, Viddler shall own all right, title and interest relating to any and all inventions, works of authorship, designs, know-how, ideas and information made or conceived or reduced to practice, in while or in part, using the APIs. Licensee hereby agrees to make all assignments necessary to accomplish the foregoing ownership.
WARRANTY DISCLAIMER – The APIs are provided “as is” without warranty of any kind. except to the extent required by applicable law, Viddler and its vendors each disclaim all warranties, whether express, implied or statutory, regarding the APIs, including without limitation any and all implied warranties of merchantability, accuracy, results of use, reliability, fitness for a particular purpose, title, interference with quiet enjoyment, and non-infringement of third-party rights. further, Viddler disclaims any warranty that licensee’s use of the apis will be uninterrupted or error free.
SUPPORT AND UPGRADES – This Agreement does not entitle Licensee to any support for the APIs, unless Licensee makes separate arrangements with Viddler as part of a Partner License Agreement and pays all fees associated with such support. Any such support provided by Viddler shall be subject to the terms of this Agreement.
LIABILITY LIMITATION – Regardless of whether any remedy set forth herein fails of its essential purpose or otherwise, and except for bodily injury, in no event will Viddler or its vendors, be liable to licensee or to any third party under any tort, contract, negligence, strict liability or other legal or equitable theory for any lost profits, lost or corrupted data, computer failure or malfunction, interruption of business, or other special, indirect, incidental or consequential damages of any kind arising out of the use or inability to use the apis, even if Viddler has been advised of the possibility of such loss or damages and whether or not such loss or damages are foreseeable. any claim arising out of or relating to this agreement must be brought within one (1) year after the occurrence of the event giving rise to such claim. in addition, Viddler disclaims all liability of any kind of Viddler’s vendors.
INDEMNITY – Licensee agrees that Viddler shall have no liability whatsoever for any use Licensee makes of the APIs. Licensee shall indemnify and hold harmless Viddler from any and all claims, damages, liabilities, costs and fees (including reasonable attorneys’ fees) arising from Licensee’s use of the APIs.
TERM AND TERMINATION – This Agreement shall continue until terminated as set forth in this Section. Either party may terminate this Agreement at any time, for any reason, or for no reason including, but not limited to, if Licensee violates any provision of this Agreement. Any termination of this Agreement shall also terminate the license granted hereunder. Upon termination of this Agreement for any reason, Licensee shall destroy and remove from all computers, hard drives, networks, and other storage media all copies of the APIs, and shall so certify to Viddler that such actions have occurred. Viddler shall have the right to inspect and audit Licensee’s facilities to confirm the foregoing. Sections 6 through 11 and all accrued rights to payment shall survive termination of this Agreement.
MODIFICATION. – Viddler reserves the right to update and change, from time to time, the terms of this Agreement by posting the amended terms on the Developers Site. Except as stated herein, all amended terms shall be effective thirty (30) days after they are initially posted on the Developers Site. IF ANY MODIFICATION IS UNACCEPTABLE TO YOU, YOUR ONLY RECOURSE IS TO TERMINATE THIS AGREEMENT BY SENDING A TERMINATION NOTICE TO NETSUPPORT(at)VIDDLER(dot)COM BEFORE THE EFFECTIVE DATE OF THE AMENDMENT(S). THE AMENDMENT. TERMINATION NOTICE WILL BE EFFECTIVE ON THE DATE IT IS RECEIVED BY VIDDLER. THE MOST CURRENT VERSION OF THE AGREEMENT WILL BE AVAILABLE ON THE DEVELOPERS SITE AND WILL SUPERCEDE ALL PREVIOUS VERSIONS OF THE AGREEMENT. USE OF THE API AFTER THE DATE ON WHICH SUCH CHANGES BECOME EFFECTIVE SHALL CONSTITUTE YOUR ACCEPTANCE OF SUCH CHANGES.
EXPORT CONTROLS – Licensee shall comply with all export laws and restrictions and regulations of the Department of Commerce, the United States Department of Treasury Office of Foreign Assets Control (“OFAC”), or other United States or foreign agency or authority, and Licensee shall not export, or allow the export or re-export of the APIs in violation of any such restrictions, laws or regulations. By downloading or using the APIs, Licensee agrees to the foregoing and represents and warrants that Licensee is not located in, under the control of, or a national or resident of any restricted country.
MISCELLANEOUS – This Agreement constitutes the entire agreement between Licensee and Viddler pertaining to the subject matter hereof, and supersedes any and all written or oral agreements with respect to such subject matter. This Agreement, and any disputes arising from or relating to the interpretation thereof, shall be governed by and construed under Pennsylvania law as such law applies to agreements between Pennsylvania residents entered into and to be performed within Pennsylvania by two residents thereof and without reference to its conflict of laws principles or the United Nations Conventions for the International Sale of Goods. Except to the extent otherwise determined by Viddler, any action or proceeding arising from or relating to this Agreement must be brought in a federal court in Pennsylvania or in state court in Pennsylvania, and each party irrevocably submits to the jurisdiction and venue of any such court in any such action or proceeding. The prevailing party in any action arising out of this Agreement shall be entitled to an award of its costs and attorneys’ fees. This Agreement may be amended only by a writing executed by Viddler. If any provision of this Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable. The failure of Viddler to act with respect to a breach of this Agreement by Licensee or others does not constitute a waiver and shall not limit Viddler’s rights with respect to such breach or any subsequent breaches. This Agreement is personal to Licensee and may not be assigned or transferred for any reason whatsoever (including, without limitation, by operation of law, merger, reorganization, or as a result of an acquisition or change of control involving Licensee) without Viddler’s prior written consent and any action or conduct in violation of the foregoing shall be void and without effect. Viddler expressly reserves the right to assign this Agreement and to delegate any of its obligations hereunder.
[[Category:API]] [[Category:Developers]]
Viddler Platform API v2
API Wrappers
Viddler has several wrappers available to use to make getting started with our data API easy! Usage Instructions for these wrappers are located on their respective pages.
Supported Wrappers
- phpViddler is a PHP class for Viddler's Data API. Compatible with PHP 5.3 and higher.
Unsupported, Third-party or Experimental Wrappers
- ViddlerSwift is an Apple Swift coding experiment for use in OS X or iOS projects. Does not currently handle binary upload tasks (uploading videos or manually uploading a thumbnail.)
- Viddler.NET is a C# Wrapper.
- pyviddler and django-viddler are third-party Python (and Python framework Django) modules.
- viddler-ruby is a Ruby wrapper for the Viddler platform. This may be out-of-date.
How to Upload a Video
<?php
include('phpviddler.php');
$user = 'YOUR USERNAME';
$pass = 'YOUR PASSWORD';
$api_key = 'YOUR API KEY';
$callback_url = 'CALLBACK';
$v = new Viddler_V2($api_key);
// Get a sessionid
$auth = $v->viddler_users_auth(array('user' => $user, 'password' => $pass));
$sessionid = $auth['auth']['sessionid'];
// Call prepareUpload to retrieve the token and endpoint we need to use
$prepare_resp = $v->viddler_videos_prepareUpload(array('sessionid' => $sessionid));
$upload_server = $prepare_resp['upload']['endpoint'];
$upload_token = $prepare_resp['upload']['token'];
?>
<form method="post" action="<?= $upload_server ?>" enctype="multipart/form-data">
<input type="hidden" name="uploadtoken" value="<?= $upload_token ?>" />
<input type="hidden" name="callback" value="<?= $callback_url ?>" />
<label>Title:</label> <input type="text" name="title" /><br />
<label>Description:</label> <input type="text" name="description" /><br />
<label>Tags:</label> <input type="text" name="tags" /><br />
<label>File:</label> <input type="file" name="file" /><br />
<input type="submit" value="Upload" />
</form>
<%
## Controller stuff!
# Assuming... require 'rubygems'
# Assuming... require 'viddler-ruby'
# Create the client and authenticate it
viddler = Viddler::Client.new 'YOUR API KEY'
viddler.authenticate! 'USERNAME', 'PASSWORD'
upload = viddler.get 'viddler.videos.prepareUpload'
@endpoint = upload['upload']['endpoint']
@token = upload['upload']['token']
%>
<!-- ## View stuff -->
<form method="post" action="<%=endpoint%>" enctype="multipart/form-data">
<input type="hidden" name="uploadtoken" value="<%=token%>" />
<input type="hidden" name="callback" value="YOUR CALLBACK URL" />
<label>Title:</label> <input type="text" name="title" /><br />
<label>Description:</label> <input type="text" name="description" /><br />
<label>Tags:</label> <input type="text" name="tags" /><br />
<label>File:</label> <input type="file" name="file" /><br />
<input type="submit" value="Upload" />
</form>
Upload Procedures
- Authenticate the Viddler account you want to upload to and retrieve the
sessionID
using viddler.users.auth. - Contact Viddler’s API for an
endpoint
and atoken
to upload the file using viddler.videos.prepareUpload. - Upload the video directly to that
endpoint
making sure to provide acallback
URL.
The way the upload procedure works from here is this; the file gets uploaded to the endpoint you specified, all of the data that you sent (like title, tags, description) are also saved with the video, once the file upload is completed the video enters into the video encode queue on Viddler.com, and then the API will redirect back to the provided callback URL.
Code Examples
To the right there are examples of the upload procedures written in both PHP and Ruby.
viddler.users.auth
http://api.viddler.com/api/v2/viddler.users.auth.xml?key=API_KEY&user=USERNAME&password=PASSWORD&get_record_token=1
<?xml version="1.0" encoding="UTF-8"?>
<auth>
<sessionid>23837214d5790a8fd56543f4252454e44414e395</sessionid>
<record_token>29a514814d5790a90256543f4252454e44414e35b</record_token>
</auth>
http://api.viddler.com/api/v2/viddler.users.auth.php?key=API_KEY&user=USERNAME&password=PASSWORD&get_record_token=1
Array
(
[auth] => Array
(
[sessionid] => 5d31cb14d578f91bb56543f4252454e44414e220
[record_token] => 2f524014d578f91c256543f4252454e44414e163
)
)
http://api.viddler.com/api/v2/viddler.users.auth.json?username=USERNAME&password=PASSWORD&get_record_token= 1&api_key=API_KEY
{
"auth": {
"sessionid": "3bc32dd14103fa0442544f4d4ba6",
"record_token": "141536a14103fa0444544f4d4b25b" }
}
Method Type: GET
Authenticate an account. Returns a sessionid
to be used with subsequent API methods. get_record_token
set to 1
or true
will provide a record token without needing to also call viddler.videos.getRecordToken.
Parameters
-
user
- string; required - Viddler username to authenticate -
password
- string; required - Viddler password to authenticate. We recommend URL encoding your password. -
get_record_token
- boolean; optional - Include the record token. Defaultfalse
viddler.users.register
Method Type: POST
Registers an account for a user on Viddler.com
Parameters
-
sessionid
- string; required -
user
- string; required - Viddler username to create | It cannot already exist on viddler.com -
password
- string; required -
termsaccepted
- boolean; required - Indicates that the user accepted the Terms of Use -
email
- string; required - Email address tied to account | It cannot already be assosiated with another account -
fname
- string; required - Users first name -
lname
- string; required - Users last name -
company
- string; required - Name of the organization the user works for
viddler.users.setSettings
http://api.viddler.com/api/v2/viddler.users.setSettings.xml?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<visible>0</visible>
<show_account>0</show_account>
<gravatar>1</gravatar>
<default_view_permission>public</default_view_permission>
<default_comment_permission>private</default_comment_permission>
<default_download_permission>private</default_download_permission>
<default_embed_permission>private</default_embed_permission>
<default_tag_permission>private</default_tag_permission>
<whitelisted_domains/>
<tagging_enabled>1</tagging_enabled>
<commenting_enabled>1</commenting_enabled>
<embedding_enabled>1</embedding_enabled>
<download_enabled>1</download_enabled>
<show_related_videos>0</show_related_videos>
<video_browser_enabled>1</video_browser_enabled>
<get_link_enabled>1</get_link_enabled>
<clicking_through_enabled>1</clicking_through_enabled>
<embed_code_type>8</embed_code_type>
<delivery_methods>
<progressive>1</progressive>
<streaming>1</streaming>
<adaptive>1</adaptive>
</delivery_methods>
<video_delivery_method>1</video_delivery_method>
<replaceable_video>1</replaceable_video>
<hd_playback>1</hd_playback>
<mobile_playback>1</mobile_playback>
<embed_video_quality>720p</embed_video_quality>
<default_video_permalink/>
<custom_embed_url/>
<iframe_embed_url/>
<on_demand_storage>0</on_demand_storage>
<player_social_sharing_services/>
<notifications>
<email_encoding_end>0</email_encoding_end>
<email_comment_received>1</email_comment_received>
<email_tag_added>1</email_tag_added>
<email_commented_video_received_comment>1</email_commented_video_received_comment>
<email_newsletter>1</email_newsletter>
</notifications>
<comments_moderation>
<status>1</status>
<level>2</level>
<to_review>0</to_review>
</comments_moderation>
<comscore>
<enabled>0</enabled>
</comscore>
<liverail>
<manageable>0</manageable>
<enabled>0</enabled>
<id/>
</liverail>
<google_analytics>
<enabled>0</enabled>
<tracking_code/>
</google_analytics>
</settings>
http://api.viddler.com/api/v2/viddler.users.setSettings.php?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
Array
(
[settings] => Array
(
[visible] => 0
[show_account] => 0
[gravatar] => 1
[default_view_permission] => public
[default_comment_permission] => private
[default_download_permission] => private
[default_embed_permission] => private
[default_tag_permission] => private
[whitelisted_domains] =>
[tagging_enabled] => 1
[commenting_enabled] => 1
[embedding_enabled] => 1
[download_enabled] => 1
[show_related_videos] => 0
[video_browser_enabled] => 1
[get_link_enabled] => 1
[clicking_through_enabled] => 1
[embed_code_type] => 8
[delivery_methods] => Array
(
[progressive] => 1
[streaming] => 1
[adaptive] => 1
)
[video_delivery_method] => 1
[replaceable_video] => 1
[hd_playback] => 1
[mobile_playback] => 1
[embed_video_quality] => 720p
[default_video_permalink] =>
[custom_embed_url] =>
[iframe_embed_url] =>
[on_demand_storage] => 0
[player_social_sharing_services] =>
[notifications] => Array
(
[email_encoding_end] => 0
[email_comment_received] => 1
[email_tag_added] => 1
[email_commented_video_received_comment] => 1
[email_newsletter] => 1
)
[comments_moderation] => Array
(
[status] => 1
[level] => 2
[to_review] => 0
)
[comscore] => Array
(
[enabled] => 0
)
[liverail] => Array
(
[manageable] => 0
[enabled] => 0
[id] =>
)
[google_analytics] => Array
(
[enabled] => 0
[tracking_code] =>
)
)
)
http://api.viddler.com/api/v2/viddler.users.setSettings.json?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
{
"settings":{
"visible":"0",
"show_account":"0",
"gravatar":"1",
"default_view_permission":"public",
"default_comment_permission":"private",
"default_download_permission":"private",
"default_embed_permission":"private",
"default_tag_permission":"private",
"whitelisted_domains":"",
"tagging_enabled":"1",
"commenting_enabled":"1",
"embedding_enabled":"1",
"download_enabled":"1",
"show_related_videos":"0",
"video_browser_enabled":"1",
"get_link_enabled":"1",
"clicking_through_enabled":"1",
"embed_code_type":"8",
"delivery_methods":{
"progressive":"1",
"streaming":"1",
"adaptive":"1"
},
"video_delivery_method":"1",
"replaceable_video":"1",
"hd_playback":"1",
"mobile_playback":"1",
"embed_video_quality":"720p",
"default_video_permalink":"",
"custom_embed_url":"",
"iframe_embed_url":"",
"on_demand_storage":"0",
"player_social_sharing_services":"",
"notifications":{
"email_encoding_end":"0",
"email_comment_received":"1",
"email_tag_added":"1",
"email_commented_video_received_comment":"1",
"email_newsletter":"1"
},
"comments_moderation":{
"status":"1",
"level":"2",
"to_review":"0"
},
"comscore":{
"enabled":"0"
},
"liverail":{
"manageable":"0",
"enabled":"0",
"id":""
},
"google_analytics":{
"enabled":"0",
"tracking_code":""
}
}
}
Method Type: POST
Set the settings for a users profile(determined by the session id)
Parameters
-
sessionid
- string; required -
show_account
- boolean; optional -
clicking_through_enabled
- boolean; optional -
show_related_videos
- boolean; optional -
gravatar
- boolean; optional -
default_view_permission
- string; optional -
default_comment_permission
- string; optional -
default_embed_permission
- string; optional -
default_tag_permission
- string; optional -
whitelisted_domains
- string; optional -
video_delivery_method
- string; optional -
hd_playback
- boolean; optional -
mobile_playback
- boolean; optional -
default_video_permalink
- string; optional -
custom_embed_url
- string; optional -
iframe_embed_url
- string; optional -
comments_moderation
- string; optional -
video_browser_enabled
- boolean; optional -
get_link_enabled
- boolean; optional -
default_tags
- string; optional -
embed_code_type
- string; optional -
email_encoding_end
- boolean; optional -
email_comment_received
- boolean; optional -
email_tag_added
- boolean; optional -
email_commented_video_received_comment
- boolean; optional -
email_newsletter
- boolean; optional
viddler.users.getProfile
http://api.viddler.com/api/v2/viddler.users.getProfile.xml?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
<?xml version="1.0" encoding="UTF-8"?>
<user>
<username>vt_brendan</username>
<first_name>
</first_name>
<last_name>
</last_name>
<homepage>
</homepage>
<email>
</email>
<avatar>http://www.gravatar.com/avatar/3588cfe981d74d76aaa536cafaed1b3f.jpg?s=56&d=http%3A%2F%2Fcdn.static.viddler.com%2Favatars%2Fbig_unknown.gif</avatar>
<video_upload_count>2</video_upload_count>
<video_watch_count>0</video_watch_count>
<about_me>
</about_me>
<company>
</company>
<city>
</city>
<age>
</age>
<gender>
</gender>
<friend_count>0</friend_count>
<favorite_video_count>0</favorite_video_count>
<itunes_settings>
<status>0</status>
</itunes_settings>
</user>
http://api.viddler.com/api/v2/viddler.users.getProfile.php?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
Array
(
[user] => Array
(
[username] => vt_brendan
[first_name] =>
[last_name] =>
[homepage] =>
[email] =>
[avatar] => http://www.gravatar.com/avatar/3588cfe981d74d76aaa536cafaed1b3f.jpg?s=56&d=http%3A%2F%2Fcdn.static.viddler.com%2Favatars%2Fbig_unknown.gif
[video_upload_count] => 2
[video_watch_count] => 0
[about_me] =>
[company] =>
[city] =>
[age] =>
[gender] =>
[friend_count] => 0
[favorite_video_count] => 0
[itunes_settings] => Array
(
[status] => 0
)
)
)
http://api.viddler.com/api/v2/viddler.users.getProfile.json?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
{
"user":{
"username":"vt_brendan",
"first_name":"",
"last_name":"",
"homepage":"",
"email":"",
"avatar":"http://www.gravatar.com/avatar/3588cfe981d74d76aaa536cafaed1b3f.jpg?s=56&d=http%3A%2F%2Fcdn.static.viddler.com%2Favatars%2Fbig_unknown.gif",
"video_upload_count":"2",
"video_watch_count":"0",
"about_me":"",
"company":"",
"city":"",
"age":"",
"gender":"",
"friend_count":"0",
"favorite_video_count":"0",
"itunes_settings":{
"status":"0"
}
}
}
Method Type: GET
Get's a user's profile data, which includes settings and other metadata.
Parameters
-
sessionid
- string; required -
include_metadata
- boolean; optional - Include the user's profile metadata
viddler.users.setProfile
http://api.viddler.com/api/v2/viddler.users.setProfile.xml?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
<?xml version="1.0" encoding="UTF-8"?>
<user>
<username>vt_brendan</username>
<first_name>
</first_name>
<last_name>
</last_name>
<homepage>
</homepage>
<email>
</email>
<avatar>http://www.gravatar.com/avatar/3588cfe981d74d76aaa536cafaed1b3f.jpg?s=56&d=http%3A%2F%2Fcdn.static.viddler.com%2Favatars%2Fbig_unknown.gif</avatar>
<video_upload_count>2</video_upload_count>
<video_watch_count>0</video_watch_count>
<about_me>
</about_me>
<company>
</company>
<city>
</city>
<age>
</age>
<gender>
</gender>
<friend_count>0</friend_count>
<favorite_video_count>0</favorite_video_count>
<itunes_settings>
<status>0</status>
</itunes_settings>
</user>
http://api.viddler.com/api/v2/viddler.users.setProfile.php?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
Array
(
[user] => Array
(
[username] => vt_brendan
[first_name] =>
[last_name] =>
[homepage] =>
[email] =>
[avatar] => http://www.gravatar.com/avatar/3588cfe981d74d76aaa536cafaed1b3f.jpg?s=56&d=http%3A%2F%2Fcdn.static.viddler.com%2Favatars%2Fbig_unknown.gif
[video_upload_count] => 2
[video_watch_count] => 0
[about_me] =>
[company] =>
[city] =>
[age] =>
[gender] =>
[friend_count] => 0
[favorite_video_count] => 0
[itunes_settings] => Array
(
[status] => 0
)
)
)
http://api.viddler.com/api/v2/viddler.users.setProfile.json?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
{
"user":{
"username":"vt_brendan",
"first_name":"",
"last_name":"",
"homepage":"",
"email":"",
"avatar":"http://www.gravatar.com/avatar/3588cfe981d74d76aaa536cafaed1b3f.jpg?s=56&d=http%3A%2F%2Fcdn.static.viddler.com%2Favatars%2Fbig_unknown.gif",
"video_upload_count":"2",
"video_watch_count":"0",
"about_me":"",
"company":"",
"city":"",
"age":"",
"gender":"",
"friend_count":"0",
"favorite_video_count":"0",
"itunes_settings":{
"status":"0"
}
}
}
Method Type: POST
Update a logged in user`s profile, determined by the session id.
Parameters
-
sessionid
- string; required -
homepage
- string; optional -
avatar_url
- string; optional - If the user uses Gravatar they will not be able to set a new avatar until the Gravatar setting is disabled.
viddler.users.logout
http://api.viddler.com/api/v2/viddler.users.logout.xml?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
<?xml version="1.0" encoding="UTF-8"?>
<success/>
http://api.viddler.com/api/v2/viddler.users.logout.php?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
Array
(
[success] => Array
(
)
)
http://api.viddler.com/api/v2/viddler.users.logout.json?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
{
"success":{
}
}
Method Type: GET
Logs the account out and clears all session cookies(if set).
Parameters
-
sessionid
- string; Required
viddler.users.setPlayerBranding
http://api.viddler.com/api/v2/viddler.users.setPlayerBranding.xml?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
<?xml version="1.0" encoding="UTF-8"?>
<player_branding>
<logo_url>
</logo_url>
<logo_click_url/>
<logo_width/>
<logo_height/>
<logo_flash_version>0</logo_flash_version>
<logo_visible>1</logo_visible>
<logo_offset_x>10</logo_offset_x>
<logo_offset_y>10</logo_offset_y>
<logo_align>br</logo_align>
<shade_dark>1</shade_dark>
<advanced_options>0</advanced_options>
<simple_color/>
<control_bar/>
<bhover/>
<bidle/>
<bclicked/>
<pidle/>
<phover/>
<pclicked/>
<timeplayed/>
<timeloaded/>
<timebackground/>
<enable_stripes>1</enable_stripes>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<arpeggio_settings/>
</player_branding>
http://api.viddler.com/api/v2/viddler.users.setPlayerBranding.php?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
Array
(
[player_branding] => Array
(
[logo_url] =>
[logo_click_url] =>
[logo_width] =>
[logo_height] =>
[logo_flash_version] => 0
[logo_visible] => 1
[logo_offset_x] => 10
[logo_offset_y] => 10
[logo_align] => br
[shade_dark] => 1
[advanced_options] => 0
[simple_color] =>
[control_bar] =>
[bhover] =>
[bidle] =>
[bclicked] =>
[pidle] =>
[phover] =>
[pclicked] =>
[timeplayed] =>
[timeloaded] =>
[timebackground] =>
[enable_stripes] => 1
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[arpeggio_settings] => Array
(
)
)
)
http://api.viddler.com/api/v2/viddler.users.setPlayerBranding.json?sessionid=18d329314d72125d0256543f4252454e44414ea3&key=API_KEY&sessionid=18d329314d72125d0256543f4252454e44414ea3
{
"player_branding":{
"logo_url":"",
"logo_click_url":"",
"logo_width":"",
"logo_height":"",
"logo_flash_version":"0",
"logo_visible":"1",
"logo_offset_x":"10",
"logo_offset_y":"10",
"logo_align":"br",
"shade_dark":"1",
"advanced_options":"0",
"simple_color":"",
"control_bar":"",
"bhover":"",
"bidle":"",
"bclicked":"",
"pidle":"",
"phover":"",
"pclicked":"",
"timeplayed":"",
"timeloaded":"",
"timebackground":"",
"enable_stripes":"1",
"player_type":{
"player_type_id":"0",
"player_type":"arpeggio",
"comments_enabled":"1"
},
"arpeggio_settings":{
}
}
}
Method Type: GET
Allows for configuration of the players colors and logo.
Parameters
-
sessionid
- string; Required -
logo_url
- string; Optional - Publicly-accessable URL to the file to use as a logo. Must be 150px x 100px or smaller. Acceptable formats are .gif, .jpg, .png. -
logo_click_url
- string; Optional - Link where users are directed to if the click on the logo. -
logo_offset_x
- integer; Optional - Offsets from player edge , in pixels. -
logo_offset_y
- integer; Optional - Offsets from player edge , in pixels. -
logo_align
- string; Optional - Position of the logo. Offsets are calcilatedd baed on this value. Allowed values are : br, b, bl, l, r, tl, t, tr(bottom right, bottom center, bottom left,left(vertical center) , right(vertical center), top left, top center, and top right). -
logo_visible
- boolean; Optional - Determines if the logo is enabled or disabled. -
shade_dark
- boolean; Optional - Pick if the base color is dark(true) or light(false). -
enable_stripes
- boolean; Optional - Enables or disables the stripes in the video timeline. -
simple_color
- color(#RRGGBB); Optional - Simple color creates a theme based on a single color. If you need to fine-tune , utilize the advanced color options.
Advanced Color Options
-
control_bar
- color(#RRGGBB); Optional -
bhover
- color(#RRGGBB); Optional -
bidle
- color(#RRGGBB); Optional -
bclicked
- color(#RRGGBB); Optional -
pidle
- color(#RRGGBB); Optional -
phover
- color(#RRGGBB); Optional -
pclicked
- color(#RRGGBB); Optional -
timeplayed
- color(#RRGGBB); Optional -
timeloaded
- color(#RRGGBB); Optional -
timebackground
- color(#RRGGBB); Optional
viddler.users.getPlayerBranding
http://api.viddler.com/api/v2/viddler.users.getPlayerBranding.xml?sessionid=259334f14d71f0f6d556543f4252454e44414e24e&key=API_KEY&sessionid=259334f14d71f0f6d556543f4252454e44414e24e
<?xml version="1.0" encoding="UTF-8"?>
<player_branding>
<logo_url>
</logo_url>
<logo_click_url/>
<logo_width/>
<logo_height/>
<logo_flash_version>0</logo_flash_version>
<logo_visible>1</logo_visible>
<logo_offset_x>10</logo_offset_x>
<logo_offset_y>10</logo_offset_y>
<logo_align>br</logo_align>
<shade_dark>1</shade_dark>
<advanced_options>0</advanced_options>
<simple_color/>
<control_bar/>
<bhover/>
<bidle/>
<bclicked/>
<pidle/>
<phover/>
<pclicked/>
<timeplayed/>
<timeloaded/>
<timebackground/>
<enable_stripes>1</enable_stripes>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<arpeggio_settings/>
</player_branding>
http://api.viddler.com/api/v2/viddler.users.getPlayerBranding.php?sessionid=259334f14d71f0f6d556543f4252454e44414e24e&key=API_KEY&sessionid=259334f14d71f0f6d556543f4252454e44414e24e
Array
(
[player_branding] => Array
(
[logo_url] =>
[logo_click_url] =>
[logo_width] =>
[logo_height] =>
[logo_flash_version] => 0
[logo_visible] => 1
[logo_offset_x] => 10
[logo_offset_y] => 10
[logo_align] => br
[shade_dark] => 1
[advanced_options] => 0
[simple_color] =>
[control_bar] =>
[bhover] =>
[bidle] =>
[bclicked] =>
[pidle] =>
[phover] =>
[pclicked] =>
[timeplayed] =>
[timeloaded] =>
[timebackground] =>
[enable_stripes] => 1
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[arpeggio_settings] => Array
(
)
)
)
http://api.viddler.com/api/v2/viddler.users.getPlayerBranding.json?sessionid=259334f14d71f0f6d556543f4252454e44414e24e&key=API_KEY&sessionid=259334f14d71f0f6d556543f4252454e44414e24e
{
"player_branding":{
"logo_url":"",
"logo_click_url":"",
"logo_width":"",
"logo_height":"",
"logo_flash_version":"0",
"logo_visible":"1",
"logo_offset_x":"10",
"logo_offset_y":"10",
"logo_align":"br",
"shade_dark":"1",
"advanced_options":"0",
"simple_color":"",
"control_bar":"",
"bhover":"",
"bidle":"",
"bclicked":"",
"pidle":"",
"phover":"",
"pclicked":"",
"timeplayed":"",
"timeloaded":"",
"timebackground":"",
"enable_stripes":"1",
"player_type":{
"player_type_id":"0",
"player_type":"arpeggio",
"comments_enabled":"1"
},
"arpeggio_settings":{
}
}
}
Method Type: GET
Obtain player branding settings (colors and logo information) for an account (based on the sessionid)
Parameters
-
sessionid
- string; Required
viddler.api.echo
http://api.viddler.com/api/v2/viddler.api.echo.xml?sessionid=1dc333114d57b4b2cb56543f4252454e44414e223&key=API_KEY&message=Hello+%2C+World%21
<?xml version="1.0" encoding="UTF-8"?>
<echo_response>
<message>Hello , World!</message>
</echo_response>
http://api.viddler.com/api/v2/viddler.api.echo.php?sessionid=1dc333114d57b4b2cb56543f4252454e44414e223&key=API_KEY&message=Hello+%2C+World%21
Array
(
[echo_response] => Array
(
[message] => Hello , World!
)
)
http://api.viddler.com/api/v2/viddler.api.echo.json?message=Hello, world!&api_key=API_KEY
{
"echo_response": {
"message": "Hello, world!" }
}
Method Type: GET
Used for testing purposes only. It returns the message you provide as a way to make sure the API is responding.
Parameters
-
message
- string; required -
sessionid
- string; optional
viddler.api.getInfo
http://api.viddler.com/api/v2/viddler.api.getInfo.xml?sessionid=1dc333114d57b4b2cb56543f4252454e44414e223&key=API_KEY&sessionid=1dc333114d57b4b2cb56543f4252454e44414e223
<?xml version="1.0" encoding="UTF-8"?>
<viddler_api>
<version>3.9.0</version>
</viddler_api>
http://api.viddler.com/api/v2/viddler.api.getInfo.php?sessionid=1dc333114d57b4b2cb56543f4252454e44414e223&key=API_KEY&sessionid=1dc333114d57b4b2cb56543f4252454e44414e223
Array
(
[viddler_api] => Array
(
[version] => 3.9.0
)
)
http://api.viddler.com/api/v2/viddler.api.getInfo.json?sessionid=1dc333114d57b4b2cb56543f4252454e44414e223&key=API_KEY&sessionid=1dc333114d57b4b2cb56543f4252454e44414e223
{
"viddler_api":{
"version":"3.9.0"
}
}
Method Type: GET
Returns the current version of the Viddler v2 API
Parameters
-
sessionid
- string; optional
viddler.encoding.cancel
http://api.viddler.com/api/v2/viddler.encoding.cancel.xml?sessionid=27032bb14d57bfaf5d56543f4252454e44414e1ba&key=API_KEY&sessionid=27032bb14d57bfaf5d56543f4252454e44414e1ba&file_id=778002534022d6dc3e238df908656562
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<video_encoding_list>
<video_encoding>
<created_at>1431602832</created_at>
<original_file_name>Batman vs Superman Trailer.mp4</original_file_name>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Batman vs Superman Trailer</title>
<upload_time>1431602832</upload_time>
<updated_at>1431611428</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>37</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
</video>
<video_file_encoding_list>
<video_file_encoding>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602983</encoding_last_updated_at>
<encoding_started_at>1431602833</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_4</encoding_token>
<encoding_status>success</encoding_status>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602875</encoding_last_updated_at>
<encoding_started_at>1431602845</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_5</encoding_token>
<encoding_status>success</encoding_status>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602905</encoding_last_updated_at>
<encoding_started_at>1431602845</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_6</encoding_token>
<encoding_status>success</encoding_status>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431603074</encoding_last_updated_at>
<encoding_started_at>1431602833</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_7</encoding_token>
<encoding_status>success</encoding_status>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602908</encoding_last_updated_at>
<encoding_started_at>1431602833</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_8</encoding_token>
<encoding_status>success</encoding_status>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d7da6a5cea122bf12c7d</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>na</itunes>
<profile_id>9</profile_id>
<profile_name>lq</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602860</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602860</encoding_last_updated_at>
<encoding_started_at>1431602845</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_9</encoding_token>
<encoding_status>success</encoding_status>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
</video_file_encoding_list>
</video_encoding>
</video_encoding_list>
</list_result>
http://api.viddler.com/api/v2/viddler.encoding.cancel.php?sessionid=27032bb14d57bfaf5d56543f4252454e44414e1ba&key=API_KEY&sessionid=27032bb14d57bfaf5d56543f4252454e44414e1ba&file_id=778002534022d6dc3e238df908656562
Array
(
[list_result] => Array
(
[video_encoding_list] => Array
(
[0] => Array
(
[created_at] => 1431602832
[original_file_name] => Batman vs Superman Trailer.mp4
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => Batman vs Superman Trailer
[upload_time] => 1431602832
[updated_at] => 1431611428
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 37
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
)
[video_file_encoding_list] => Array
(
[0] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602983
[encoding_started_at] => 1431602833
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_4
[encoding_status] => success
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[1] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602875
[encoding_started_at] => 1431602845
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_5
[encoding_status] => success
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[2] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602905
[encoding_started_at] => 1431602845
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_6
[encoding_status] => success
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[3] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431603074
[encoding_started_at] => 1431602833
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_7
[encoding_status] => success
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[4] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602908
[encoding_started_at] => 1431602833
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_8
[encoding_status] => success
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[5] => Array
(
[id] => 778002534022d7da6a5cea122bf12c7d
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => na
[profile_id] => 9
[profile_name] => lq
[created_at] => 1431602832
[status_update_at] => 1431602860
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602860
[encoding_started_at] => 1431602845
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_9
[encoding_status] => success
[encoding_progress] => 100
[encoding_queue_position] => 0
)
)
)
)
)
)
http://api.viddler.com/api/v2/viddler.encoding.cancel.json?file_id=718a02524123d5d4752205be595a48af&api_key=API_KEY&sessionid=3a135a141e0a0da0c544f4d4bda
{
"list_result": {
"video_encoding_list": [
{
"created_at": "1382453299",
"original_file_name": "Test Video.mov",
"video": {
"id": "cb946ae0",
"status": "ready",
"author": "tomk",
"title": "Test Video",
"upload_time": "1380454605",
"made_public_time": "1380454605",
"length": "10",
"description": "",
"age_limit": "",
"url": "http://www.viddler.com/v/cb946ae0",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_cb946ae0_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.viddler.com/v/cb946ae0",
"html5_video_source": "http://www.viddler.com/file/cb946ae0/html5",
"view_count": "0",
"impression_count": "1",
"favorite": "0",
"comment_count": "0",
"password_protection": "0",
"thumbnails_count": "2",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9"
},
"video_file_encoding_list": [
{
"id": "718a02524120dad82475b6e0bfae864b",
"status": "ready",
"ext": "webm",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1382453299",
"status_update_at": "1382453316",
"encoding_created_at": "1382453299",
"encoding_last_updated_at": "1382453316",
"encoding_started_at": "1382453301",
"encoding_token": "u81e32d39bda7aafb79ab4ab9b91e8b8d1a8da1b2",
"encoding_status": "success",
"encoding_progress": "100",
"encoding_queue_position": "0"
}
]
}
]
}
}
Method Type: POST
Cancels the encoding of a specific video file.
Parameters
-
sessionid
- string; Required -
file_id
- string; Required | The file_id can be obtained fromviddler.encoding.getStatus2
viddler.encoding.encode
http://api.viddler.com/api/v2/viddler.encoding.encode.xml?sessionid=7b3514d57cab22f56543f4252454e44414e2d7&key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7&video_id=aecfca57&profile_id=5
<?xml version="1.0" encoding="UTF-8"?>
<video_file_encoding>
<id>778003584325d4d81c2211108639d963</id>
<status>new</status>
<ext>3gp</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697206</status_update_at>
<encoding_created_at/>
<encoding_last_updated_at/>
<encoding_started_at/>
<encoding_token>ua4db44adcc0beef4f095175f8f385bde6bcb379c</encoding_token>
<encoding_status>new</encoding_status>
<encoding_progress>0</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
http://api.viddler.com/api/v2/viddler.encoding.encode.php?sessionid=7b3514d57cab22f56543f4252454e44414e2d7&key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7&video_id=aecfca57&profile_id=5
Array
(
[video_file_encoding] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => new
[ext] => 3gp
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697177
[encoding_created_at] =>
[encoding_last_updated_at] =>
[encoding_started_at] =>
[encoding_token] => u53642185fa98851d920ba804d003264973668ff6
[encoding_status] => new
[encoding_progress] => 0
[encoding_queue_position] => 0
)
)
http://api.viddler.com/api/v2/viddler.encoding.encode.json?video_id=cb946ae0&profile_id=6&api_key=API_KEY&sessionid=3a135a141e0a0da0c544f4d4bda
{
"video_file_encoding": {
"id": "718a02524120dad82475b6e0bfae864b",
"status": "new",
"ext": "webm",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1382453299",
"status_update_at": "1382453299",
"encoding_created_at": "",
"encoding_last_updated_at": "",
"encoding_started_at": "",
"encoding_token": "u81e32d39bda7aafb79ab4ab9b91e8b8d1a8da1b2",
"encoding_status": "new",
"encoding_progress": "0",
"encoding_queue_position": "0"
}
}
Method Type: POST
Sends a request to re-encode a file.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
profile_id
- integer; Required |profile_id
can be obtained fromviddler.encoding.getSettings
viddler.encoding.getSettings
http://api.viddler.com/api/v2/viddler.encoding.getSettings.xml?sessionid=7b3514d57cab22f56543f4252454e44414e2d7&key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7
<?xml version="1.0" encoding="UTF-8"?>
<encoding_settings>
<use_source_for_playback>0</use_source_for_playback>
<encoding_profiles>
<profile>
<id>8</id>
<name>360p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>400</bitrate>
<allowed_bitrates>200,400,600,800</allowed_bitrates>
<dimensions>640x360</dimensions>
</profile>
<profile>
<id>3</id>
<name>480p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>800</bitrate>
<allowed_bitrates>400,600,800,1000,1500</allowed_bitrates>
<dimensions>854x480</dimensions>
</profile>
<profile>
<id>4</id>
<name>720p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>1500</bitrate>
<allowed_bitrates>800,1000,1500,2000,2500</allowed_bitrates>
<dimensions>1280x720</dimensions>
</profile>
<profile>
<id>7</id>
<name>1080p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>2000</bitrate>
<allowed_bitrates>1500,2000,2500,3000,4000,5000</allowed_bitrates>
<dimensions>1920x1080</dimensions>
</profile>
<profile>
<id>5</id>
<name>3GP</name>
<format>3gp</format>
<enabled>1</enabled>
<bitrate>100</bitrate>
<allowed_bitrates>50,100,200,500</allowed_bitrates>
<dimensions>320x180</dimensions>
</profile>
<profile>
<id>6</id>
<name>WebM</name>
<format>webm</format>
<enabled>1</enabled>
<bitrate>800</bitrate>
<allowed_bitrates>400,600,800,1000</allowed_bitrates>
<dimensions>854x480</dimensions>
</profile>
</encoding_profiles>
</encoding_settings>
http://api.viddler.com/api/v2/viddler.encoding.getSettings.php?sessionid=7b3514d57cab22f56543f4252454e44414e2d7&key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7
Array
(
[encoding_settings] => Array
(
[use_source_for_playback] => 0
[encoding_profiles] => Array
(
[0] => Array
(
[id] => 8
[name] => 360p
[format] => mp4
[enabled] => 1
[bitrate] => 400
[allowed_bitrates] => 200,400,600,800
[dimensions] => 640x360
)
[1] => Array
(
[id] => 3
[name] => 480p
[format] => mp4
[enabled] => 1
[bitrate] => 800
[allowed_bitrates] => 400,600,800,1000,1500
[dimensions] => 854x480
)
[2] => Array
(
[id] => 4
[name] => 720p
[format] => mp4
[enabled] => 1
[bitrate] => 1500
[allowed_bitrates] => 800,1000,1500,2000,2500
[dimensions] => 1280x720
)
[3] => Array
(
[id] => 7
[name] => 1080p
[format] => mp4
[enabled] => 1
[bitrate] => 2000
[allowed_bitrates] => 1500,2000,2500,3000,4000,5000
[dimensions] => 1920x1080
)
[4] => Array
(
[id] => 5
[name] => 3GP
[format] => 3gp
[enabled] => 1
[bitrate] => 100
[allowed_bitrates] => 50,100,200,500
[dimensions] => 320x180
)
[5] => Array
(
[id] => 6
[name] => WebM
[format] => webm
[enabled] => 1
[bitrate] => 800
[allowed_bitrates] => 400,600,800,1000
[dimensions] => 854x480
)
)
)
)
http://api.viddler.com/api/v2/viddler.encoding.getSettings.json?api_key=API_KEY&sessionid=1833335141706d9698544f4d4b108
{
"encoding_settings":{
"use_source_for_playback":"1",
"encoding_profiles":[
{
"id":"8",
"name":"360p",
"format":"mp4",
"enabled":"1",
"bitrate":"600",
"allowed_bitrates":"200,400,600,800",
"dimensions":"640x360"
},
{
"id":"3",
"name":"480p",
"format":"mp4",
"enabled":"1",
"bitrate":"1000",
"allowed_bitrates":"400,600,800,1000,1500",
"dimensions":"854x480"
},
{
"id":"4",
"name":"720p",
"format":"mp4",
"enabled":"1",
"bitrate":"2000",
"allowed_bitrates":"800,1000,1500,2000,2500",
"dimensions":"1280x720"
},
{
"id":"7",
"name":"1080p",
"format":"mp4",
"enabled":"1",
"bitrate":"3000",
"allowed_bitrates":"1500,2000,2500,3000,4000,5000",
"dimensions":"1920x1080"
},
{
"id":"5",
"name":"3GP",
"format":"3gp",
"enabled":"1",
"bitrate":"100",
"allowed_bitrates":"50,100,200,500",
"dimensions":"320x180"
},
{
"id":"6",
"name":"WebM",
"format":"webm",
"enabled":"1",
"bitrate":"800",
"allowed_bitrates":"400,600,800,1000",
"dimensions":"854x480"
}
]
}
}
Method Type: GET
Returns the encoding settings (formats, bit rates, and dimensions) for an account (determined by the sessionid)
Parameters
-
sessionid
- string; Required
viddler.encoding.getStatus2
http://api.viddler.com/api/v2/viddler.encoding.getStatus2.xml?key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<video_encoding_list>
<video_encoding>
<created_at>1431697206</created_at>
<original_file_name>Batman vs Superman Trailer.mp4</original_file_name>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>39</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<mp4_ready>1</mp4_ready>
</video>
<video_file_encoding_list>
<video_file_encoding>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602983</encoding_last_updated_at>
<encoding_started_at>1431602833</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_4</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602875</encoding_last_updated_at>
<encoding_started_at>1431602845</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_5</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602905</encoding_last_updated_at>
<encoding_started_at>1431602845</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_6</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431603074</encoding_last_updated_at>
<encoding_started_at>1431602833</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_7</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602908</encoding_last_updated_at>
<encoding_started_at>1431602833</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_8</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778002534022d7da6a5cea122bf12c7d</id>
<status>ready</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>na</itunes>
<profile_id>9</profile_id>
<profile_name>lq</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602860</status_update_at>
<encoding_created_at>1431602832</encoding_created_at>
<encoding_last_updated_at>1431602860</encoding_last_updated_at>
<encoding_started_at>1431602845</encoding_started_at>
<encoding_token>e583eeea00b39b2da463195b7c1ea2bfa39bc690f_9</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
<encoding_created_at>1431697139</encoding_created_at>
<encoding_last_updated_at>1431697172</encoding_last_updated_at>
<encoding_started_at>1431697142</encoding_started_at>
<encoding_token>uc0cd8463a81dc381560d3b20161b1ebc9987712c</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
<encoding_created_at>1431697177</encoding_created_at>
<encoding_last_updated_at>1431697225</encoding_last_updated_at>
<encoding_started_at>1431697180</encoding_started_at>
<encoding_token>u53642185fa98851d920ba804d003264973668ff6</encoding_token>
<encoding_status>success</encoding_status>
<encoding_status_id>4</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
<encoding_created_at>1431697206</encoding_created_at>
<encoding_last_updated_at>1431697253</encoding_last_updated_at>
<encoding_started_at>1431697208</encoding_started_at>
<encoding_token>ua4db44adcc0beef4f095175f8f385bde6bcb379c</encoding_token>
<encoding_status>success</encoding_status>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
</video_file_encoding_list>
</video_encoding>
<video_encoding>
<created_at>1431537952</created_at>
<original_file_name>Resumable_Video.swf</original_file_name>
<video>
<id>97904e7c</id>
<status>not ready</status>
<author>vt_brendan</author>
<title>Resumable_Video</title>
<upload_time>1431537952</upload_time>
<updated_at>1431537952</updated_at>
<made_public_time>1431537952</made_public_time>
<length>48</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/97904e7c</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_97904e7c.jpg</thumbnail_url>
<thumbnail_version>v0</thumbnail_version>
<permalink>http://www.viddler.com/v/97904e7c</permalink>
<html5_video_source>http://www.viddler.com/file/97904e7c/html5</html5_video_source>
<view_count>0</view_count>
<impression_count>0</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>1</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>16:10</display_aspect_ratio>
<mp4_ready>0</mp4_ready>
</video>
<video_file_encoding_list>
<video_file_encoding>
<id>7780025d4924dadaf62409f8884fdb43</id>
<status>error</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431537952</created_at>
<status_update_at>1431537974</status_update_at>
<encoding_created_at>1431537952</encoding_created_at>
<encoding_last_updated_at>1431537974</encoding_last_updated_at>
<encoding_started_at>1431537959</encoding_started_at>
<encoding_token>e1abd0e622737b183795744790c1c8b49792aa8bb_3</encoding_token>
<encoding_status>error</encoding_status>
<encoding_status_id>5</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>7780025d4924dad4e7edf12608be2559</id>
<status>error</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431537952</created_at>
<status_update_at>1431537975</status_update_at>
<encoding_created_at>1431537952</encoding_created_at>
<encoding_last_updated_at>1431537975</encoding_last_updated_at>
<encoding_started_at>1431537960</encoding_started_at>
<encoding_token>e1abd0e622737b183795744790c1c8b49792aa8bb_4</encoding_token>
<encoding_status>error</encoding_status>
<encoding_status_id>5</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>7780025d4927d3dc2cf9daf3ba8c3959</id>
<status>error</status>
<ext>3gp</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431537952</created_at>
<status_update_at>1431537977</status_update_at>
<encoding_created_at>1431537952</encoding_created_at>
<encoding_last_updated_at>1431537977</encoding_last_updated_at>
<encoding_started_at>1431537962</encoding_started_at>
<encoding_token>e1abd0e622737b183795744790c1c8b49792aa8bb_5</encoding_token>
<encoding_status>error</encoding_status>
<encoding_status_id>5</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>7780025d4927d3de0ac774d85b85034b</id>
<status>error</status>
<ext>webm</ext>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431537952</created_at>
<status_update_at>1431537977</status_update_at>
<encoding_created_at>1431537952</encoding_created_at>
<encoding_last_updated_at>1431537977</encoding_last_updated_at>
<encoding_started_at>1431537962</encoding_started_at>
<encoding_token>e1abd0e622737b183795744790c1c8b49792aa8bb_6</encoding_token>
<encoding_status>error</encoding_status>
<encoding_status_id>5</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
<video_file_encoding>
<id>7780025d4924dad8b48e55f07d348fb4</id>
<status>error</status>
<ext>mp4</ext>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431537952</created_at>
<status_update_at>1431537970</status_update_at>
<encoding_created_at>1431537952</encoding_created_at>
<encoding_last_updated_at>1431537970</encoding_last_updated_at>
<encoding_started_at>1431537955</encoding_started_at>
<encoding_token>e1abd0e622737b183795744790c1c8b49792aa8bb_8</encoding_token>
<encoding_status>error</encoding_status>
<encoding_status_id>5</encoding_status_id>
<encoding_progress>100</encoding_progress>
<encoding_queue_position>0</encoding_queue_position>
</video_file_encoding>
</video_file_encoding_list>
</video_encoding>
</video_encoding_list>
</list_result>
http://api.viddler.com/api/v2/viddler.encoding.getStatus2.php?key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7
Array
(
[list_result] => Array
(
[video_encoding_list] => Array
(
[0] => Array
(
[created_at] => 1431697206
[original_file_name] => Batman vs Superman Trailer.mp4
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 39
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[mp4_ready] => 1
)
[video_file_encoding_list] => Array
(
[0] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602983
[encoding_started_at] => 1431602833
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_4
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[1] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602875
[encoding_started_at] => 1431602845
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_5
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[2] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602905
[encoding_started_at] => 1431602845
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_6
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[3] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431603074
[encoding_started_at] => 1431602833
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_7
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[4] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602908
[encoding_started_at] => 1431602833
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_8
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[5] => Array
(
[id] => 778002534022d7da6a5cea122bf12c7d
[status] => ready
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => na
[profile_id] => 9
[profile_name] => lq
[created_at] => 1431602832
[status_update_at] => 1431602860
[encoding_created_at] => 1431602832
[encoding_last_updated_at] => 1431602860
[encoding_started_at] => 1431602845
[encoding_token] => e583eeea00b39b2da463195b7c1ea2bfa39bc690f_9
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[6] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
[encoding_created_at] => 1431697139
[encoding_last_updated_at] => 1431697172
[encoding_started_at] => 1431697142
[encoding_token] => uc0cd8463a81dc381560d3b20161b1ebc9987712c
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[7] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
[encoding_created_at] => 1431697177
[encoding_last_updated_at] => 1431697225
[encoding_started_at] => 1431697180
[encoding_token] => u53642185fa98851d920ba804d003264973668ff6
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[8] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
[encoding_created_at] => 1431697206
[encoding_last_updated_at] => 1431697253
[encoding_started_at] => 1431697208
[encoding_token] => ua4db44adcc0beef4f095175f8f385bde6bcb379c
[encoding_status] => success
[encoding_status_id] => 4
[encoding_progress] => 100
[encoding_queue_position] => 0
)
)
)
[1] => Array
(
[created_at] => 1431537952
[original_file_name] => Resumable_Video.swf
[video] => Array
(
[id] => 97904e7c
[status] => not ready
[author] => vt_brendan
[title] => Resumable_Video
[upload_time] => 1431537952
[updated_at] => 1431537952
[made_public_time] => 1431537952
[length] => 48
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/97904e7c
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_97904e7c.jpg
[thumbnail_version] => v0
[permalink] => http://www.viddler.com/v/97904e7c
[html5_video_source] => http://www.viddler.com/file/97904e7c/html5
[view_count] => 0
[impression_count] => 0
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 1
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 16:10
[mp4_ready] => 1
)
[video_file_encoding_list] => Array
(
[0] => Array
(
[id] => 7780025d4924dadaf62409f8884fdb43
[status] => error
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431537952
[status_update_at] => 1431537974
[encoding_created_at] => 1431537952
[encoding_last_updated_at] => 1431537974
[encoding_started_at] => 1431537959
[encoding_token] => e1abd0e622737b183795744790c1c8b49792aa8bb_3
[encoding_status] => error
[encoding_status_id] => 5
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[1] => Array
(
[id] => 7780025d4924dad4e7edf12608be2559
[status] => error
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431537952
[status_update_at] => 1431537975
[encoding_created_at] => 1431537952
[encoding_last_updated_at] => 1431537975
[encoding_started_at] => 1431537960
[encoding_token] => e1abd0e622737b183795744790c1c8b49792aa8bb_4
[encoding_status] => error
[encoding_status_id] => 5
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[2] => Array
(
[id] => 7780025d4927d3dc2cf9daf3ba8c3959
[status] => error
[ext] => 3gp
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431537952
[status_update_at] => 1431537977
[encoding_created_at] => 1431537952
[encoding_last_updated_at] => 1431537977
[encoding_started_at] => 1431537962
[encoding_token] => e1abd0e622737b183795744790c1c8b49792aa8bb_5
[encoding_status] => error
[encoding_status_id] => 5
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[3] => Array
(
[id] => 7780025d4927d3de0ac774d85b85034b
[status] => error
[ext] => webm
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431537952
[status_update_at] => 1431537977
[encoding_created_at] => 1431537952
[encoding_last_updated_at] => 1431537977
[encoding_started_at] => 1431537962
[encoding_token] => e1abd0e622737b183795744790c1c8b49792aa8bb_6
[encoding_status] => error
[encoding_status_id] => 5
[encoding_progress] => 100
[encoding_queue_position] => 0
)
[4] => Array
(
[id] => 7780025d4924dad8b48e55f07d348fb4
[status] => error
[ext] => mp4
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431537952
[status_update_at] => 1431537970
[encoding_created_at] => 1431537952
[encoding_last_updated_at] => 1431537970
[encoding_started_at] => 1431537955
[encoding_token] => e1abd0e622737b183795744790c1c8b49792aa8bb_8
[encoding_status] => error
[encoding_status_id] => 5
[encoding_progress] => 100
[encoding_queue_position] => 0
)
)
)
)
)
)
http://api.viddler.com/api/v2/viddler.encoding.getStatus2.json?api_key=API_KEY&sessionid=1d232ef141705212ca544f4d4b34
{
"list_result":{
"video_encoding_list":[
{
"created_at":"1380454605",
"original_file_name":"Test Video.mov",
"video":{
"id":"cb946ae0",
"status":"ready",
"author":"tomk",
"title":"Test Video",
"upload_time":"1380454605",
"made_public_time":"1380454605",
"length":"10",
"description":" ",
"age_limit":"",
"url":"http://www.viddler.com/v/cb946ae0",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_cb946ae0_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/cb946ae0",
"html5_video_source":"http://www.viddler.com/file/cb946ae0/html5",
"view_count":"0",
"impression_count":"0",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"2",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"display_aspect_ratio":"16:9",
"mp4_ready": "1"
},
"video_file_encoding_list":[
{
"id":"71850c5e4824d5d47cea8807cf267bc7",
"status":"ready",
"ext":"mp4",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1380454605",
"status_update_at":"1380454625",
"encoding_created_at":"1380454605",
"encoding_last_updated_at":"1380454625",
"encoding_started_at":"1380454610",
"encoding_token":"e5a4dbcbfd6a7a4a0779d8d793a9297d2927dbde5_3",
"encoding_status":"success",
"encoding_status_id": "4",
"encoding_progress":"100",
"encoding_queue_position":"0"
},
{
"id":"71850c5e4824d4dc68f11992021ea893",
"status":"ready",
"ext":"3gp",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1380454605",
"status_update_at":"1380454911",
"encoding_created_at":"1380454605",
"encoding_last_updated_at":"1380454911",
"encoding_started_at":"1380454897",
"encoding_token":"e5a4dbcbfd6a7a4a0779d8d793a9297d2927dbde5_5",
"encoding_status":"success",
"encoding_status_id": "4",
"encoding_progress":"100",
"encoding_queue_position":"0"
},
{
"id":"71850c5e4824d4de9de2d305cee4b804",
"status":"ready",
"ext":"webm",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1380454605",
"status_update_at":"1380454934",
"encoding_created_at":"1380454605",
"encoding_last_updated_at":"1380454934",
"encoding_started_at":"1380454919",
"encoding_token":"e5a4dbcbfd6a7a4a0779d8d793a9297d2927dbde5_6",
"encoding_status":"success",
"encoding_status_id": "4",
"encoding_progress":"100",
"encoding_queue_position":"0"
},
{
"id":"71850c5e4824d5da0bac9064d16f5a40",
"status":"ready",
"ext":"mp4",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1380454605",
"status_update_at":"1380454911",
"encoding_created_at":"1380454605",
"encoding_last_updated_at":"1380454911",
"encoding_started_at":"1380454896",
"encoding_token":"e5a4dbcbfd6a7a4a0779d8d793a9297d2927dbde5_8",
"encoding_status":"success",
"encoding_status_id": "4",
"encoding_progress":"100",
"encoding_queue_position":"0"
}
]
}
]
}
}
Method Type: GET
Obtains encoding status. Send along a video_id
to get status for all the files for that particular video only. This is an enhancement of our original, now deprecated, viddler.encoding.getStatus
method.
The possible status
codes are:
Code | Status | Description |
---|---|---|
-1 | UNKNOWN | The system is unable to determine the status. This status code may appear if there is a problem during the upload or encode process. |
0 | NEWFILE | Newly created encode job. |
1 | WAITING | File successfully placed in the queue. |
2 | ENCODING | File is currently encoding. |
3 | CREATING_THUMBNAIL | File thumbnails are currently being created. |
4 | ENCODED | Encoding successful. |
5 | ERROR | Error was thrown during encoding. |
10 | CANCEL_ENCODE | User-initiated cancel. The system acknowledged the cancel request but is waiting to send or receive a response from the encode node. |
11 | ENCODE_CANCELLED | User-initiated cancel was successful. |
15 | ADMIN_CANCEL_ENCODE | This will appear if a Viddler staff member initiated a cancel (if there is a problem with the encode or during other troubleshooting.) |
16 | ADMIN_ENCODE_CANCELLED | Successful cancel by a Viddler staff member. |
Parameters
-
sessionid
- string; Required -
video_id
- string; Optional | The video_id can be obtained for a newly uploaded video by the information returned by the system after a completed upload. If avideo_id
is not included, this method will return the data for the last uploaded video.
viddler.encoding.setSettings
http://api.viddler.com/api/v2/viddler.encoding.setSettings.xml?sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&key=API_KEY&sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&profile_8_bitrate=800
<?xml version="1.0" encoding="UTF-8"?>
<encoding_settings>
<use_source_for_playback>0</use_source_for_playback>
<encoding_profiles>
<profile>
<id>8</id>
<name>360p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>800</bitrate>
<allowed_bitrates>200,400,600,800</allowed_bitrates>
<dimensions>640x360</dimensions>
</profile>
<profile>
<id>3</id>
<name>480p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>800</bitrate>
<allowed_bitrates>400,600,800,1000,1500</allowed_bitrates>
<dimensions>854x480</dimensions>
</profile>
<profile>
<id>4</id>
<name>720p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>1500</bitrate>
<allowed_bitrates>800,1000,1500,2000,2500</allowed_bitrates>
<dimensions>1280x720</dimensions>
</profile>
<profile>
<id>7</id>
<name>1080p</name>
<format>mp4</format>
<enabled>1</enabled>
<bitrate>2000</bitrate>
<allowed_bitrates>1500,2000,2500,3000,4000,5000</allowed_bitrates>
<dimensions>1920x1080</dimensions>
</profile>
<profile>
<id>5</id>
<name>3GP</name>
<format>3gp</format>
<enabled>1</enabled>
<bitrate>100</bitrate>
<allowed_bitrates>50,100,200,500</allowed_bitrates>
<dimensions>320x180</dimensions>
</profile>
<profile>
<id>6</id>
<name>WebM</name>
<format>webm</format>
<enabled>1</enabled>
<bitrate>800</bitrate>
<allowed_bitrates>400,600,800,1000</allowed_bitrates>
<dimensions>854x480</dimensions>
</profile>
</encoding_profiles>
</encoding_settings>
http://api.viddler.com/api/v2/viddler.encoding.setSettings.php?sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&key=API_KEY&sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&profile_8_bitrate=800
Array
(
[encoding_settings] => Array
(
[use_source_for_playback] => 0
[encoding_profiles] => Array
(
[0] => Array
(
[id] => 8
[name] => 360p
[format] => mp4
[enabled] => 1
[bitrate] => 800
[allowed_bitrates] => 200,400,600,800
[dimensions] => 640x360
)
[1] => Array
(
[id] => 3
[name] => 480p
[format] => mp4
[enabled] => 1
[bitrate] => 800
[allowed_bitrates] => 400,600,800,1000,1500
[dimensions] => 854x480
)
[2] => Array
(
[id] => 4
[name] => 720p
[format] => mp4
[enabled] => 1
[bitrate] => 1500
[allowed_bitrates] => 800,1000,1500,2000,2500
[dimensions] => 1280x720
)
[3] => Array
(
[id] => 7
[name] => 1080p
[format] => mp4
[enabled] => 1
[bitrate] => 2000
[allowed_bitrates] => 1500,2000,2500,3000,4000,5000
[dimensions] => 1920x1080
)
[4] => Array
(
[id] => 5
[name] => 3GP
[format] => 3gp
[enabled] => 1
[bitrate] => 100
[allowed_bitrates] => 50,100,200,500
[dimensions] => 320x180
)
[5] => Array
(
[id] => 6
[name] => WebM
[format] => webm
[enabled] => 1
[bitrate] => 800
[allowed_bitrates] => 400,600,800,1000
[dimensions] => 854x480
)
)
)
)
http://api.viddler.com/api/v2/viddler.encoding.setSettings.json?api_key=API_KEY&profile_8_bitrate=800&sessionid=1833335141706d9698544f4d4b108
{
"encoding_settings":{
"use_source_for_playback":"1",
"encoding_profiles":[
{
"id":"8",
"name":"360p",
"format":"mp4",
"enabled":"1",
"bitrate":"800",
"allowed_bitrates":"200,400,600,800",
"dimensions":"640x360"
},
{
"id":"3",
"name":"480p",
"format":"mp4",
"enabled":"1",
"bitrate":"1000",
"allowed_bitrates":"400,600,800,1000,1500",
"dimensions":"854x480"
},
{
"id":"4",
"name":"720p",
"format":"mp4",
"enabled":"1",
"bitrate":"2000",
"allowed_bitrates":"800,1000,1500,2000,2500",
"dimensions":"1280x720"
},
{
"id":"7",
"name":"1080p",
"format":"mp4",
"enabled":"1",
"bitrate":"3000",
"allowed_bitrates":"1500,2000,2500,3000,4000,5000",
"dimensions":"1920x1080"
},
{
"id":"5",
"name":"3GP",
"format":"3gp",
"enabled":"1",
"bitrate":"100",
"allowed_bitrates":"50,100,200,500",
"dimensions":"320x180"
},
{
"id":"6",
"name":"WebM",
"format":"webm",
"enabled":"1",
"bitrate":"800",
"allowed_bitrates":"400,600,800,1000",
"dimensions":"854x480"
}
]
}
}
Method Type: POST
Sets encoding settings for an account, determined by the sessionid
.
Parameters
-
sessionid
- string; Required -
profile_#_bitrate
- integer; Optional | Exchange the # for the actual id of the profile you'd like to change. For example,profile_8_bitrate
for the 360p profile as of 2014. Bitrate in kilobits per second (kbps) and must be a value from the "allowed_bitrates" field. -
use_source_for_playback
- boolean; Optional | Deprecated, and not recommended, as the source must be a compatible H.264 .flv or .mp4 format video.
viddler.logins.add
Method Type: GET
Adds a new "login" account to a main user account. This type does not create a unique Viddler account, and can share either all videos or just a specific playlist.
Parameters
-
sessionid
- string; Required -
login
- string; Required - The login you would like to update. -
name
- string; Required - The real name for the user(max 100 characters). -
email
- string; Required - Each email address must be unique(max 100 characters). -
password
- string; Required -Password for user (max of 100 characters). -
analytic_permissions
- string; Optional - Permissions : manage -
api_settings_permissions
- string; Optional- Permissions : manage -
api_access_permissions
- string; Optional- Permissions : manage -
billing_settings_permissions
- string; Optional- Permissions : manage -
branding_settings_permissions
- string; Optional- Permissions : manage -
encoding_settings_permissions
- string; Optional- Permissions : manage -
interaction_settings_permissions
- string; Optional- Permissions : manage -
invoices_permissions
- string; Optional- Permissions : manage -
itunes_settings_permissions
- string; Optional- Permissions : manage -
logins_permissions
- string; Optional- Permissions : create, read, update, manage -
player_settings_permissions
- string; Optional- Permissions : manage -
playlists_permissions
- string; Optional- Permissions : manage -
privacy_settings_permissions
- string; Optional- Permissions : manage -
profile_permissions
- string; Optional- Permissions : manage -
recorder_permissions
- string; Optional- Permissions : manage -
subaccounts_permissions
- string; Optional- Permissions : create, read, update, manage -
support_permissions
- string; Optional- Permissions : manage -
videos_permissions
- string; Optional- Permissions : create, read, update, manage -
vidget_permissions
- string; Optional- Permissions : manage -
playlists_ids
- string; Optional - Comma delimited list of playlists ids this user can view. To allow all videos, set to "all".
viddler.logins.delete
Method Type: POST
Removes a login from the user list
Parameters
-
sessionid
- string; Required -
login
- string; Required
viddler.logins.get
Method Type: GET
Returns the current permissions for a specific user.
Parameters
-
sessionid
- string; Required -
login
- string; Required
viddler.logins.list
Method Type: GET
Returns a list of all current users attached to your account.
Parameters
-
sessionid
- string; Required -
login
- string; Optional - Search by login name -
email
- string; Optional - Search by email address -
query
- string; Optional - Search by multiple parameters. Searches multiple terms in OR format -
permission_type
- string; Optional - Search by permission type -
permission_level
- string; Optional - Required if permission type is set -
object_id
- string; Optional - Search by playlist_id -
sort
- string; Optional - Sort by : logic-asc(default), login-desc, name-asc, name-desc, email-asc,email-desc.
viddler.logins.update
http://api.viddler.com/api/v2/viddler.logins.update.xml?sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&key=API_KEY&sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&login=vt_brendan
<?xml version="1.0" encoding="UTF-8"?>
<login>
<login>vt_brendan</login>
<owner>1</owner>
<name>vt_brendan</name>
<created_at>1431349886</created_at>
<email>blilly@viddler.com</email>
<status>1</status>
</login>
http://api.viddler.com/api/v2/viddler.logins.update.php?sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&key=API_KEY&sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&login=vt_brendan
Array
(
[login] => Array
(
[login] => vt_brendan
[owner] => 1
[name] => vt_brendan
[created_at] => 1431349886
[email] => blilly@viddler.com
[status] => 1
)
)
http://api.viddler.com/api/v2/viddler.logins.update.json?sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&key=API_KEY&sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&login=vt_brendan
{
"login":{
"login":"vt_brendan",
"owner":"1",
"name":"vt_brendan",
"created_at":"1431349886",
"email":"blilly@viddler.com",
"status":"1"
}
}
Method Type: POST
Updates an existing login under your account. Most parameters support a comma delimited list of options in order to generate the permissions structure for the login.
Parameters
-
sessionid
- string; Required -
login
- string; Required - The login you would like to update. -
name
- string; Optional - The real name for the user(max 100 characters). -
email
- string; Optional - Each email address must be unique(max 100 characters). -
password
- string; Optional -Password for user (max of 100 characters). -
analytic_permissions
- string; Optional - Permissions : manage -
api_settings_permissions
- string; Optional- Permissions : manage -
api_access_permissions
- string; Optional- Permissions : manage -
billing_settings_permissions
- string; Optional- Permissions : manage -
branding_settings_permissions
- string; Optional- Permissions : manage -
encoding_settings_permissions
- string; Optional- Permissions : manage -
interaction_settings_permissions
- string; Optional- Permissions : manage -
invoices_permissions
- string; Optional- Permissions : manage -
itunes_settings_permissions
- string; Optional- Permissions : manage -
logins_permissions
- string; Optional- Permissions : create, read, update, manage -
player_settings_permissions
- string; Optional- Permissions : manage -
playlists_permissions
- string; Optional- Permissions : manage -
privacy_settings_permissions
- string; Optional- Permissions : manage -
profile_permissions
- string; Optional- Permissions : manage -
recorder_permissions
- string; Optional- Permissions : manage -
subaccounts_permissions
- string; Optional- Permissions : create, read, update, manage -
support_permissions
- string; Optional- Permissions : manage -
videos_permissions
- string; Optional- Permissions : create, read, update, manage -
vidget_permissions
- string; Optional- Permissions : manage -
playlists_ids
- string; Optional - Comma delimited list of playlists ids this user can view. To allow all videos, set to "all".
viddler.playlists.addVideo
http://api.viddler.com/api/v2/viddler.playlists.addVideo.xml?sessionid=7b3514d57cab22f56543f4252454e44414e2d7&key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7&playlist_id=728601534329e1ee&video_id=aecfca57
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>3</total>
<sort>views-desc</sort>
<playlist>
<id>728601534329e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
<video_list>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>39</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606938</playlist_item_id>
</video>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>39</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606936</playlist_item_id>
</video>
<video>
<id>15342c1b</id>
<status>ready</status>
<author>vt_brendan</author>
<title>vt_brendan 05 11, 2015 Recorded video</title>
<upload_time>1431352355</upload_time>
<updated_at>1431354496</updated_at>
<made_public_time>1431354496</made_public_time>
<length>22</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/15342c1b</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_15342c1b_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/15342c1b</permalink>
<html5_video_source>http://www.viddler.com/file/15342c1b/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>24</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>1</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>4:3</display_aspect_ratio>
<files>
<file>
<id>7780025e4229d4da5b047dd064d73bd1</id>
<status>ready</status>
<ext>flv</ext>
<type>video/x-flv</type>
<width>640</width>
<height>480</height>
<size>5369640</size>
<url>http://www.viddler.com/file/d/15342c1b.flv?vfid=7780025e4229d4da5b047dd064d73bd1</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>1</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352355</status_update_at>
</file>
<file>
<id>7780025e4229dbdc90235ffc759e18c1</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>480</width>
<height>360</height>
<size>1248382</size>
<url>http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbdc90235ffc759e18c1</url>
<html5_video_source>http://www.viddler.com/file/15342c1b/7780025e4229dbdc90235ffc759e18c1</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352372</status_update_at>
</file>
<file>
<id>7780025e4229dbde839522ba7845df55</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>480</height>
<size>2455848</size>
<url>http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbde839522ba7845df55</url>
<html5_video_source>http://www.viddler.com/file/15342c1b/7780025e4229dbde839522ba7845df55</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352396</status_update_at>
</file>
<file>
<id>7780025e4229dbd87736c8ab64773ed9</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>240</width>
<height>180</height>
<size>416290</size>
<url>http://www.viddler.com/file/d/15342c1b.3gp?vfid=7780025e4229dbd87736c8ab64773ed9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352456</status_update_at>
</file>
<file>
<id>7780025e4229dbda39617b8250424e59</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>640</width>
<height>480</height>
<size>1868585</size>
<url>http://www.viddler.com/file/d/15342c1b.webm?vfid=7780025e4229dbda39617b8250424e59</url>
<html5_video_source/>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352489</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>605532</playlist_item_id>
</video>
</video_list>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.addVideo.php?sessionid=7b3514d57cab22f56543f4252454e44414e2d7&key=API_KEY&sessionid=7b3514d57cab22f56543f4252454e44414e2d7&playlist_id=728601534329e1ee&video_id=aecfca57
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 4
[sort] => views-desc
[playlist] => Array
(
[id] => 728601534329e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
[video_list] => Array
(
[0] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 39
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606936
)
[1] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 39
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606938
)
[2] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 39
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606940
)
[3] => Array
(
[id] => 15342c1b
[status] => ready
[author] => vt_brendan
[title] => vt_brendan 05 11, 2015 Recorded video
[upload_time] => 1431352355
[updated_at] => 1431354496
[made_public_time] => 1431354496
[length] => 22
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/15342c1b
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_15342c1b_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/15342c1b
[html5_video_source] => http://www.viddler.com/file/15342c1b/html5
[view_count] => 1
[impression_count] => 24
[favorite] => 0
[comment_count] => 1
[password_protection] => 0
[thumbnails_count] => 1
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 4:3
[files] => Array
(
[0] => Array
(
[id] => 7780025e4229d4da5b047dd064d73bd1
[status] => ready
[ext] => flv
[type] => video/x-flv
[width] => 640
[height] => 480
[size] => 5369640
[url] => http://www.viddler.com/file/d/15342c1b.flv?vfid=7780025e4229d4da5b047dd064d73bd1
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 1
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] =>
[profile_name] => Source
[created_at] => 1431352355
[status_update_at] => 1431352355
)
[1] => Array
(
[id] => 7780025e4229dbdc90235ffc759e18c1
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 480
[height] => 360
[size] => 1248382
[url] => http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbdc90235ffc759e18c1
[html5_video_source] => http://www.viddler.com/file/15342c1b/7780025e4229dbdc90235ffc759e18c1
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431352355
[status_update_at] => 1431352372
)
[2] => Array
(
[id] => 7780025e4229dbde839522ba7845df55
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 480
[size] => 2455848
[url] => http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbde839522ba7845df55
[html5_video_source] => http://www.viddler.com/file/15342c1b/7780025e4229dbde839522ba7845df55
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431352355
[status_update_at] => 1431352396
)
[3] => Array
(
[id] => 7780025e4229dbd87736c8ab64773ed9
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 240
[height] => 180
[size] => 416290
[url] => http://www.viddler.com/file/d/15342c1b.3gp?vfid=7780025e4229dbd87736c8ab64773ed9
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431352355
[status_update_at] => 1431352456
)
[4] => Array
(
[id] => 7780025e4229dbda39617b8250424e59
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 640
[height] => 480
[size] => 1868585
[url] => http://www.viddler.com/file/d/15342c1b.webm?vfid=7780025e4229dbda39617b8250424e59
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431352355
[status_update_at] => 1431352489
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 605532
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.addVideo.json?playlist_id=70850d524612e0ef&video_id=51271da7&api_key=API_KEY&sessionid=2c7320e141514c7b8d544f4d4b197
{
"list_result": {
"page": "1",
"per_page": "10",
"sort": "idx-asc",
"playlist": {
"id": "70850d524612e0ef",
"name": "Test",
"type": "regular",
"visibility": "private",
"user": "tomk"
},
"video_list": [
{
"id": "51271da7",
"status": "ready",
"author": "tomk",
"title": "Test Video",
"upload_time": "1378828001",
"made_public_time": "1378828001",
"length": "10",
"description": "",
"age_limit": "",
"url": "http://www.viddler.com/v/51271da7",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_51271da7_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.example.com/video1.html",
"html5_video_source": "http://www.viddler.com/file/51271da7/html5",
"view_count": "0",
"impression_count": "1",
"favorite": "0",
"comment_count": "0",
"password_protection": "0",
"thumbnails_count": "2",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "718500584129d2dc13ef4e82e421fe26",
"status": "ready",
"ext": "mov",
"type": "video/quicktime",
"width": "960",
"height": "540",
"size": "5418416",
"url": "http://www.viddler.com/file/d/51271da7.mov?vfid=718500584129d2dc13ef4e82e421fe26",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "",
"profile_name": "Source",
"created_at": "1378828001",
"status_update_at": "1378828001"
},
{
"id": "718500584129d2de555b3aa81c1385f0",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "739348",
"url": "http://www.viddler.com/file/d/51271da7.mp4?vfid=718500584129d2de555b3aa81c1385f0",
"html5_video_source": "http://www.viddler.com/file/51271da7/718500584129d2de555b3aa81c1385f0",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1378828001",
"status_update_at": "1378828020"
},
{
"id": "718500584129d2d8918da548aeeeb07f",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "854",
"height": "480",
"size": "1255544",
"url": "http://www.viddler.com/file/d/51271da7.mp4?vfid=718500584129d2d8918da548aeeeb07f",
"html5_video_source": "http://www.viddler.com/file/51271da7/718500584129d2d8918da548aeeeb07f",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1378828001",
"status_update_at": "1378828035"
},
{
"id": "718500584129d2da3e0c15f625af4626",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "320",
"height": "180",
"size": "119298",
"url": "http://www.viddler.com/file/d/51271da7.3gp?vfid=718500584129d2da3e0c15f625af4626",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1378828001",
"status_update_at": "1378828022"
},
{
"id": "718500584129d2d4cd734f31eb65ef40",
"status": "deleted",
"ext": "webm",
"type": "video/webm",
"width": "854",
"height": "480",
"size": "564195",
"url": "",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1378828001",
"status_update_at": "1378828092"
}
],
"closed_captioning_list": [
{
"id": "7a82065c7515e7e8",
"enabled": "1",
"language": "en",
"type": "SRT",
"file_size": "144",
"file_url": "http://ccs.cdn-ec.viddler.com/51271da7_1a83ff8b88fe023d5d81f612c82f89ed67757520.srt",
"default": "1"
}
]
}
]
}
}
Method Type: POST
Adds a video to a regular playlist. The same video can be added multiple times to a single playlist if you choose.
Parameters
-
sessionid
- string; Required -
playlist_id
- string; Required |playlist_id
can be obtained fromviddler.playlists.list
-
video_id
- string; Requried
viddler.playlists.create
http://api.viddler.com/api/v2/viddler.playlists.create.xml?sessionid=14d32ac14d58488af356543f4252454e44414e1e0&key=API_KEY&sessionid=14d32ac14d58488af356543f4252454e44414e1e0&name=test_playlist
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>0</total>
<sort>idx-asc</sort>
<playlist>
<id>7286025a4423e1ee</id>
<name>test_playlist</name>
<type>regular</type>
<visibility>private</visibility>
<user>vt_brendan</user>
</playlist>
<video_list/>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.create.php?sessionid=14d32ac14d58488af356543f4252454e44414e1e0&key=API_KEY&sessionid=14d32ac14d58488af356543f4252454e44414e1e0&name=test_playlist
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 0
[sort] => idx-asc
[playlist] => Array
(
[id] => 7286025a4421e1ee
[name] => test_playlist
[type] => regular
[visibility] => private
[user] => vt_brendan
)
[video_list] => Array
(
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.create.json?sessionid=14d32ac14d58488af356543f4252454e44414e1e0&key=API_KEY&sessionid=14d32ac14d58488af356543f4252454e44414e1e0&name=test_playlist
{
"list_result":{
"page":"1",
"per_page":"10",
"total":"0",
"sort":"idx-asc",
"playlist":{
"id":"7286025a4527e1ee",
"name":"test_playlist",
"type":"regular",
"visibility":"private",
"user":"vt_brendan"
},
"video_list":[
]
}
}
Method Type: POST
Creates a playlist. Regular playlists represent a list of user defined videos. Smart playlists update in realtime, returning videos that match selected filtering rules.
Parameters
-
sessionid
- string; Required -
name
- string(100 chars max); Required -
type
- string(regular or smart); Optional | Will default toregular
-
playlist_visibility
- string(public or private); Optional | Will default toprivate
Type = Regular
parameters
-
video_ids
- string; Optional
Type = Smart
parameters
-
users
- string; Optional | List of usernames is delimited by commas and will default to your username -
tags
- string; Optional | List of tags is delimited by commas -
visibility
- string(private or public); Optional | Defaults to an empty value to include both private and public videos -
max_age
- integer; Optional | Age of videos in days (ex.: 10 will provide videos up to 10 days old) -
min_views
- integer; Optional | Defaults to empty value -
max_views
- integer; Optional | Defaults to empty value -
min_update_date
- string(YYYY-MM-DD); Optional | Defaults to empty value -
max_update_date
- string(YYYY-MM-DD); Optional | Defaults to empty value -
sort
- string; Optional | Ordering options: “uploaded-desc”(most recent videos first),“uploaded-asc”(oldest videos first),“views-desc”(most views first),“views-asc”(least views first),“comments-desc”(most comments first),”comments-asc”(least comments first),“title-desc”(A to Z),“title-asc”(Z to A)
viddler.playlists.delete
http://api.viddler.com/api/v2/viddler.playlists.delete.xml?sessionid=1ed38614d6734a26f56543f4252454e44414e293&key=API_KEY&sessionid=1ed38614d6734a26f56543f4252454e44414e293&playlist_id=7286025a4421e1ee
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<playlists>
<playlist>
<id>728601534329e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
</playlists>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.delete.php?sessionid=1ed38614d6734a26f56543f4252454e44414e293&key=API_KEY&sessionid=1ed38614d6734a26f56543f4252454e44414e293&playlist_id=7286025a4423e1ee
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[playlists] => Array
(
[0] => Array
(
[id] => 728601534329e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
[1] => Array
(
[id] => 7286025a4421e1ee
[name] => test_playlist
[type] => regular
[visibility] => private
[user] => vt_brendan
)
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.delete.json?sessionid=1ed38614d6734a26f56543f4252454e44414e293&key=API_KEY&sessionid=1ed38614d6734a26f56543f4252454e44414e293&playlist_id=7286025a4529e1ee
{
"list_result":{
"page":"1",
"per_page":"10",
"playlists":[
{
"id":"728601534329e1ee",
"name":"TEST 1",
"type":"regular",
"visibility":"public",
"user":"vt_brendan"
},
{
"id":"7286025a4421e1ee",
"name":"test_playlist",
"type":"regular",
"visibility":"private",
"user":"vt_brendan"
},
{
"id":"7286025a4423e1ee",
"name":"test_playlist",
"type":"regular",
"visibility":"private",
"user":"vt_brendan"
}
]
}
}
Method Type: POST
Deletes a Playlist
Parameters
-
sessionid
- string; Required -
playlist_id
- string; Optional | Can be obtained fromviddler.playlists.getDetails
viddler.playlists.getbyUser
http://api.viddler.com/api/v2/viddler.playlists.getByUser.xml?sessionid=1ed38614d6734a26f56543f4252454e44414e293&key=API_KEY&sessionid=1ed38614d6734a26f56543f4252454e44414e293&user=vt_brendan
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<playlists>
<playlist>
<id>728601534329e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
</playlists>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.getByUser.php?sessionid=1ed38614d6734a26f56543f4252454e44414e293&key=API_KEY&sessionid=1ed38614d6734a26f56543f4252454e44414e293&user=vt_brendan
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[playlists] => Array
(
[0] => Array
(
[id] => 728601534329e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.getByUser.json?user=tomk&api_key=API_KEY&sessionid=1be31d41414bfe2237544f4d4b3ca
{
"list_result": {
"page": "1",
"per_page": "10",
"playlists": [
{
"id": "70850d524612e0ef",
"name": "Test",
"type": "regular",
"visibility": "private",
"user": "tomk"
},
{
"id": "728301594729e1ee",
"name": "Test",
"type": "smart",
"visibility": "public",
"user": "tomk",
"rules": {
"users": "tomk",
"tags": "Test Tag",
"visibility": "public"
}
}
]
}
}
Method Type: GET
Lists all of the playlists for an account (Only public playlists unless the sessionid
is for the user specified.)
Parameters
-
sessionid
- string; Required -
user
- string; Optional | If auser
is not included, this method responds the same asviddler.playlists.list
-
page
- integer; Optional | Default:1
-
per_page
- integer; Optional | Default:10
. Max:100
viddler.playlists.getDetails
http://api.viddler.com/api/v2/viddler.playlists.getDetails.xml?sessionid=1ed38614d6734a26f56543f4252454e44414e293&key=API_KEY&session_id=1ed38614d6734a26f56543f4252454e44414e293&playlist_id=728601534329e1ee
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>4</total>
<sort>views-desc</sort>
<playlist>
<id>728601534329e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
<video_list>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>40</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606938</playlist_item_id>
</video>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>40</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606940</playlist_item_id>
</video>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>40</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606936</playlist_item_id>
</video>
<video>
<id>15342c1b</id>
<status>ready</status>
<author>vt_brendan</author>
<title>vt_brendan 05 11, 2015 Recorded video</title>
<upload_time>1431352355</upload_time>
<updated_at>1431354496</updated_at>
<made_public_time>1431354496</made_public_time>
<length>22</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/15342c1b</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_15342c1b_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/15342c1b</permalink>
<html5_video_source>http://www.viddler.com/file/15342c1b/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>24</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>1</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>4:3</display_aspect_ratio>
<files>
<file>
<id>7780025e4229d4da5b047dd064d73bd1</id>
<status>ready</status>
<ext>flv</ext>
<type>video/x-flv</type>
<width>640</width>
<height>480</height>
<size>5369640</size>
<url>http://www.viddler.com/file/d/15342c1b.flv?vfid=7780025e4229d4da5b047dd064d73bd1</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>1</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352355</status_update_at>
</file>
<file>
<id>7780025e4229dbdc90235ffc759e18c1</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>480</width>
<height>360</height>
<size>1248382</size>
<url>http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbdc90235ffc759e18c1</url>
<html5_video_source>http://www.viddler.com/file/15342c1b/7780025e4229dbdc90235ffc759e18c1</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352372</status_update_at>
</file>
<file>
<id>7780025e4229dbde839522ba7845df55</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>480</height>
<size>2455848</size>
<url>http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbde839522ba7845df55</url>
<html5_video_source>http://www.viddler.com/file/15342c1b/7780025e4229dbde839522ba7845df55</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352396</status_update_at>
</file>
<file>
<id>7780025e4229dbd87736c8ab64773ed9</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>240</width>
<height>180</height>
<size>416290</size>
<url>http://www.viddler.com/file/d/15342c1b.3gp?vfid=7780025e4229dbd87736c8ab64773ed9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352456</status_update_at>
</file>
<file>
<id>7780025e4229dbda39617b8250424e59</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>640</width>
<height>480</height>
<size>1868585</size>
<url>http://www.viddler.com/file/d/15342c1b.webm?vfid=7780025e4229dbda39617b8250424e59</url>
<html5_video_source/>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352489</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>605532</playlist_item_id>
</video>
</video_list>
<warnings>
<warning>
<description>Parameters never read: session_id</description>
</warning>
</warnings>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.getDetails.php?sessionid=1ed38614d6734a26f56543f4252454e44414e293&key=API_KEY&session_id=1ed38614d6734a26f56543f4252454e44414e293&playlist_id=728601534329e1ee
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 4
[sort] => views-desc
[playlist] => Array
(
[id] => 728601534329e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
[video_list] => Array
(
[0] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 40
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606938
)
[1] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 40
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606940
)
[2] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 40
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606936
)
[3] => Array
(
[id] => 15342c1b
[status] => ready
[author] => vt_brendan
[title] => vt_brendan 05 11, 2015 Recorded video
[upload_time] => 1431352355
[updated_at] => 1431354496
[made_public_time] => 1431354496
[length] => 22
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/15342c1b
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_15342c1b_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/15342c1b
[html5_video_source] => http://www.viddler.com/file/15342c1b/html5
[view_count] => 1
[impression_count] => 24
[favorite] => 0
[comment_count] => 1
[password_protection] => 0
[thumbnails_count] => 1
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 4:3
[files] => Array
(
[0] => Array
(
[id] => 7780025e4229d4da5b047dd064d73bd1
[status] => ready
[ext] => flv
[type] => video/x-flv
[width] => 640
[height] => 480
[size] => 5369640
[url] => http://www.viddler.com/file/d/15342c1b.flv?vfid=7780025e4229d4da5b047dd064d73bd1
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 1
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] =>
[profile_name] => Source
[created_at] => 1431352355
[status_update_at] => 1431352355
)
[1] => Array
(
[id] => 7780025e4229dbdc90235ffc759e18c1
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 480
[height] => 360
[size] => 1248382
[url] => http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbdc90235ffc759e18c1
[html5_video_source] => http://www.viddler.com/file/15342c1b/7780025e4229dbdc90235ffc759e18c1
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431352355
[status_update_at] => 1431352372
)
[2] => Array
(
[id] => 7780025e4229dbde839522ba7845df55
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 480
[size] => 2455848
[url] => http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbde839522ba7845df55
[html5_video_source] => http://www.viddler.com/file/15342c1b/7780025e4229dbde839522ba7845df55
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431352355
[status_update_at] => 1431352396
)
[3] => Array
(
[id] => 7780025e4229dbd87736c8ab64773ed9
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 240
[height] => 180
[size] => 416290
[url] => http://www.viddler.com/file/d/15342c1b.3gp?vfid=7780025e4229dbd87736c8ab64773ed9
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431352355
[status_update_at] => 1431352456
)
[4] => Array
(
[id] => 7780025e4229dbda39617b8250424e59
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 640
[height] => 480
[size] => 1868585
[url] => http://www.viddler.com/file/d/15342c1b.webm?vfid=7780025e4229dbda39617b8250424e59
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431352355
[status_update_at] => 1431352489
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 605532
)
)
[warnings] => Array
(
[0] => Array
(
[description] => Parameters never read: session_id
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.getDetails.json?playlist_id=70850d524612e0ef&api_key=API_KEY&sessionid=16e32341414c03f71e544f4d4b342
{
"list_result": {
"page": "1",
"per_page": "10",
"sort": "idx-asc",
"playlist": {
"id": "70850d524612e0ef",
"name": "Test",
"type": "regular",
"visibility": "private",
"user": "tomk"
},
"video_list": [
{
"id": "b8f60f03",
"status": "ready",
"author": "tomk",
"title": "Big Buck Bunny",
"upload_time": "1310058958",
"made_public_time": "1310651695",
"length": "597",
"description": "Testing ",
"age_limit": "",
"url": "http://www.viddler.com/v/b8f60f03",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_b8f60f03_v10.jpg",
"thumbnail_version": "v10",
"permalink": "http://www.viddler.com/v/b8f60f03",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/html5",
"view_count": "220",
"impression_count": "693",
"favorite": "0",
"comment_count": "1",
"password_protection": "0",
"thumbnails_count": "11",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "public"
},
"tagging": {
"level": "public"
},
"commenting": {
"level": "public"
},
"download": {
"level": "public"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "7181065a4125d0df48461357696a041b",
"status": "ready",
"ext": "m4v",
"type": "video/x-m4v",
"width": "1280",
"height": "720",
"size": "184891418",
"url": "http://www.viddler.com/file/d/b8f60f03.m4v?vfid=7181065a4125d0df48461357696a041b",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "",
"profile_name": "Source",
"created_at": "1364842359",
"status_update_at": "1364842359"
},
{
"id": "7181065a4125d0dbb77b06234b77a929",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "52633817",
"url": "http://www.viddler.com/file/d/b8f60f03.mp4?vfid=7181065a4125d0dbb77b06234b77a929",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/7181065a4125d0dbb77b06234b77a929",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1364842359",
"status_update_at": "1364842843"
},
{
"id": "7181065a4125d0d5394ebfbda532d32b",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "854",
"height": "480",
"size": "70688524",
"url": "http://www.viddler.com/file/d/b8f60f03.mp4?vfid=7181065a4125d0d5394ebfbda532d32b",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/7181065a4125d0d5394ebfbda532d32b",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1364842359",
"status_update_at": "1364842558"
},
{
"id": "7181065a4125d7dd22aba2d1407ae5c3",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1280",
"height": "720",
"size": "127142697",
"url": "http://www.viddler.com/file/d/b8f60f03.mp4?vfid=7181065a4125d7dd22aba2d1407ae5c3",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/7181065a4125d7dd22aba2d1407ae5c3",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "na",
"ipad": "on",
"itunes": "on",
"profile_id": "4",
"profile_name": "720p",
"created_at": "1364842359",
"status_update_at": "1364843195"
},
{
"id": "7181065a4125d7df6adc10afe22b3c22",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "320",
"height": "180",
"size": "11332181",
"url": "http://www.viddler.com/file/d/b8f60f03.3gp?vfid=7181065a4125d7df6adc10afe22b3c22",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1364842359",
"status_update_at": "1364842843"
},
{
"id": "7181065a4125d7d9efcb774edd0a58e7",
"status": "ready",
"ext": "webm",
"type": "video/webm",
"width": "854",
"height": "480",
"size": "42131630",
"url": "http://www.viddler.com/file/d/b8f60f03.webm?vfid=7181065a4125d7d9efcb774edd0a58e7",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1364842359",
"status_update_at": "1364843157"
}
],
"closed_captioning_list": [
]
}
]
}
}
Method Type: GET
Obtains details of a given playlist, which includes type, status, and the videos within. Videos listed in playlist similar to the response from viddler.videos.getDetails
Parameters
-
sessionid
- string; Required -
playlist_id
- string; Required |playlist_id
can be obtained fromviddler.playlists.list
viddler.playlists.list
http://api.viddler.com/api/v2/viddler.playlists.list.xml?sessionid=33f325414d674e8e5556543f4252454e44414ead&key=API_KEY&sessionid=33f325414d674e8e5556543f4252454e44414ead
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<playlists>
<playlist>
<id>728601534329e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
</playlists>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.list.php?sessionid=ab32b214d67494ed656543f4252454e44414e32a&key=API_KEY&sessionid=ab32b214d67494ed656543f4252454e44414e32a
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[playlists] => Array
(
[0] => Array
(
[id] => 728601534329e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.list.json?api_key=API_KEY&sessionid=1be31d41414bfe2237544f4d4b3ca
{
"list_result": {
"page": "1",
"per_page": "10",
"playlists": [
{
"id": "70850d524612e0ef",
"name": "Test",
"type": "regular",
"visibility": "private",
"user": "tomk"
},
{
"id": "728301594729e1ee",
"name": "Test",
"type": "smart",
"visibility": "public",
"user": "tomk",
"rules": {
"users": "tomk",
"tags": "Test Tag",
"visibility": "public"
}
}
]
}
}
Method Type: GET
Lists all of the playlists for the account (determined by the sessionid
)
Parameters
-
sessionid
- string; Required -
page
- integer; Optional | Default:1
-
per_page
- integer; Optional | Default:10
. Max:100
viddler.playlists.moveVideo
http://api.viddler.com/api/v2/viddler.playlists.moveVideo.xml?sessionid=2b833c614d67c8934256543f4252454e44414e1e2&key=API_KEY&sessionid=2b833c614d67c8934256543f4252454e44414e1e2&playlist_id=728601534329e1ee&from=0&to=3
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>4</total>
<sort>idx-asc</sort>
<playlist>
<id>728601534329e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
<video_list>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>40</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606940</playlist_item_id>
</video>
<video>
<id>15342c1b</id>
<status>ready</status>
<author>vt_brendan</author>
<title>vt_brendan 05 11, 2015 Recorded video</title>
<upload_time>1431352355</upload_time>
<updated_at>1431354496</updated_at>
<made_public_time>1431354496</made_public_time>
<length>22</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/15342c1b</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_15342c1b_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/15342c1b</permalink>
<html5_video_source>http://www.viddler.com/file/15342c1b/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>24</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>1</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>4:3</display_aspect_ratio>
<files>
<file>
<id>7780025e4229d4da5b047dd064d73bd1</id>
<status>ready</status>
<ext>flv</ext>
<type>video/x-flv</type>
<width>640</width>
<height>480</height>
<size>5369640</size>
<url>http://www.viddler.com/file/d/15342c1b.flv?vfid=7780025e4229d4da5b047dd064d73bd1</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>1</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352355</status_update_at>
</file>
<file>
<id>7780025e4229dbdc90235ffc759e18c1</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>480</width>
<height>360</height>
<size>1248382</size>
<url>http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbdc90235ffc759e18c1</url>
<html5_video_source>http://www.viddler.com/file/15342c1b/7780025e4229dbdc90235ffc759e18c1</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352372</status_update_at>
</file>
<file>
<id>7780025e4229dbde839522ba7845df55</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>480</height>
<size>2455848</size>
<url>http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbde839522ba7845df55</url>
<html5_video_source>http://www.viddler.com/file/15342c1b/7780025e4229dbde839522ba7845df55</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352396</status_update_at>
</file>
<file>
<id>7780025e4229dbd87736c8ab64773ed9</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>240</width>
<height>180</height>
<size>416290</size>
<url>http://www.viddler.com/file/d/15342c1b.3gp?vfid=7780025e4229dbd87736c8ab64773ed9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352456</status_update_at>
</file>
<file>
<id>7780025e4229dbda39617b8250424e59</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>640</width>
<height>480</height>
<size>1868585</size>
<url>http://www.viddler.com/file/d/15342c1b.webm?vfid=7780025e4229dbda39617b8250424e59</url>
<html5_video_source/>
<display_aspect_ratio>4:3</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431352355</created_at>
<status_update_at>1431352489</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>605532</playlist_item_id>
</video>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>40</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606936</playlist_item_id>
</video>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>40</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>606938</playlist_item_id>
</video>
</video_list>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.moveVideo.php?sessionid=2b833c614d67c8934256543f4252454e44414e1e2&key=API_KEY&sessionid=2b833c614d67c8934256543f4252454e44414e1e2&playlist_id=728601534329e1ee&from=0&to=3
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 4
[sort] => idx-asc
[playlist] => Array
(
[id] => 728601534329e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
[video_list] => Array
(
[0] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 40
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606936
)
[1] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 40
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606938
)
[2] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 40
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 606940
)
[3] => Array
(
[id] => 15342c1b
[status] => ready
[author] => vt_brendan
[title] => vt_brendan 05 11, 2015 Recorded video
[upload_time] => 1431352355
[updated_at] => 1431354496
[made_public_time] => 1431354496
[length] => 22
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/15342c1b
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_15342c1b_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/15342c1b
[html5_video_source] => http://www.viddler.com/file/15342c1b/html5
[view_count] => 1
[impression_count] => 24
[favorite] => 0
[comment_count] => 1
[password_protection] => 0
[thumbnails_count] => 1
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 4:3
[files] => Array
(
[0] => Array
(
[id] => 7780025e4229d4da5b047dd064d73bd1
[status] => ready
[ext] => flv
[type] => video/x-flv
[width] => 640
[height] => 480
[size] => 5369640
[url] => http://www.viddler.com/file/d/15342c1b.flv?vfid=7780025e4229d4da5b047dd064d73bd1
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 1
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] =>
[profile_name] => Source
[created_at] => 1431352355
[status_update_at] => 1431352355
)
[1] => Array
(
[id] => 7780025e4229dbdc90235ffc759e18c1
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 480
[height] => 360
[size] => 1248382
[url] => http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbdc90235ffc759e18c1
[html5_video_source] => http://www.viddler.com/file/15342c1b/7780025e4229dbdc90235ffc759e18c1
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431352355
[status_update_at] => 1431352372
)
[2] => Array
(
[id] => 7780025e4229dbde839522ba7845df55
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 480
[size] => 2455848
[url] => http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbde839522ba7845df55
[html5_video_source] => http://www.viddler.com/file/15342c1b/7780025e4229dbde839522ba7845df55
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431352355
[status_update_at] => 1431352396
)
[3] => Array
(
[id] => 7780025e4229dbd87736c8ab64773ed9
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 240
[height] => 180
[size] => 416290
[url] => http://www.viddler.com/file/d/15342c1b.3gp?vfid=7780025e4229dbd87736c8ab64773ed9
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431352355
[status_update_at] => 1431352456
)
[4] => Array
(
[id] => 7780025e4229dbda39617b8250424e59
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 640
[height] => 480
[size] => 1868585
[url] => http://www.viddler.com/file/d/15342c1b.webm?vfid=7780025e4229dbda39617b8250424e59
[html5_video_source] =>
[display_aspect_ratio] => 4:3
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431352355
[status_update_at] => 1431352489
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 605532
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.moveVideo.json?sessionid=2b833c614d67c8934256543f4252454e44414e1e2&key=API_KEY&sessionid=2b833c614d67c8934256543f4252454e44414e1e2&playlist_id=728601534329e1ee&from=0&to=3
{
"list_result":{
"page":"1",
"per_page":"10",
"total":"4",
"sort":"idx-asc",
"playlist":{
"id":"728601534329e1ee",
"name":"TEST 1",
"type":"regular",
"visibility":"public",
"user":"vt_brendan"
},
"video_list":[
{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"40",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"1",
"player_type":"full"
},
"display_aspect_ratio":"2.39:1",
"files":[
{
"id":"778002534022d7d8a3219515dcf98b88",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"57636989",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"1",
"flash":"off",
"iphone":"na",
"ipad":"na",
"itunes":"off",
"profile_id":"",
"profile_name":"Source",
"created_at":"1431602832",
"status_update_at":"1431602832"
},
{
"id":"778002534022d7d41b1bf41797fb1144",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"640",
"height":"267",
"size":"8061870",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1431602832",
"status_update_at":"1431602908"
},
{
"id":"778002534022d6dc3e238df908656562",
"status":"deleted",
"ext":"mp4",
"type":"video/mp4",
"width":"854",
"height":"356",
"size":"15448464",
"url":"",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1431602832",
"status_update_at":"1431696519"
},
{
"id":"778002534022d6de8b8298b61270da22",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1280",
"height":"534",
"size":"28148994",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"on",
"itunes":"on",
"profile_id":"4",
"profile_name":"720p",
"created_at":"1431602832",
"status_update_at":"1431602983"
},
{
"id":"778002534022d6d84180ac7a4b4f9fc9",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"37517291",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"na",
"itunes":"on",
"profile_id":"7",
"profile_name":"1080p",
"created_at":"1431602832",
"status_update_at":"1431603074"
},
{
"id":"778002534022d6dad5647237a5369b76",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431602832",
"status_update_at":"1431602875"
},
{
"id":"778002534022d6d45b06be25c077de52",
"status":"ready",
"ext":"webm",
"type":"video/webm",
"width":"854",
"height":"356",
"size":"14579865",
"url":"http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1431602832",
"status_update_at":"1431602905"
},
{
"id":"778003584325d6d8d96a2aeca223b462",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697139",
"status_update_at":"1431697172"
},
{
"id":"778003584325d4de13442cdc340cef80",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697177",
"status_update_at":"1431697225"
},
{
"id":"778003584325d4d81c2211108639d963",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697206",
"status_update_at":"1431697253"
}
],
"closed_captioning_list":[
],
"playlist_item_id":"606938"
},
{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"40",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"1",
"player_type":"full"
},
"display_aspect_ratio":"2.39:1",
"files":[
{
"id":"778002534022d7d8a3219515dcf98b88",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"57636989",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"1",
"flash":"off",
"iphone":"na",
"ipad":"na",
"itunes":"off",
"profile_id":"",
"profile_name":"Source",
"created_at":"1431602832",
"status_update_at":"1431602832"
},
{
"id":"778002534022d7d41b1bf41797fb1144",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"640",
"height":"267",
"size":"8061870",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1431602832",
"status_update_at":"1431602908"
},
{
"id":"778002534022d6dc3e238df908656562",
"status":"deleted",
"ext":"mp4",
"type":"video/mp4",
"width":"854",
"height":"356",
"size":"15448464",
"url":"",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1431602832",
"status_update_at":"1431696519"
},
{
"id":"778002534022d6de8b8298b61270da22",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1280",
"height":"534",
"size":"28148994",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"on",
"itunes":"on",
"profile_id":"4",
"profile_name":"720p",
"created_at":"1431602832",
"status_update_at":"1431602983"
},
{
"id":"778002534022d6d84180ac7a4b4f9fc9",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"37517291",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"na",
"itunes":"on",
"profile_id":"7",
"profile_name":"1080p",
"created_at":"1431602832",
"status_update_at":"1431603074"
},
{
"id":"778002534022d6dad5647237a5369b76",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431602832",
"status_update_at":"1431602875"
},
{
"id":"778002534022d6d45b06be25c077de52",
"status":"ready",
"ext":"webm",
"type":"video/webm",
"width":"854",
"height":"356",
"size":"14579865",
"url":"http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1431602832",
"status_update_at":"1431602905"
},
{
"id":"778003584325d6d8d96a2aeca223b462",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697139",
"status_update_at":"1431697172"
},
{
"id":"778003584325d4de13442cdc340cef80",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697177",
"status_update_at":"1431697225"
},
{
"id":"778003584325d4d81c2211108639d963",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697206",
"status_update_at":"1431697253"
}
],
"closed_captioning_list":[
],
"playlist_item_id":"606940"
},
{
"id":"15342c1b",
"status":"ready",
"author":"vt_brendan",
"title":"vt_brendan 05 11, 2015 Recorded video",
"upload_time":"1431352355",
"updated_at":"1431354496",
"made_public_time":"1431354496",
"length":"22",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/15342c1b",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_15342c1b_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/15342c1b",
"html5_video_source":"http://www.viddler.com/file/15342c1b/html5",
"view_count":"1",
"impression_count":"24",
"favorite":"0",
"comment_count":"1",
"password_protection":"0",
"thumbnails_count":"1",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"1",
"player_type":"full"
},
"display_aspect_ratio":"4:3",
"files":[
{
"id":"7780025e4229d4da5b047dd064d73bd1",
"status":"ready",
"ext":"flv",
"type":"video/x-flv",
"width":"640",
"height":"480",
"size":"5369640",
"url":"http://www.viddler.com/file/d/15342c1b.flv?vfid=7780025e4229d4da5b047dd064d73bd1",
"html5_video_source":"",
"display_aspect_ratio":"4:3",
"source":"1",
"flash":"on",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"",
"profile_name":"Source",
"created_at":"1431352355",
"status_update_at":"1431352355"
},
{
"id":"7780025e4229dbdc90235ffc759e18c1",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"480",
"height":"360",
"size":"1248382",
"url":"http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbdc90235ffc759e18c1",
"html5_video_source":"http://www.viddler.com/file/15342c1b/7780025e4229dbdc90235ffc759e18c1",
"display_aspect_ratio":"4:3",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1431352355",
"status_update_at":"1431352372"
},
{
"id":"7780025e4229dbde839522ba7845df55",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"640",
"height":"480",
"size":"2455848",
"url":"http://www.viddler.com/file/d/15342c1b.mp4?vfid=7780025e4229dbde839522ba7845df55",
"html5_video_source":"http://www.viddler.com/file/15342c1b/7780025e4229dbde839522ba7845df55",
"display_aspect_ratio":"4:3",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1431352355",
"status_update_at":"1431352396"
},
{
"id":"7780025e4229dbd87736c8ab64773ed9",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"240",
"height":"180",
"size":"416290",
"url":"http://www.viddler.com/file/d/15342c1b.3gp?vfid=7780025e4229dbd87736c8ab64773ed9",
"html5_video_source":"",
"display_aspect_ratio":"4:3",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431352355",
"status_update_at":"1431352456"
},
{
"id":"7780025e4229dbda39617b8250424e59",
"status":"ready",
"ext":"webm",
"type":"video/webm",
"width":"640",
"height":"480",
"size":"1868585",
"url":"http://www.viddler.com/file/d/15342c1b.webm?vfid=7780025e4229dbda39617b8250424e59",
"html5_video_source":"",
"display_aspect_ratio":"4:3",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1431352355",
"status_update_at":"1431352489"
}
],
"closed_captioning_list":[
],
"playlist_item_id":"605532"
},
{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"40",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"1",
"player_type":"full"
},
"display_aspect_ratio":"2.39:1",
"files":[
{
"id":"778002534022d7d8a3219515dcf98b88",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"57636989",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"1",
"flash":"off",
"iphone":"na",
"ipad":"na",
"itunes":"off",
"profile_id":"",
"profile_name":"Source",
"created_at":"1431602832",
"status_update_at":"1431602832"
},
{
"id":"778002534022d7d41b1bf41797fb1144",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"640",
"height":"267",
"size":"8061870",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1431602832",
"status_update_at":"1431602908"
},
{
"id":"778002534022d6dc3e238df908656562",
"status":"deleted",
"ext":"mp4",
"type":"video/mp4",
"width":"854",
"height":"356",
"size":"15448464",
"url":"",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1431602832",
"status_update_at":"1431696519"
},
{
"id":"778002534022d6de8b8298b61270da22",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1280",
"height":"534",
"size":"28148994",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"on",
"itunes":"on",
"profile_id":"4",
"profile_name":"720p",
"created_at":"1431602832",
"status_update_at":"1431602983"
},
{
"id":"778002534022d6d84180ac7a4b4f9fc9",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"37517291",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"na",
"itunes":"on",
"profile_id":"7",
"profile_name":"1080p",
"created_at":"1431602832",
"status_update_at":"1431603074"
},
{
"id":"778002534022d6dad5647237a5369b76",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431602832",
"status_update_at":"1431602875"
},
{
"id":"778002534022d6d45b06be25c077de52",
"status":"ready",
"ext":"webm",
"type":"video/webm",
"width":"854",
"height":"356",
"size":"14579865",
"url":"http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1431602832",
"status_update_at":"1431602905"
},
{
"id":"778003584325d6d8d96a2aeca223b462",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697139",
"status_update_at":"1431697172"
},
{
"id":"778003584325d4de13442cdc340cef80",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697177",
"status_update_at":"1431697225"
},
{
"id":"778003584325d4d81c2211108639d963",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697206",
"status_update_at":"1431697253"
}
],
"closed_captioning_list":[
],
"playlist_item_id":"606936"
}
]
}
}
Method Type: GET
Moves a video from one position to another in a regular playlist.
Parameters
-
sessionid
- string; Required -
playlist_id
- string; Required |playlist_id
can be obtained fromviddler.playlists.list
-
from
- integer; Requried | index of position in list the video appears at currently (starting with0
) For example, you would input2
for the video in position3
. -
to
- integer; Requried | index of position in list the video will now appear (starting with0
) For example, you would input2
for the video in position3
.
viddler.playlists.removeVideo
http://api.viddler.com/api/v2/viddler.playlists.removeVideo.xml?sessionid=1af311214d67d7eee556543f4252454e44414e38f&key=API_KEY&sessionid=1af311214d67d7eee556543f4252454e44414e38f&playlist_id=7286025a4821e1ee&playlist_item_id=607450
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>1</total>
<sort>idx-asc</sort>
<playlist>
<id>7286025a4821e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
<video_list>
<video>
<id>166913e0</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Hobbit Trailer</title>
<upload_time>1431352127</upload_time>
<updated_at>1431609681</updated_at>
<made_public_time>1431609115</made_public_time>
<length>152</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/166913e0</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_166913e0_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/166913e0</permalink>
<html5_video_source>http://www.viddler.com/file/166913e0/html5</html5_video_source>
<view_count>0</view_count>
<impression_count>12</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>public</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>7780025e4226d5d8e895a0815518fef5</id>
<status>ready</status>
<ext>mov</ext>
<type>video/quicktime</type>
<width>1280</width>
<height>544</height>
<size>123527828</size>
<url>http://www.viddler.com/file/d/166913e0.mov?vfid=7780025e4226d5d8e895a0815518fef5</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352127</status_update_at>
</file>
<file>
<id>7780025e4226d5d4eec263da0ce7eb28</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>272</height>
<size>9259421</size>
<url>http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d5d4eec263da0ce7eb28</url>
<html5_video_source>http://www.viddler.com/file/166913e0/7780025e4226d5d4eec263da0ce7eb28</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352192</status_update_at>
</file>
<file>
<id>7780025e4226d4dcd59ab153ed8608bf</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>362</height>
<size>17745579</size>
<url>http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4dcd59ab153ed8608bf</url>
<html5_video_source>http://www.viddler.com/file/166913e0/7780025e4226d4dcd59ab153ed8608bf</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352207</status_update_at>
</file>
<file>
<id>7780025e4226d4de61536cda7d6260ad</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>544</height>
<size>32312342</size>
<url>http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4de61536cda7d6260ad</url>
<html5_video_source>http://www.viddler.com/file/166913e0/7780025e4226d4de61536cda7d6260ad</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352272</status_update_at>
</file>
<file>
<id>7780025e4226d4d81c03db696eaf1556</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>136</height>
<size>2903278</size>
<url>http://www.viddler.com/file/d/166913e0.3gp?vfid=7780025e4226d4d81c03db696eaf1556</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352170</status_update_at>
</file>
<file>
<id>7780025e4226d4da50e4a4b19410b8e6</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>362</height>
<size>17181003</size>
<url>http://www.viddler.com/file/d/166913e0.webm?vfid=7780025e4226d4da50e4a4b19410b8e6</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352230</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>607452</playlist_item_id>
</video>
</video_list>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.removeVideo.php?sessionid=1af311214d67d7eee556543f4252454e44414e38f&key=API_KEY&sessionid=1af311214d67d7eee556543f4252454e44414e38f&playlist_id=7286025a4821e1ee&playlist_item_id=607448
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 2
[sort] => idx-asc
[playlist] => Array
(
[id] => 7286025a4821e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
[video_list] => Array
(
[0] => Array
(
[id] => 64955777
[status] => ready
[author] => vt_brendan
[title] => Star Trek Into Darkness
[upload_time] => 1431355069
[updated_at] => 1431355176
[made_public_time] => 1431355069
[length] => 139
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/64955777
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/64955777
[html5_video_source] => http://www.viddler.com/file/64955777/html5
[view_count] => 1
[impression_count] => 31
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 7780025e4525d6deb57dc72383a0d8d7
[status] => ready
[ext] => mov
[type] => video/quicktime
[width] => 1920
[height] => 800
[size] => 169896043
[url] => http://www.viddler.com/file/d/64955777.mov?vfid=7780025e4525d6deb57dc72383a0d8d7
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431355069
[status_update_at] => 1431355069
)
[1] => Array
(
[id] => 7780025e4525d6dadc2f0bd3178f2615
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 266
[size] => 8354234
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6dadc2f0bd3178f2615
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6dadc2f0bd3178f2615
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431355069
[status_update_at] => 1431355176
)
[2] => Array
(
[id] => 7780025e4525d6d4d05da6a66e34f2c2
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 355
[size] => 16062603
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6d4d05da6a66e34f2c2
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6d4d05da6a66e34f2c2
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431355069
[status_update_at] => 1431355206
)
[3] => Array
(
[id] => 7780025e4525d5dc0b3c8e5bc033e0d3
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 533
[size] => 29175378
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5dc0b3c8e5bc033e0d3
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d5dc0b3c8e5bc033e0d3
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431355069
[status_update_at] => 1431355178
)
[4] => Array
(
[id] => 7780025e4525d5deee591b7457fdd2de
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 800
[size] => 37979937
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5deee591b7457fdd2de
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431355069
[status_update_at] => 1431355432
)
[5] => Array
(
[id] => 7780025e4525d5d859b1390d281488d3
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2604407
[url] => http://www.viddler.com/file/d/64955777.3gp?vfid=7780025e4525d5d859b1390d281488d3
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431355069
[status_update_at] => 1431355119
)
[6] => Array
(
[id] => 7780025e4525d5dad32bd7de2697c172
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 355
[size] => 15796091
[url] => http://www.viddler.com/file/d/64955777.webm?vfid=7780025e4525d5dad32bd7de2697c172
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431355069
[status_update_at] => 1431355178
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 607450
)
[1] => Array
(
[id] => 166913e0
[status] => ready
[author] => vt_brendan
[title] => Hobbit Trailer
[upload_time] => 1431352127
[updated_at] => 1431609681
[made_public_time] => 1431609115
[length] => 152
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/166913e0
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_166913e0_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/166913e0
[html5_video_source] => http://www.viddler.com/file/166913e0/html5
[view_count] => 0
[impression_count] => 12
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => public
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 7780025e4226d5d8e895a0815518fef5
[status] => ready
[ext] => mov
[type] => video/quicktime
[width] => 1280
[height] => 544
[size] => 123527828
[url] => http://www.viddler.com/file/d/166913e0.mov?vfid=7780025e4226d5d8e895a0815518fef5
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431352127
[status_update_at] => 1431352127
)
[1] => Array
(
[id] => 7780025e4226d5d4eec263da0ce7eb28
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 272
[size] => 9259421
[url] => http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d5d4eec263da0ce7eb28
[html5_video_source] => http://www.viddler.com/file/166913e0/7780025e4226d5d4eec263da0ce7eb28
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431352127
[status_update_at] => 1431352192
)
[2] => Array
(
[id] => 7780025e4226d4dcd59ab153ed8608bf
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 362
[size] => 17745579
[url] => http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4dcd59ab153ed8608bf
[html5_video_source] => http://www.viddler.com/file/166913e0/7780025e4226d4dcd59ab153ed8608bf
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431352127
[status_update_at] => 1431352207
)
[3] => Array
(
[id] => 7780025e4226d4de61536cda7d6260ad
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 544
[size] => 32312342
[url] => http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4de61536cda7d6260ad
[html5_video_source] => http://www.viddler.com/file/166913e0/7780025e4226d4de61536cda7d6260ad
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431352127
[status_update_at] => 1431352272
)
[4] => Array
(
[id] => 7780025e4226d4d81c03db696eaf1556
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 136
[size] => 2903278
[url] => http://www.viddler.com/file/d/166913e0.3gp?vfid=7780025e4226d4d81c03db696eaf1556
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431352127
[status_update_at] => 1431352170
)
[5] => Array
(
[id] => 7780025e4226d4da50e4a4b19410b8e6
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 362
[size] => 17181003
[url] => http://www.viddler.com/file/d/166913e0.webm?vfid=7780025e4226d4da50e4a4b19410b8e6
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431352127
[status_update_at] => 1431352230
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 607452
)
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.removeVideo.json?sessionid=347323114d67d29ef256543f4252454e44414e3b&key=API_KEY&sessionid=347323114d67d29ef256543f4252454e44414e3b&playlist_id=728601534329e1ee&playlist_item_id=605532
{
"list_result":{
"page":"1",
"per_page":"10",
"total":"3",
"sort":"idx-asc",
"playlist":{
"id":"728601534329e1ee",
"name":"TEST 1",
"type":"regular",
"visibility":"public",
"user":"vt_brendan"
},
"video_list":[
{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"40",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"1",
"player_type":"full"
},
"display_aspect_ratio":"2.39:1",
"files":[
{
"id":"778002534022d7d8a3219515dcf98b88",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"57636989",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"1",
"flash":"off",
"iphone":"na",
"ipad":"na",
"itunes":"off",
"profile_id":"",
"profile_name":"Source",
"created_at":"1431602832",
"status_update_at":"1431602832"
},
{
"id":"778002534022d7d41b1bf41797fb1144",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"640",
"height":"267",
"size":"8061870",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1431602832",
"status_update_at":"1431602908"
},
{
"id":"778002534022d6dc3e238df908656562",
"status":"deleted",
"ext":"mp4",
"type":"video/mp4",
"width":"854",
"height":"356",
"size":"15448464",
"url":"",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1431602832",
"status_update_at":"1431696519"
},
{
"id":"778002534022d6de8b8298b61270da22",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1280",
"height":"534",
"size":"28148994",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"on",
"itunes":"on",
"profile_id":"4",
"profile_name":"720p",
"created_at":"1431602832",
"status_update_at":"1431602983"
},
{
"id":"778002534022d6d84180ac7a4b4f9fc9",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"37517291",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"na",
"itunes":"on",
"profile_id":"7",
"profile_name":"1080p",
"created_at":"1431602832",
"status_update_at":"1431603074"
},
{
"id":"778002534022d6dad5647237a5369b76",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431602832",
"status_update_at":"1431602875"
},
{
"id":"778002534022d6d45b06be25c077de52",
"status":"ready",
"ext":"webm",
"type":"video/webm",
"width":"854",
"height":"356",
"size":"14579865",
"url":"http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1431602832",
"status_update_at":"1431602905"
},
{
"id":"778003584325d6d8d96a2aeca223b462",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697139",
"status_update_at":"1431697172"
},
{
"id":"778003584325d4de13442cdc340cef80",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697177",
"status_update_at":"1431697225"
},
{
"id":"778003584325d4d81c2211108639d963",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697206",
"status_update_at":"1431697253"
}
],
"closed_captioning_list":[
],
"playlist_item_id":"606940"
},
{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"40",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"1",
"player_type":"full"
},
"display_aspect_ratio":"2.39:1",
"files":[
{
"id":"778002534022d7d8a3219515dcf98b88",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"57636989",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"1",
"flash":"off",
"iphone":"na",
"ipad":"na",
"itunes":"off",
"profile_id":"",
"profile_name":"Source",
"created_at":"1431602832",
"status_update_at":"1431602832"
},
{
"id":"778002534022d7d41b1bf41797fb1144",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"640",
"height":"267",
"size":"8061870",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1431602832",
"status_update_at":"1431602908"
},
{
"id":"778002534022d6dc3e238df908656562",
"status":"deleted",
"ext":"mp4",
"type":"video/mp4",
"width":"854",
"height":"356",
"size":"15448464",
"url":"",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1431602832",
"status_update_at":"1431696519"
},
{
"id":"778002534022d6de8b8298b61270da22",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1280",
"height":"534",
"size":"28148994",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"on",
"itunes":"on",
"profile_id":"4",
"profile_name":"720p",
"created_at":"1431602832",
"status_update_at":"1431602983"
},
{
"id":"778002534022d6d84180ac7a4b4f9fc9",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"37517291",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"na",
"itunes":"on",
"profile_id":"7",
"profile_name":"1080p",
"created_at":"1431602832",
"status_update_at":"1431603074"
},
{
"id":"778002534022d6dad5647237a5369b76",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431602832",
"status_update_at":"1431602875"
},
{
"id":"778002534022d6d45b06be25c077de52",
"status":"ready",
"ext":"webm",
"type":"video/webm",
"width":"854",
"height":"356",
"size":"14579865",
"url":"http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1431602832",
"status_update_at":"1431602905"
},
{
"id":"778003584325d6d8d96a2aeca223b462",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697139",
"status_update_at":"1431697172"
},
{
"id":"778003584325d4de13442cdc340cef80",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697177",
"status_update_at":"1431697225"
},
{
"id":"778003584325d4d81c2211108639d963",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697206",
"status_update_at":"1431697253"
}
],
"closed_captioning_list":[
],
"playlist_item_id":"606936"
},
{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"40",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"1",
"player_type":"full"
},
"display_aspect_ratio":"2.39:1",
"files":[
{
"id":"778002534022d7d8a3219515dcf98b88",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"57636989",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"1",
"flash":"off",
"iphone":"na",
"ipad":"na",
"itunes":"off",
"profile_id":"",
"profile_name":"Source",
"created_at":"1431602832",
"status_update_at":"1431602832"
},
{
"id":"778002534022d7d41b1bf41797fb1144",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"640",
"height":"267",
"size":"8061870",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"8",
"profile_name":"360p",
"created_at":"1431602832",
"status_update_at":"1431602908"
},
{
"id":"778002534022d6dc3e238df908656562",
"status":"deleted",
"ext":"mp4",
"type":"video/mp4",
"width":"854",
"height":"356",
"size":"15448464",
"url":"",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"on",
"ipad":"on",
"itunes":"on",
"profile_id":"3",
"profile_name":"480p",
"created_at":"1431602832",
"status_update_at":"1431696519"
},
{
"id":"778002534022d6de8b8298b61270da22",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1280",
"height":"534",
"size":"28148994",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22",
"html5_video_source":"http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"on",
"itunes":"on",
"profile_id":"4",
"profile_name":"720p",
"created_at":"1431602832",
"status_update_at":"1431602983"
},
{
"id":"778002534022d6d84180ac7a4b4f9fc9",
"status":"ready",
"ext":"mp4",
"type":"video/mp4",
"width":"1920",
"height":"802",
"size":"37517291",
"url":"http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"on",
"iphone":"na",
"ipad":"na",
"itunes":"on",
"profile_id":"7",
"profile_name":"1080p",
"created_at":"1431602832",
"status_update_at":"1431603074"
},
{
"id":"778002534022d6dad5647237a5369b76",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431602832",
"status_update_at":"1431602875"
},
{
"id":"778002534022d6d45b06be25c077de52",
"status":"ready",
"ext":"webm",
"type":"video/webm",
"width":"854",
"height":"356",
"size":"14579865",
"url":"http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"6",
"profile_name":"WebM",
"created_at":"1431602832",
"status_update_at":"1431602905"
},
{
"id":"778003584325d6d8d96a2aeca223b462",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697139",
"status_update_at":"1431697172"
},
{
"id":"778003584325d4de13442cdc340cef80",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697177",
"status_update_at":"1431697225"
},
{
"id":"778003584325d4d81c2211108639d963",
"status":"ready",
"ext":"3gp",
"type":"video/3gpp",
"width":"320",
"height":"133",
"size":"2522224",
"url":"http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963",
"html5_video_source":"",
"display_aspect_ratio":"2.39:1",
"source":"0",
"flash":"na",
"iphone":"na",
"ipad":"na",
"itunes":"na",
"profile_id":"5",
"profile_name":"3GP",
"created_at":"1431697206",
"status_update_at":"1431697253"
}
],
"closed_captioning_list":[
],
"playlist_item_id":"606938"
}
]
}
}
Method Type: GET
Removes a video in a regular playlist.
Parameters
-
sessionid
- string; Required -
playlist_id
- string; Required |playlist_id
can be obtained fromviddler.playlists.list
-
playlist_item_id
- string; Required |playlist_item_id
can be obtained fromviddler.playlists.getDetails
-
position
- integer; Deprecated (use ONLY ifplaylist_item_id
is not provided) (useplaylist_item_id
) | index of position in list the video appears at currently (starting with0
) For example, you would input2
for the video in position3
.
viddler.playlists.setDetails
http://api.viddler.com/api/v2/viddler.playlists.setDetails.xml?sessionid=38c31f214d67f2188456543f4252454e44414e25&key=API_KEY&sessionid=38c31f214d67f2188456543f4252454e44414e25&playlist_id=7286025a4821e1ee
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>1</total>
<sort>idx-asc</sort>
<playlist>
<id>7286025a4821e1ee</id>
<name>TEST 1</name>
<type>regular</type>
<visibility>public</visibility>
<user>vt_brendan</user>
</playlist>
<video_list>
<video>
<id>166913e0</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Hobbit Trailer</title>
<upload_time>1431352127</upload_time>
<updated_at>1431609681</updated_at>
<made_public_time>1431609115</made_public_time>
<length>152</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/166913e0</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_166913e0_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/166913e0</permalink>
<html5_video_source>http://www.viddler.com/file/166913e0/html5</html5_video_source>
<view_count>0</view_count>
<impression_count>12</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>public</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>7780025e4226d5d8e895a0815518fef5</id>
<status>ready</status>
<ext>mov</ext>
<type>video/quicktime</type>
<width>1280</width>
<height>544</height>
<size>123527828</size>
<url>http://www.viddler.com/file/d/166913e0.mov?vfid=7780025e4226d5d8e895a0815518fef5</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352127</status_update_at>
</file>
<file>
<id>7780025e4226d5d4eec263da0ce7eb28</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>272</height>
<size>9259421</size>
<url>http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d5d4eec263da0ce7eb28</url>
<html5_video_source>http://www.viddler.com/file/166913e0/7780025e4226d5d4eec263da0ce7eb28</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352192</status_update_at>
</file>
<file>
<id>7780025e4226d4dcd59ab153ed8608bf</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>362</height>
<size>17745579</size>
<url>http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4dcd59ab153ed8608bf</url>
<html5_video_source>http://www.viddler.com/file/166913e0/7780025e4226d4dcd59ab153ed8608bf</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352207</status_update_at>
</file>
<file>
<id>7780025e4226d4de61536cda7d6260ad</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>544</height>
<size>32312342</size>
<url>http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4de61536cda7d6260ad</url>
<html5_video_source>http://www.viddler.com/file/166913e0/7780025e4226d4de61536cda7d6260ad</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352272</status_update_at>
</file>
<file>
<id>7780025e4226d4d81c03db696eaf1556</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>136</height>
<size>2903278</size>
<url>http://www.viddler.com/file/d/166913e0.3gp?vfid=7780025e4226d4d81c03db696eaf1556</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352170</status_update_at>
</file>
<file>
<id>7780025e4226d4da50e4a4b19410b8e6</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>362</height>
<size>17181003</size>
<url>http://www.viddler.com/file/d/166913e0.webm?vfid=7780025e4226d4da50e4a4b19410b8e6</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431352127</created_at>
<status_update_at>1431352230</status_update_at>
</file>
</files>
<closed_captioning_list/>
<playlist_item_id>607452</playlist_item_id>
</video>
</video_list>
</list_result>
http://api.viddler.com/api/v2/viddler.playlists.setDetails.php?sessionid=38c31f214d67f2188456543f4252454e44414e25&key=API_KEY&sessionid=38c31f214d67f2188456543f4252454e44414e25&playlist_id=7286025a4821e1ee
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 1
[sort] => idx-asc
[playlist] => Array
(
[id] => 7286025a4821e1ee
[name] => TEST 1
[type] => regular
[visibility] => public
[user] => vt_brendan
)
[video_list] => Array
(
[0] => Array
(
[id] => 166913e0
[status] => ready
[author] => vt_brendan
[title] => Hobbit Trailer
[upload_time] => 1431352127
[updated_at] => 1431609681
[made_public_time] => 1431609115
[length] => 152
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/166913e0
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_166913e0_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/166913e0
[html5_video_source] => http://www.viddler.com/file/166913e0/html5
[view_count] => 0
[impression_count] => 12
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => public
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 7780025e4226d5d8e895a0815518fef5
[status] => ready
[ext] => mov
[type] => video/quicktime
[width] => 1280
[height] => 544
[size] => 123527828
[url] => http://www.viddler.com/file/d/166913e0.mov?vfid=7780025e4226d5d8e895a0815518fef5
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431352127
[status_update_at] => 1431352127
)
[1] => Array
(
[id] => 7780025e4226d5d4eec263da0ce7eb28
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 272
[size] => 9259421
[url] => http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d5d4eec263da0ce7eb28
[html5_video_source] => http://www.viddler.com/file/166913e0/7780025e4226d5d4eec263da0ce7eb28
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431352127
[status_update_at] => 1431352192
)
[2] => Array
(
[id] => 7780025e4226d4dcd59ab153ed8608bf
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 362
[size] => 17745579
[url] => http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4dcd59ab153ed8608bf
[html5_video_source] => http://www.viddler.com/file/166913e0/7780025e4226d4dcd59ab153ed8608bf
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431352127
[status_update_at] => 1431352207
)
[3] => Array
(
[id] => 7780025e4226d4de61536cda7d6260ad
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 544
[size] => 32312342
[url] => http://www.viddler.com/file/d/166913e0.mp4?vfid=7780025e4226d4de61536cda7d6260ad
[html5_video_source] => http://www.viddler.com/file/166913e0/7780025e4226d4de61536cda7d6260ad
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431352127
[status_update_at] => 1431352272
)
[4] => Array
(
[id] => 7780025e4226d4d81c03db696eaf1556
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 136
[size] => 2903278
[url] => http://www.viddler.com/file/d/166913e0.3gp?vfid=7780025e4226d4d81c03db696eaf1556
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431352127
[status_update_at] => 1431352170
)
[5] => Array
(
[id] => 7780025e4226d4da50e4a4b19410b8e6
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 362
[size] => 17181003
[url] => http://www.viddler.com/file/d/166913e0.webm?vfid=7780025e4226d4da50e4a4b19410b8e6
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431352127
[status_update_at] => 1431352230
)
)
[closed_captioning_list] => Array
(
)
[playlist_item_id] => 607452
)
)
)
)
http://api.viddler.com/api/v2/viddler.playlists.setDetails.json?name=API List&video_ids=51271da7&api_key=API_KEY&sessionid=3c831aa1413c95ddce544f4d4b17a
{
"list_result": {
"page": "1",
"per_page": "10",
"sort": "idx-asc",
"playlist": {
"id": "7281045a4723e1ee",
"name": "API List",
"type": "regular",
"visibility": "private",
"user": "tomk"
},
"video_list": [
{
"id": "51271da7",
"status": "ready",
"author": "tomk",
"title": "Test Video",
"upload_time": "1378828001",
"made_public_time": "1378828001",
"length": "10",
"description": " ",
"age_limit": "",
"url": "http://www.viddler.com/v/51271da7",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_51271da7_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.example.com/video1.html",
"html5_video_source": "http://www.viddler.com/file/51271da7/html5",
"view_count": "0",
"impression_count": "1",
"favorite": "0",
"comment_count": "0",
"password_protection": "0",
"thumbnails_count": "2",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "718500584129d2dc13ef4e82e421fe26",
"status": "ready",
"ext": "mov",
"type": "video/quicktime",
"width": "960",
"height": "540",
"size": "5418416",
"url": "http://www.viddler.com/file/d/51271da7.mov?vfid=718500584129d2dc13ef4e82e421fe26",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "",
"profile_name": "Source",
"created_at": "1378828001",
"status_update_at": "1378828001"
},
{
"id": "718500584129d2de555b3aa81c1385f0",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "739348",
"url": "http://www.viddler.com/file/d/51271da7.mp4?vfid=718500584129d2de555b3aa81c1385f0",
"html5_video_source": "http://www.viddler.com/file/51271da7/718500584129d2de555b3aa81c1385f0",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1378828001",
"status_update_at": "1378828020"
}
],
"closed_captioning_list": [
{
"id": "7a82065c7515e7e8",
"enabled": "1",
"language": "en",
"type": "SRT",
"file_size": "144",
"file_url": "http://ccs.cdn-ec.viddler.com/51271da7_1a83ff8b88fe023d5d81f612c82f89ed67757520.srt",
"default": "1"
}
]
}
]
}
}
Method Type: POST
Updates playlist details. This method is similar to viddler.playlists.create
, though it cannot alter the playlist type. (This cannot be changed after the playlist is created)
Parameters
-
sessionid
- string; Required -
playlist_id
- string; Required |playlist_id
can be obtained fromviddler.playlists.list
-
playlist_visibility
- string; Optional | Can bepublic
orprivate
. Defaultprivate
type=regular
Parameters
-
video_ids
- string; Optional | A comma-delimited list of video_ids (tokens) to add to the playlist.
type=smart
Parameters
-
users
- string; Optional | A comma-delimited list of usernames to match, defaults to only the username associated with thesessionid
. Returns onlypublic
videos for accounts that are not owned by thesessionid
. -
visibility
- string; Optional | This visibility setting determines if it will match justprivate
or justpublic
videos; defaults to empty value to include both private and public videos. -
max_age
- string; Optional | Age of videos in days (ex.: 10 will provide videos up to 10 days old) -
min_views
- integer; Optional | Threshold for minimum values. Defaults to empty value. -
max_views
- integer; Optional | Threshold for maximum values. Defaults to empty value. -
min_upldate_date
- date (YYYY-MM-DD
); Optional -
min_update_date
- date (YYYY-MM-DD
); Optional -
sort
- string; Optional | Sort Options:title-dec
(Alphabetical A-Z),title-asc
(Alphabetical Z-A),uploaded-desc
(most recent videos first),uploaded-asc
(oldest videos first),views-desc
(most views first),views-asc
(least views first). Defaults touploaded-desc
.
viddler.videos.getDetails
http://api.viddler.com/api/v2/viddler.videos.getDetails.xml?sessionid=3b53f614d53b98e0c56543f4252454e44414e227&key=API_KEY&sessionid=3b53f614d53b98e0c56543f4252454e44414e227&video_id=aecfca57
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Batman vs Superman Trailer</title>
<upload_time>1431602832</upload_time>
<updated_at>1431611428</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>37</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<tags/>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602908</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6dc3e238df908656562</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602938</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
</files>
<closed_captioning_list/>
</video>
http://api.viddler.com/api/v2/viddler.videos.getDetails.php?sessionid=25e32b014d53a4e69956543f4252454e44414e62&key=API_KEY&sessionid=25e32b014d53a4e69956543f4252454e44414e62&video_id=aecfca57
Array
(
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => Batman vs Superman Trailer
[upload_time] => 1431602832
[updated_at] => 1431611428
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 37
[favorite] => 0
[comment_count] => 0
[tags] => Array
(
)
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d41b1bf41797fb1144
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1431602908
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6dc3e238df908656562
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431602938
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
)
[closed_captioning_list] => Array
(
)
)
)
http://api.viddler.com/api/v2/viddler.videos.getDetails.json?video_id=881e2fbd
{
"video": {
"id": "881e2fbd",
"status": "ready",
"author": "tomk",
"title": "Comment Permission Example - DO NOT DELETE",
"upload_time": "1376501992",
"made_public_time": "1376501992",
"length": "100",
"description": "",
"age_limit": "",
"url": "http://www.viddler.com/v/881e2fbd",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_881e2fbd_v2.jpg",
"thumbnail_version": "v2",
"permalink": "http://www.viddler.com/v/881e2fbd",
"html5_video_source": "http://www.viddler.com/file/881e2fbd/html5",
"view_count": "4",
"impression_count": "77",
"favorite": "0",
"comment_count": "7",
"tags": [
{
"type": "global",
"text": "comment permissions"
},
{
"type": "global",
"text": "do not delete"
},
{
"type": "global",
"text": "example"
}
],
"password_protection": "0",
"thumbnails_count": "12",
"thumbnail_index": "11",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "public"
},
"commenting": {
"level": "public"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "7184025e4622d3d90adc3a3c5c0cd66a",
"status": "ready",
"ext": "mov",
"type": "video/quicktime",
"width": "1280",
"height": "720",
"size": "44881749",
"url": "http://www.viddler.com/file/d/881e2fbd.mov?vfid=7184025e4622d3d90adc3a3c5c0cd66a",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "",
"profile_name": "Source",
"created_at": "1376501992",
"status_update_at": "1376501992"
},
{
"id": "7184025e4622d3d5f0b5507c3049b4b9",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "8924094",
"url": "http://www.viddler.com/file/d/881e2fbd.mp4?vfid=7184025e4622d3d5f0b5507c3049b4b9",
"html5_video_source": "http://www.viddler.com/file/881e2fbd/7184025e4622d3d5f0b5507c3049b4b9",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1376501992",
"status_update_at": "1376502102"
},
{
"id": "7184025e4622d2dd9accb619662c1b2a",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "854",
"height": "480",
"size": "14801249",
"url": "http://www.viddler.com/file/d/881e2fbd.mp4?vfid=7184025e4622d2dd9accb619662c1b2a",
"html5_video_source": "http://www.viddler.com/file/881e2fbd/7184025e4622d2dd9accb619662c1b2a",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1376501992",
"status_update_at": "1376502057"
},
{
"id": "7184025e4622d2df5f1dcb048051feda",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1280",
"height": "720",
"size": "29447712",
"url": "http://www.viddler.com/file/d/881e2fbd.mp4?vfid=7184025e4622d2df5f1dcb048051feda",
"html5_video_source": "http://www.viddler.com/file/881e2fbd/7184025e4622d2df5f1dcb048051feda",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "na",
"ipad": "on",
"itunes": "on",
"profile_id": "4",
"profile_name": "720p",
"created_at": "1376501992",
"status_update_at": "1376502154"
},
{
"id": "7184025e4622d2d9126bc6f009dac20c",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "320",
"height": "180",
"size": "1960419",
"url": "http://www.viddler.com/file/d/881e2fbd.3gp?vfid=7184025e4622d2d9126bc6f009dac20c",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1376501992",
"status_update_at": "1376502117"
},
{
"id": "7184025e4622d2db5429f832134964dc",
"status": "ready",
"ext": "webm",
"type": "video/webm",
"width": "854",
"height": "480",
"size": "11279197",
"url": "http://www.viddler.com/file/d/881e2fbd.webm?vfid=7184025e4622d2db5429f832134964dc",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1376501992",
"status_update_at": "1376502163"
}
],
"closed_captioning_list": [
]
}
}
Method Type: GET
Returns a full lists of details for a particular video, including a list of individual files.
Deleted files will be shown in the response until the files are purged. Please note that there is no “HD” property for video files – This is determined by a file’s profile and/or its dimensions (1280x720 or higher)
Parameters
-
sessionid
- string; Required -
video_id
- string; Required This is the recommended method. | If theurl
parameter is used instead, do not include avideo_id
. -
url
- string; Optional | Used in place ofvideo_id
. | This is the full Viddler URL to the video. We strongly recommend using thevideo_id
parameter instead. -
status
- boolean (defaulttrue
); Optional |Shows files that are ready to view only, true
displays all files listed for avideo_id
-
include_comments
- boolean (defaultfalse
); Optional | We recommend using theviddler.comments
methods instead. -
add_embed_code
- boolean (defaultfalse
); Optional | Adds a default embed code with no additional parameters, useviddler.videos.getEmbedCode
if you need to customize the code. -
add_profile
- boolean (defaultfalse
); Optional | -
id_only
- boolean (defaultfalse
); Optional | Returns only thevideo_id
. Useful only in cases where theurl
parameter is used.
viddler.videos.setDetails
http://api.viddler.com/api/v2/viddler.videos.setDetails.xml?sessionid=3b332b714d6807fcac56543f4252454e44414e265&key=API_KEY&sessionid=3b332b714d6807fcac56543f4252454e44414e265&video_id=64955777&description=Updated_Description
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>64955777</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Star Trek Into Darkness</title>
<upload_time>1431355069</upload_time>
<updated_at>1431969477</updated_at>
<made_public_time>1431355069</made_public_time>
<length>139</length>
<description>Updated_Description</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/64955777</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/64955777</permalink>
<html5_video_source>http://www.viddler.com/file/64955777/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>31</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<tags/>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>1</player_type_id>
<player_type>full</player_type>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>7780025e4525d6deb57dc72383a0d8d7</id>
<status>ready</status>
<ext>mov</ext>
<type>video/quicktime</type>
<width>1920</width>
<height>800</height>
<size>169896043</size>
<url>http://www.viddler.com/file/d/64955777.mov?vfid=7780025e4525d6deb57dc72383a0d8d7</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355069</status_update_at>
</file>
<file>
<id>7780025e4525d6dadc2f0bd3178f2615</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>266</height>
<size>8354234</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6dadc2f0bd3178f2615</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d6dadc2f0bd3178f2615</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355176</status_update_at>
</file>
<file>
<id>7780025e4525d6d4d05da6a66e34f2c2</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>355</height>
<size>16062603</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6d4d05da6a66e34f2c2</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d6d4d05da6a66e34f2c2</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355206</status_update_at>
</file>
<file>
<id>7780025e4525d5dc0b3c8e5bc033e0d3</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>533</height>
<size>29175378</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5dc0b3c8e5bc033e0d3</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d5dc0b3c8e5bc033e0d3</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355178</status_update_at>
</file>
<file>
<id>7780025e4525d5deee591b7457fdd2de</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>800</height>
<size>37979937</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5deee591b7457fdd2de</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355432</status_update_at>
</file>
<file>
<id>7780025e4525d5d859b1390d281488d3</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2604407</size>
<url>http://www.viddler.com/file/d/64955777.3gp?vfid=7780025e4525d5d859b1390d281488d3</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355119</status_update_at>
</file>
<file>
<id>7780025e4525d5dad32bd7de2697c172</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>355</height>
<size>15796091</size>
<url>http://www.viddler.com/file/d/64955777.webm?vfid=7780025e4525d5dad32bd7de2697c172</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355178</status_update_at>
</file>
</files>
<closed_captioning_list/>
</video>
http://api.viddler.com/api/v2/viddler.videos.setDetails.php?sessionid=3b332b714d6807fcac56543f4252454e44414e265&key=API_KEY&sessionid=3b332b714d6807fcac56543f4252454e44414e265&video_id=64955777&description=Updated_Description
Array
(
[video] => Array
(
[id] => 64955777
[status] => ready
[author] => vt_brendan
[title] => Star Trek Into Darkness
[upload_time] => 1431355069
[updated_at] => 1431969477
[made_public_time] => 1431355069
[length] => 139
[description] => Updated_Description
[age_limit] =>
[url] => http://www.viddler.com/v/64955777
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/64955777
[html5_video_source] => http://www.viddler.com/file/64955777/html5
[view_count] => 1
[impression_count] => 31
[favorite] => 0
[comment_count] => 0
[tags] => Array
(
)
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 1
[player_type] => full
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 7780025e4525d6deb57dc72383a0d8d7
[status] => ready
[ext] => mov
[type] => video/quicktime
[width] => 1920
[height] => 800
[size] => 169896043
[url] => http://www.viddler.com/file/d/64955777.mov?vfid=7780025e4525d6deb57dc72383a0d8d7
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431355069
[status_update_at] => 1431355069
)
[1] => Array
(
[id] => 7780025e4525d6dadc2f0bd3178f2615
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 266
[size] => 8354234
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6dadc2f0bd3178f2615
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6dadc2f0bd3178f2615
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431355069
[status_update_at] => 1431355176
)
[2] => Array
(
[id] => 7780025e4525d6d4d05da6a66e34f2c2
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 355
[size] => 16062603
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6d4d05da6a66e34f2c2
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6d4d05da6a66e34f2c2
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431355069
[status_update_at] => 1431355206
)
[3] => Array
(
[id] => 7780025e4525d5dc0b3c8e5bc033e0d3
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 533
[size] => 29175378
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5dc0b3c8e5bc033e0d3
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d5dc0b3c8e5bc033e0d3
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431355069
[status_update_at] => 1431355178
)
[4] => Array
(
[id] => 7780025e4525d5deee591b7457fdd2de
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 800
[size] => 37979937
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5deee591b7457fdd2de
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431355069
[status_update_at] => 1431355432
)
[5] => Array
(
[id] => 7780025e4525d5d859b1390d281488d3
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2604407
[url] => http://www.viddler.com/file/d/64955777.3gp?vfid=7780025e4525d5d859b1390d281488d3
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431355069
[status_update_at] => 1431355119
)
[6] => Array
(
[id] => 7780025e4525d5dad32bd7de2697c172
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 355
[size] => 15796091
[url] => http://www.viddler.com/file/d/64955777.webm?vfid=7780025e4525d5dad32bd7de2697c172
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431355069
[status_update_at] => 1431355178
)
)
[closed_captioning_list] => Array
(
)
)
)
http://api.viddler.com/api/v2/viddler.videos.setDetails.json?video_id=b8f60f03&tags="testtest tag",tag2&view_perm=public&api_key=API_KEY&sessionid=2113ef14107e2abdc544f4d4b392
{
"video": {
"id": "b8f60f03",
"status": "ready",
"author": "tomk",
"title": "Big Buck Bunny",
"upload_time": "1310058958",
"made_public_time": "1310651695",
"length": "597",
"description": "Testing ",
"age_limit": "",
"url": "http://www.viddler.com/v/b8f60f03",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_b8f60f03_v6.jpg",
"thumbnail_version": "v6",
"permalink": "http://thomas.kover.me/test/playertesting2.html",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/html5",
"view_count": "220",
"impression_count": "693",
"favorite": "0",
"comment_count": "1",
"tags": [
{
"type": "global",
"text": "tag2"
},
{
"type": "global",
"text": "testtest tag"
}
],
"password_protection": "0",
"thumbnails_count": "11",
"thumbnail_index": "2",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "public"
},
"tagging": {
"level": "public"
},
"commenting": {
"level": "public"
},
"download": {
"level": "public"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "7181065a4125d0df48461357696a041b",
"status": "ready",
"ext": "m4v",
"type": "video/x-m4v",
"width": "1280",
"height": "720",
"size": "184891418",
"url": "http://www.viddler.com/file/d/b8f60f03.m4v?vfid=7181065a4125d0df48461357696a041b",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "",
"profile_name": "Source",
"created_at": "1364842359",
"status_update_at": "1364842359"
},
{
"id": "7181065a4125d0dbb77b06234b77a929",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "52633817",
"url": "http://www.viddler.com/file/d/b8f60f03.mp4?vfid=7181065a4125d0dbb77b06234b77a929",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/7181065a4125d0dbb77b06234b77a929",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1364842359",
"status_update_at": "1364842843"
},
{
"id": "7181065a4125d0d5394ebfbda532d32b",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "854",
"height": "480",
"size": "70688524",
"url": "http://www.viddler.com/file/d/b8f60f03.mp4?vfid=7181065a4125d0d5394ebfbda532d32b",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/7181065a4125d0d5394ebfbda532d32b",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1364842359",
"status_update_at": "1364842558"
},
{
"id": "7181065a4125d7dd22aba2d1407ae5c3",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1280",
"height": "720",
"size": "127142697",
"url": "http://www.viddler.com/file/d/b8f60f03.mp4?vfid=7181065a4125d7dd22aba2d1407ae5c3",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/7181065a4125d7dd22aba2d1407ae5c3",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "na",
"ipad": "on",
"itunes": "on",
"profile_id": "4",
"profile_name": "720p",
"created_at": "1364842359",
"status_update_at": "1364843195"
},
{
"id": "7181065a4125d7df6adc10afe22b3c22",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "320",
"height": "180",
"size": "11332181",
"url": "http://www.viddler.com/file/d/b8f60f03.3gp?vfid=7181065a4125d7df6adc10afe22b3c22",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1364842359",
"status_update_at": "1364842843"
},
{
"id": "7181065a4125d7d9efcb774edd0a58e7",
"status": "ready",
"ext": "webm",
"type": "video/webm",
"width": "854",
"height": "480",
"size": "42131630",
"url": "http://www.viddler.com/file/d/b8f60f03.webm?vfid=7181065a4125d7d9efcb774edd0a58e7",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1364842359",
"status_update_at": "1364843157"
}
],
"closed_captioning_list": [
]
}
}
Method Type: POST
Update parameters for a particular video.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required | Can contain either an individualvideo _id
or a comma-separated list to edit multiple videos at a time. Maximum of 100 video IDs -
title
- string; Optional -
description
- string; Optional -
thumbnail_index
- integer; Optional | Allows selection from a pre-made thumbnail – max value is determined bythumbnail_count
for a video , index starts from 0. -
age_limit
- integer; Optional | For users with Age Gate enabled, values between 9 and 99 are accepted. Empty value will reset this field. -
tags
- string; Optional | Tags are a comma delimited list of tags to add, place values with a space between quotes (“”) -
remove_tags
- string; Optional | Tags are a comma delimited list of tags to remove, place values with a space between quotes (“”). To remove a timed tag, make sure to include the timecode in braces[]
-
view_perm
- string; Optional | Values are “public”,”embed” (Domain Restricted),”invite” (Invitation Only), or “private” -
view_reset_secret
- boolean (defaultfalse
); Optional | Regenerates the "secret" value for the video. -
embed_perm
- string; Optional| Values are “public”,”embed” (Domain Restricted),”invite” (Invitation Only), or “private” -
Commenting_perm
- string; Optional | Values are “public” (All Viewers) or “private” (Only Me) -
download_perm
- string; Optional | Values are “public” (All Viewers) or “private” (Only Me) -
tagging_perm
- string; Optional | Values are “public” (All Viewers) or “private” (Only Me) -
comments_moderation_level
- integer; Optional | For accounts with comment moderation add-on. Values are 0 (no moderation),1(review all), 2 (deny profanity), 3 (review profanity) -
password
- string; Optional | To remove the password, send parameter as blank -
permalink
- string; Optional | To reset a permalink to defaults, send parameter as blank
Response is the same as viddler.videos.getDetails
viddler.videos.addClosedCaptioning
http://api.viddler.com/api/v2/viddler.videos.addClosedCaptioning.xml?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&video_id=aecfca57&language=english&closed_captioning_url=http%3A%2F%2Fccs.cdn-ec.viddler.com%2Faecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<closed_captioning_list>
<closed_captioning>
<id>708b035b4512e0ef</id>
<enabled>1</enabled>
<language>en</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt</file_url>
<default>1</default>
</closed_captioning>
<closed_captioning>
<id>708b035b4712e0ef</id>
<enabled>1</enabled>
<language>english</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_e64a3e8837fc7eeda4a9c2cd5b5c57a1fdfd62d1.srt</file_url>
<default>0</default>
</closed_captioning>
<closed_captioning>
<id>708b035b4912e0ef</id>
<enabled>1</enabled>
<language>english</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_7ac60745e8669857c3797d1a3fabb92bc7af6415.srt</file_url>
<default>0</default>
</closed_captioning>
<closed_captioning>
<id>708b03584112e0ef</id>
<enabled>1</enabled>
<language>english</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_6c8719628f8e8781f636ea269dcfed003cacd6f6.srt</file_url>
<default>0</default>
</closed_captioning>
</closed_captioning_list>
</video>
http://api.viddler.com/api/v2/viddler.videos.addClosedCaptioning.php?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&video_id=aecfca57&language=english&closed_captioning_url=http%3A%2F%2Fccs.cdn-ec.viddler.com%2Faecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt
Array
(
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
[closed_captioning_list] => Array
(
[0] => Array
(
[id] => 708b035b4512e0ef
[enabled] => 1
[language] => en
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt
[default] => 1
)
[1] => Array
(
[id] => 708b035b4712e0ef
[enabled] => 1
[language] => english
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_e64a3e8837fc7eeda4a9c2cd5b5c57a1fdfd62d1.srt
[default] => 0
)
[2] => Array
(
[id] => 708b035b4912e0ef
[enabled] => 1
[language] => english
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_7ac60745e8669857c3797d1a3fabb92bc7af6415.srt
[default] => 0
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.addClosedCaptioning.json?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&video_id=aecfca57&language=english&closed_captioning_url=http%3A%2F%2Fccs.cdn-ec.viddler.com%2Faecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt
{
"video":{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"47",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"0",
"player_type":"arpeggio",
"comments_enabled":"1"
},
"display_aspect_ratio":"2.39:1",
"closed_captioning_list":[
{
"id":"708b035b4512e0ef",
"enabled":"1",
"language":"en",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt",
"default":"1"
},
{
"id":"708b035b4712e0ef",
"enabled":"1",
"language":"english",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_e64a3e8837fc7eeda4a9c2cd5b5c57a1fdfd62d1.srt",
"default":"0"
}
]
}
}
Method Type: POST
Add a closed captioning (subtitle) file to a video. Important: This method does not accept a MULTIPART POST
file upload; the file must be hosted at another publicly accessible URL.
Filetypes accepted: .srt
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
language
- string (max 50); Required -
closed_captioning_url
- string (max 1024); Required | Full URL to the file -
default
- boolean; Optional | Sets this closed caption/subtitle file to load by default when closed caption/subtitles are enabled in the player.
viddler.videos.setClosedCaptioning
http://api.viddler.com/api/v2/viddler.videos.setClosedCaptioning.xml?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&language=French&closed_captioning_id=708b035b4512e0ef
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<closed_captioning_list>
<closed_captioning>
<id>708b035b4712e0ef</id>
<enabled>1</enabled>
<language>english</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_e64a3e8837fc7eeda4a9c2cd5b5c57a1fdfd62d1.srt</file_url>
<default>0</default>
</closed_captioning>
<closed_captioning>
<id>708b035b4912e0ef</id>
<enabled>1</enabled>
<language>english</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_7ac60745e8669857c3797d1a3fabb92bc7af6415.srt</file_url>
<default>0</default>
</closed_captioning>
<closed_captioning>
<id>708b03584112e0ef</id>
<enabled>1</enabled>
<language>english</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_6c8719628f8e8781f636ea269dcfed003cacd6f6.srt</file_url>
<default>0</default>
</closed_captioning>
<closed_captioning>
<id>708b035b4512e0ef</id>
<enabled>1</enabled>
<language>French</language>
<type>SRT</type>
<file_size>254</file_size>
<file_url>http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt</file_url>
<default>1</default>
</closed_captioning>
</closed_captioning_list>
</video>
http://api.viddler.com/api/v2/viddler.videos.setClosedCaptioning.php?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&language=French&closed_captioning_id=708b035b4512e0ef
Array
(
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
[closed_captioning_list] => Array
(
[0] => Array
(
[id] => 708b035b4712e0ef
[enabled] => 1
[language] => english
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_e64a3e8837fc7eeda4a9c2cd5b5c57a1fdfd62d1.srt
[default] => 0
)
[1] => Array
(
[id] => 708b035b4912e0ef
[enabled] => 1
[language] => english
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_7ac60745e8669857c3797d1a3fabb92bc7af6415.srt
[default] => 0
)
[2] => Array
(
[id] => 708b03584112e0ef
[enabled] => 1
[language] => english
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_6c8719628f8e8781f636ea269dcfed003cacd6f6.srt
[default] => 0
)
[3] => Array
(
[id] => 708b035b4512e0ef
[enabled] => 1
[language] => French
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt
[default] => 1
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.setClosedCaptioning.json?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&language=French&closed_captioning_id=708b035b4512e0ef
{
"video":{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"47",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"0",
"player_type":"arpeggio",
"comments_enabled":"1"
},
"display_aspect_ratio":"2.39:1",
"closed_captioning_list":[
{
"id":"708b035b4712e0ef",
"enabled":"1",
"language":"english",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_e64a3e8837fc7eeda4a9c2cd5b5c57a1fdfd62d1.srt",
"default":"0"
},
{
"id":"708b035b4912e0ef",
"enabled":"1",
"language":"english",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_7ac60745e8669857c3797d1a3fabb92bc7af6415.srt",
"default":"0"
},
{
"id":"708b03584112e0ef",
"enabled":"1",
"language":"english",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_6c8719628f8e8781f636ea269dcfed003cacd6f6.srt",
"default":"0"
},
{
"id":"708b035b4512e0ef",
"enabled":"1",
"language":"French",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt",
"default":"1"
}
]
}
}
Method Type: POST
Update closed captioning details. closed_captioning_id
can be obtained from viddler.videos.getDetails
.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
language
- string (max 50); Required -
closed_captioning_id
- string ; Required |closed_captioning_id
can be obtained fromviddler.videos.getDetails
. -
enabled
- boolean; 'Optional | Setting this value totrue
allows this file to be selected and viewed. Defaulttrue
-
default
- boolean; Optional | Sets this closed caption/subtitle file to load by default when closed caption/subtitles are enabled in the player. Defaultfalse
viddler.videos.delClosedCaptioning
http://api.viddler.com/api/v2/viddler.videos.delClosedCaptioning.xml?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&closed_captioning_id=708b035b4512e0ef
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<closed_captioning_list/>
</video>
http://api.viddler.com/api/v2/viddler.videos.delClosedCaptioning.php?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&closed_captioning_id=708b03584112e0ef
Array
(
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
[closed_captioning_list] => Array
(
[0] => Array
(
[id] => 708b035b4512e0ef
[enabled] => 1
[language] => French
[type] => SRT
[file_size] => 254
[file_url] => http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt
[default] => 1
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.delClosedCaptioning.json?sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&key=API_KEY&sessionid=29a31be14d6cd86c1756543f4252454e44414e1d4&closed_captioning_id=708b035b4712e0ef
{
"video":{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"47",
"favorite":"0",
"comment_count":"0",
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"0",
"player_type":"arpeggio",
"comments_enabled":"1"
},
"display_aspect_ratio":"2.39:1",
"closed_captioning_list":[
{
"id":"708b035b4912e0ef",
"enabled":"1",
"language":"english",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_7ac60745e8669857c3797d1a3fabb92bc7af6415.srt",
"default":"0"
},
{
"id":"708b03584112e0ef",
"enabled":"1",
"language":"english",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_6c8719628f8e8781f636ea269dcfed003cacd6f6.srt",
"default":"0"
},
{
"id":"708b035b4512e0ef",
"enabled":"1",
"language":"French",
"type":"SRT",
"file_size":"254",
"file_url":"http://ccs.cdn-ec.viddler.com/aecfca57_3e4bdb32a7a85922b450c062982ea522f95e342c.srt",
"default":"1"
}
]
}
}
Method Type: POST
Deleted a closed captioning (subtitle) file. closed_captioning_id
can be obtained from viddler.videos.getDetails
.
Parameters
-
sessionid
- string; Required -
closed_captioning_id
- string ; Required | id of the CC/subtitle file obtained fromviddler.videos.getDetails
viddler.videos.comments.get
http://api.viddler.com/api/v2/viddler.videos.comments.get.xml?sessionid=14d32b314d6cefc42656543f4252454e44414eca&key=API_KEY&sessionid=14d32b314d6cefc42656543f4252454e44414eca&video_id=aecfca57
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<sort>date-desc</sort>
<comments_list>
<comment>
<id>718202534920d1ed</id>
<type>text</type>
<author>vt_brendan</author>
<custom_user_identifier/>
<rating>0</rating>
<replies_count>0</replies_count>
<text>TEST API COMMENT</text>
<add_time>1432051750</add_time>
<comments_moderation>
<status>1</status>
<obscenity_filter>
</obscenity_filter>
</comments_moderation>
</comment>
</comments_list>
</list_result>
http://api.viddler.com/api/v2/viddler.videos.comments.get.php?sessionid=14d32b314d6cefc42656543f4252454e44414eca&key=API_KEY&sessionid=14d32b314d6cefc42656543f4252454e44414eca&video_id=aecfca57
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[sort] => date-desc
[comments_list] => Array
(
[0] => Array
(
[id] => 718202534920d1ed
[type] => text
[author] => vt_brendan
[custom_user_identifier] =>
[rating] => 0
[replies_count] => 0
[text] => TEST API COMMENT
[add_time] => 1432051750
[comments_moderation] => Array
(
[status] => 1
[obscenity_filter] =>
)
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.comments.get.json?video_id=51271da7&api_key=API_KEY&sessionid=1be322d1415623fe4a544f4d4b121
{
"list_result":{
"page":"1",
"per_page":"10",
"sort":"date-desc",
"comments_list":[
{
"id":"72860c5d4220d5ed",
"type":"text",
"author":"tomk",
"rating":"0",
"replies_count":"2",
"text":"Test Comment! ",
"add_time":"1380121818",
"add_timepoint":"5000",
"comments_moderation":{
"status":"1",
"obscenity_filter":""
}
}
]
}
}
Method Type: GET
Get comments for the specified video. If this video is owned by the sessionid
: All comments with any moderation status are returned If this video is not owned by the sessionid
: Only comments that are approved are returned, and only if the video is set to Public
.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
parent_id
- string; Optional | Get nested comments (replies) for a particular comment. These are not included in the default list for a video’s comments. ID can be obtained from this method (and not using theparent_id
parameter. -
page
- integer; Optional | Default:1
-
per_page
- integer; Optional | Default:10
. Max100
viddler.videos.comments.add
http://api.viddler.com/api/v2/viddler.videos.comments.add.xml?sessionid=14d32b314d6cefc42656543f4252454e44414eca&key=API_KEY&sessionid=14d32b314d6cefc42656543f4252454e44414eca&video_id=aecfca57&text=XML%21
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>3</comment_count>
<comments>
<comment>
<id>718202534920d5ed</id>
<type>text</type>
<author>vt_brendan</author>
<custom_user_identifier/>
<rating>0</rating>
<replies_count>0</replies_count>
<text>XML!</text>
<add_time>1432052123</add_time>
<comments_moderation>
<status>1</status>
<obscenity_filter>
</obscenity_filter>
</comments_moderation>
</comment>
<comment>
<id>718202534920d7ed</id>
<type>text</type>
<author>vt_brendan</author>
<custom_user_identifier/>
<rating>0</rating>
<replies_count>0</replies_count>
<text>PHP!</text>
<add_time>1432052077</add_time>
<comments_moderation>
<status>1</status>
<obscenity_filter>
</obscenity_filter>
</comments_moderation>
</comment>
<comment>
<id>718202534920d1ed</id>
<type>text</type>
<author>vt_brendan</author>
<custom_user_identifier/>
<rating>0</rating>
<replies_count>0</replies_count>
<text>TEST API COMMENT</text>
<add_time>1432051750</add_time>
<comments_moderation>
<status>1</status>
<obscenity_filter>
</obscenity_filter>
</comments_moderation>
</comment>
</comments>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
</video>
http://api.viddler.com/api/v2/viddler.videos.comments.add.json?sessionid=14d32b314d6cefc42656543f4252454e44414eca&key=API_KEY&sessionid=14d32b314d6cefc42656543f4252454e44414eca&video_id=aecfca57&text=PHP%21
{
"video":{
"id":"aecfca57",
"status":"ready",
"author":"vt_brendan",
"title":"TEST VIDEO",
"upload_time":"1431602832",
"updated_at":"1431696928",
"made_public_time":"1431602832",
"length":"135",
"description":"",
"age_limit":"",
"url":"http://www.viddler.com/v/aecfca57",
"thumbnail_url":"http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg",
"thumbnail_version":"v1",
"permalink":"http://www.viddler.com/v/aecfca57",
"html5_video_source":"http://www.viddler.com/file/aecfca57/html5",
"view_count":"16",
"impression_count":"47",
"favorite":"0",
"comment_count":"2",
"comments":[
{
"id":"718202534920d7ed",
"type":"text",
"author":"vt_brendan",
"custom_user_identifier":"",
"rating":"0",
"replies_count":"0",
"text":"PHP!",
"add_time":"1432052077",
"comments_moderation":{
"status":"1",
"obscenity_filter":""
}
},
{
"id":"718202534920d1ed",
"type":"text",
"author":"vt_brendan",
"custom_user_identifier":"",
"rating":"0",
"replies_count":"0",
"text":"TEST API COMMENT",
"add_time":"1432051750",
"comments_moderation":{
"status":"1",
"obscenity_filter":""
}
}
],
"password_protection":"0",
"thumbnails_count":"11",
"thumbnail_index":"0",
"permissions":{
"view":{
"level":"public"
},
"embed":{
"level":"private"
},
"tagging":{
"level":"private"
},
"commenting":{
"level":"private"
},
"download":{
"level":"private"
}
},
"comments_moderation":{
"level":"",
"to_review":"0"
},
"player_type":{
"player_type_id":"0",
"player_type":"arpeggio",
"comments_enabled":"1"
},
"display_aspect_ratio":"2.39:1"
}
}
http://api.viddler.com/api/v2/viddler.videos.comments.add.json?video_id=aecfca57&text=This is a test comment&api_key=API_KEY&sessionid=19831741416f715a21544f4d4b1ec
{
"video": {
"id": "aecfca57",
"status": "ready",
"author": "vt_brendan",
"title": "TEST VIDEO",
"upload_time": "1431602832",
"updated_at": "1432310935",
"made_public_time": "1431602832",
"length": "135",
"description": "",
"age_limit": "",
"url": "http://www.viddler.com/v/aecfca57",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v3.jpg",
"thumbnail_version": "v3",
"permalink": "http://www.viddler.com/v/aecfca57",
"html5_video_source": "http://www.viddler.com/file/aecfca57/html5",
"view_count": "91",
"impression_count": "335",
"favorite": "0",
"comment_count": "6",
"comments": [
{
"id": "7182035c4929dbed",
"type": "text",
"author": "vt_brendan",
"custom_user_identifier": "",
"rating": "0",
"replies_count": "0",
"text": "This is a test comment",
"add_time": "1433518865",
"comments_moderation": {
"status": "1",
"obscenity_filter": ""
}
},
{
"id": "718203584327d5ed",
"type": "text",
"author": "vt_brendan",
"custom_user_identifier": "",
"rating": "0",
"replies_count": "0",
"text": "Your comment",
"add_time": "1432659337",
"comments_moderation": {
"status": "1",
"obscenity_filter": ""
}
},
{
"id": "718203584327d7ed",
"type": "text",
"author": "vt_brendan",
"custom_user_identifier": "",
"rating": "0",
"replies_count": "0",
"text": "comment",
"add_time": "1432659231",
"comments_moderation": {
"status": "1",
"obscenity_filter": ""
}
},
{
"id": "718203584327d1ed",
"type": "text",
"author": "vt_brendan",
"custom_user_identifier": "",
"rating": "0",
"replies_count": "0",
"text": "TEST 3",
"add_time": "1432659180",
"add_timepoint": "101000",
"comments_moderation": {
"status": "1",
"obscenity_filter": ""
}
},
{
"id": "718203584327d3ed",
"type": "text",
"author": "vt_brendan",
"custom_user_identifier": "",
"rating": "0",
"replies_count": "0",
"text": "TEST 2",
"add_time": "1432659170",
"add_timepoint": "50000",
"comments_moderation": {
"status": "1",
"obscenity_filter": ""
}
},
{
"id": "718203584324dbed",
"type": "text",
"author": "vt_brendan",
"custom_user_identifier": "",
"rating": "0",
"replies_count": "0",
"text": "TEST 1",
"add_time": "1432659163",
"add_timepoint": "22000",
"comments_moderation": {
"status": "1",
"obscenity_filter": ""
}
}
],
"password_protection": "0",
"thumbnails_count": "11",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "public"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "public"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"player_type": {
"player_type_id": "0",
"player_type": "arpeggio",
"comments_enabled": "1"
},
"display_aspect_ratio": "2.39:1"
}
}
Method Type: POST
Adds a comment to a video, either in a general thread (as shown below the video on viddler.com or the arpeggio comments widget) or a timed comment (as shown inside the player).
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
text
- string (4096 byte maximum); Required -
timepoint
- integer; Optional | the location from start in seconds. This will place a timed comment in the player itself.
viddler.videos.comments.addWithDetails
api.staging.xand.viddler.com/api/v2/viddler.videos.comments.addWithDetails.xml?key=API KEY&video_id=d0b0d3e2&sessionid=14a3c414e215c52f14252454e44414e22d&text=Foo&custom_user_identifier=FooFoo
<?xml version="1.0" encoding="UTF-8"?>
<comment>
<id>718b035d7515e7e8</id>
<type>text</type>
<author>brendan</author>
<custom_user_identifier>FooFoo</custom_user_identifier>
<rating>0</rating>
<replies_count>0</replies_count>
<text>Foo</text>
<add_time>1435078905</add_time>
<comments_moderation>
<status>0</status>
<obscenity_filter></obscenity_filter>
</comments_moderation>
</comment>
api.staging.xand.viddler.com/api/v2/viddler.videos.comments.addWithDetails.php?key=API KEY&video_id=d0b0d3e2&sessionid=14a3c414e215c52f14252454e44414e22d&text=Foo&custom_user_identifier=FooFoo
a:1:
{
s:7:"comment";
a:9:
{ s:2:"id";
s:16:"718b03527515e7e8";
s:4:"type";s:4:"text";
s:6:"author";
s:7:"brendan";
s:22:"custom_user_identifier";
s:6:"FooFoo";
s:6:"rating";
i:0;
s:13:"replies_count";
i:0;
s:4:"text";
s:3:"Foo";
s:8:"add_time";
s:10:"1435078986";
s:19:"comments_moderation";
a:2:{s:6:"status";i:0;s:16:"obscenity_filter";s:0:"";}
}
}
api.staging.xand.viddler.com/api/v2/viddler.videos.comments.addWithDetails.json?key=API KEY&video_id=d0b0d3e2&sessionid=14a3c414e215c52f14252454e44414e22d&text=Foo&custom_user_identifier=FooFoo
{
"comment": {
"id": "718b035c7515e7e8",
"type": "text",
"author": "brendan",
"custom_user_identifier": "FooFoo",
"rating": "0",
"replies_count": "0",
"text": "Foo",
"add_time": "1435078803",
"comments_moderation": {
"status": "0",
"obscenity_filter": ""
}
}
}
Method Type: POST
Adds a comment to a video, either in a general thread (as shown below the video on viddler.com or the arpeggio comments widget) or a timed comment (as shown inside the player). This differs from the videos.comments.add
method by providing detailed information about the comment just created.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
text
- string (4096 byte maximum); Required -
timepoint
- integer; Optional | the location from start in seconds. This will place a timed comment in the player itself. -
custom_user_identifier
- string; Optional
viddler.videos.comments.delete
http://api.viddler.com/api/v2/viddler.videos.comments.delete.xml?sessionid=26f320414d6d01d40656543f4252454e44414e32e&key=API_KEY&sessionid=26f320414d6d01d40656543f4252454e44414e32e&comment_id=718202534920d7ed
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<comments>
<comment>
<id>718202534920d1ed</id>
<type>text</type>
<author>vt_brendan</author>
<custom_user_identifier/>
<rating>0</rating>
<replies_count>0</replies_count>
<text>TEST API COMMENT</text>
<add_time>1432051750</add_time>
<comments_moderation>
<status>1</status>
<obscenity_filter>
</obscenity_filter>
</comments_moderation>
</comment>
</comments>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
</video>
http://api.viddler.com/api/v2/viddler.videos.comments.delete.php?sessionid=26f320414d6d01d40656543f4252454e44414e32e&key=API_KEY&sessionid=26f320414d6d01d40656543f4252454e44414e32e&comment_id=718202534920d5ed
Array
(
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 2
[comments] => Array
(
[0] => Array
(
[id] => 718202534920d7ed
[type] => text
[author] => vt_brendan
[custom_user_identifier] =>
[rating] => 0
[replies_count] => 0
[text] => PHP!
[add_time] => 1432052077
[comments_moderation] => Array
(
[status] => 1
[obscenity_filter] =>
)
)
[1] => Array
(
[id] => 718202534920d1ed
[type] => text
[author] => vt_brendan
[custom_user_identifier] =>
[rating] => 0
[replies_count] => 0
[text] => TEST API COMMENT
[add_time] => 1432051750
[comments_moderation] => Array
(
[status] => 1
[obscenity_filter] =>
)
)
)
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
)
)
http://api.viddler.com/api/v2/viddler.videos.comments.delete.json?comment_id=72860d5e4122d7ed&api_key=API_KEY&sessionid=368316c1416f7a58fc544f4d4b13b
{
"video": {
"id": "51271da7",
"status": "ready",
"author": "tomk",
"title": "Test Video",
"upload_time": "1378828001",
"made_public_time": "1378828001",
"length": "10",
"description": "",
"age_limit": "",
"url": "http://www.viddler.com/v/51271da7",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_51271da7_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.example.com/video1.html",
"html5_video_source": "http://www.viddler.com/file/51271da7/html5",
"view_count": "0",
"impression_count": "1",
"favorite": "0",
"comment_count": "3",
"comments": [
{
"id": "72860d5e4122d1ed",
"type": "text",
"author": "tomk",
"rating": "0",
"replies_count": "0",
"text": "Hello World!",
"add_time": "1380554399",
"comments_moderation": {
"status": "1",
"obscenity_filter": "hell"
}
}
],
"password_protection": "0",
"thumbnails_count": "2",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9"
}
}
Method Type: POST
Removes a comment.
Important: This cannot be undone.
Parameters
-
sessionid
- string; Required -
comment_id
- string; Required |comment_id
can be obtained byviddler.videos.comments.get
.
viddler.videos.delete
http://api.viddler.com/api/v2/viddler.videos.delete.xml?sessionid=26f320414d6d01d40656543f4252454e44414e32e&key=API_KEY&sessionid=26f320414d6d01d40656543f4252454e44414e32e&video_id=166913e0
<?xml version="1.0" encoding="UTF-8"?>
<success/>
http://api.viddler.com/api/v2/viddler.videos.delete.php?sessionid=26f320414d6d01d40656543f4252454e44414e32e&key=API_KEY&sessionid=26f320414d6d01d40656543f4252454e44414e32e&video_id=15342c1b
Array
(
[success] => Array
(
)
)
http://api.viddler.com/api/v2/viddler.videos.delete.json?video_id=e5ba8159&api_key=API_KEY&sessionid=2cf37a141085f4a74544f4d4b361
{
"success": {
}
}
Method Type: POST
Deletes a video by adding it to the global delete queue.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required
viddler.videos.delFile
http://api.viddler.com/api/v2/viddler.videos.delFile.xml?sessionid=26f320414d6d01d40656543f4252454e44414e32e&key=API_KEY&sessionid=26f320414d6d01d40656543f4252454e44414e32e&video_id=aecfca57&file_id=778002534022d6dc3e238df908656562
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
</video>
http://api.viddler.com/api/v2/viddler.videos.delFile.php?sessionid=26f320414d6d01d40656543f4252454e44414e32e&key=API_KEY&sessionid=26f320414d6d01d40656543f4252454e44414e32e&video_id=aecfca57&file_id=778002534022d7d41b1bf41797fb1144
Array
(
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
)
)
http://api.viddler.com/api/v2/viddler.videos.delFile.json?file_id=718500584129d2d4cd734f31eb65ef40&api_key=API_KEY&sessionid=ce314c141088e5276544f4d4b391
{
"video": {
"id": "51271da7",
"status": "ready",
"author": "tomk",
"title": "Test Video",
"upload_time": "1378828001",
"made_public_time": "1378828001"
}
}
Method Type: POST
Deletes a specific video file (just the 3GP version, for example) for a particular video. The file_id parameter can be found from viddler.videos.getDetails
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
file_id
- string; Required
viddler.videos.deleteQueue.add
https://api.viddler.com/api/v2/viddler.videos.deleteQueue.add.json?key=API_KEY&sessionid=SESSION_ID&video_ids=912d2e4,b0631c05&dry_run=true
{
"list_result": {
"page": "1",
"per_page": "10",
"video_list": [
{
"id": "912d2e4",
"status": "ready",
"author": "username",
"title": "video title",
"upload_time": "1470827102",
"updated_at": "1471368670",
"made_public_time": "1470827103",
"length": "99",
"description": "",
"age_limit": "",
"url": "http://www.viddler.com/v/912d2e4",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_912d2e4_v2.jpg",
"thumbnail_version": "v2",
"permalink": "http://www.viddler.com/v/912d2e4",
"html5_video_source": "http://www.viddler.com/file/912d2e4/html5",
"view_count": "1",
"impression_count": "2",
"favorite": "0",
"comment_count": "0",
"password_protection": "1",
"thumbnails_count": "11",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "public"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "public"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"player_type": {
"player_type_id": "0",
"player_type": "arpeggio",
"comments_enabled": "1"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "778b05534326d5d8fdcdaf9042367af8",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1920",
"height": "1080",
"size": "34175220",
"url": "http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d5d8fdcdaf9042367af8",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "off",
"profile_id": "",
"profile_name": "Source",
"created_at": "1470827103",
"status_update_at": "1470827103"
},
{
"id": "778b05534326d5d46dd672fea7e8aa18",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "10424011",
"url": "http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d5d46dd672fea7e8aa18",
"html5_video_source": "http://www.viddler.com/file/912d2e4/778b05534326d5d46dd672fea7e8aa18",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1470827103",
"status_update_at": "1470827228"
},
{
"id": "778b05534326d4dc2700c8599c34984c",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "854",
"height": "480",
"size": "10817740",
"url": "http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d4dc2700c8599c34984c",
"html5_video_source": "http://www.viddler.com/file/912d2e4/778b05534326d4dc2700c8599c34984c",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1470827103",
"status_update_at": "1470827243"
},
{
"id": "778b05534326d4de2c3b6b76f2d0a5aa",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1280",
"height": "720",
"size": "19817439",
"url": "http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d4de2c3b6b76f2d0a5aa",
"html5_video_source": "http://www.viddler.com/file/912d2e4/778b05534326d4de2c3b6b76f2d0a5aa",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "na",
"ipad": "on",
"itunes": "on",
"profile_id": "4",
"profile_name": "720p",
"created_at": "1470827103",
"status_update_at": "1470827303"
},
{
"id": "778b05534326d4d875dc0d471dbb148d",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1920",
"height": "1080",
"size": "25819173",
"url": "http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d4d875dc0d471dbb148d",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "7",
"profile_name": "1080p",
"created_at": "1470827103",
"status_update_at": "1470827453"
},
{
"id": "778b05534326d4dac52baad492be4798",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "320",
"height": "180",
"size": "1908909",
"url": "http://www.viddler.com/file/d/912d2e4.3gp?vfid=778b05534326d4dac52baad492be4798",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1470827103",
"status_update_at": "1470827154"
}
],
"closed_captioning_list": []
},
{
"id": "b0631c05",
"status": "ready",
"author": "username",
"title": "video title",
"upload_time": "1470827189",
"updated_at": "1470827267",
"made_public_time": "1470827189",
"length": "149",
"description": " ",
"age_limit": "",
"url": "http://www.viddler.com/v/b0631c05",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_b0631c05_v2.jpg",
"thumbnail_version": "v2",
"permalink": "http://www.viddler.com/v/b0631c05",
"html5_video_source": "http://www.viddler.com/file/b0631c05/html5",
"view_count": "0",
"impression_count": "0",
"favorite": "0",
"comment_count": "0",
"password_protection": "0",
"thumbnails_count": "11",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "public"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "public"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"player_type": {
"player_type_id": "0",
"player_type": "arpeggio",
"comments_enabled": "1"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "778b05534326dbd8bded2501bd8e3109",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1920",
"height": "1080",
"size": "73860490",
"url": "http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dbd8bded2501bd8e3109",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "off",
"iphone": "na",
"ipad": "na",
"itunes": "off",
"profile_id": "",
"profile_name": "Source",
"created_at": "1470827189",
"status_update_at": "1470827189"
},
{
"id": "778b05534326dbd4dbc475e742af3bd2",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "16600598",
"url": "http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dbd4dbc475e742af3bd2",
"html5_video_source": "http://www.viddler.com/file/b0631c05/778b05534326dbd4dbc475e742af3bd2",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1470827189",
"status_update_at": "1470827267"
},
{
"id": "778b05534326dadc92da17a5e05fb119",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "854",
"height": "480",
"size": "17265137",
"url": "http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dadc92da17a5e05fb119",
"html5_video_source": "http://www.viddler.com/file/b0631c05/778b05534326dadc92da17a5e05fb119",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1470827189",
"status_update_at": "1470827379"
},
{
"id": "778b05534326dade524a9746a8987e4a",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1280",
"height": "720",
"size": "31727472",
"url": "http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dade524a9746a8987e4a",
"html5_video_source": "http://www.viddler.com/file/b0631c05/778b05534326dade524a9746a8987e4a",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "na",
"ipad": "on",
"itunes": "on",
"profile_id": "4",
"profile_name": "720p",
"created_at": "1470827189",
"status_update_at": "1470827454"
},
{
"id": "778b05534326dad83919041d3949592d",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "1920",
"height": "1080",
"size": "41847809",
"url": "http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dad83919041d3949592d",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "7",
"profile_name": "1080p",
"created_at": "1470827189",
"status_update_at": "1470827403"
},
{
"id": "778b05534326dada97e22f8fa62969d9",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "320",
"height": "180",
"size": "3005684",
"url": "http://www.viddler.com/file/d/b0631c05.3gp?vfid=778b05534326dada97e22f8fa62969d9",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1470827189",
"status_update_at": "1470827234"
}
],
"closed_captioning_list": []
}
]
}
}
OR
https://api.viddler.com/api/v2/viddler.videos.deleteQueue.add.json?key=API_KEY&sessionid=SESSION_ID&video_ids=912d2e4,b0631c05&dry_run=false
{
"success": {}
}
OR
http://api.viddler.com/v2/viddler.videos.deleteQueue.add.json?dry_run=false&min_upload_date=2010-01-01&max_upload_date=2014-12-12
https://api.viddler.com/api/v2/viddler.videos.deleteQueue.add.json?key=API_KEY&sessionid=SESSION_ID&video_ids=912d2e4,b0631c05&dry_run=true
<?xml version="1.0" encoding="UTF-8" ?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<video_list>
<id>912d2e4</id>
<status>ready</status>
<author>username</author>
<title>video title</title>
<upload_time>1470827102</upload_time>
<updated_at>1471368670</updated_at>
<made_public_time>1470827103</made_public_time>
<length>99</length>
<description></description>
<age_limit></age_limit>
<url>http://www.viddler.com/v/912d2e4</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_912d2e4_v2.jpg</thumbnail_url>
<thumbnail_version>v2</thumbnail_version>
<permalink>http://www.viddler.com/v/912d2e4</permalink>
<html5_video_source>http://www.viddler.com/file/912d2e4/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>2</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>1</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>public</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>public</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level></level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>16:9</display_aspect_ratio>
<files>
<id>778b05534326d5d8fdcdaf9042367af8</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>1080</height>
<size>34175220</size>
<url>http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d5d8fdcdaf9042367af8</url>
<html5_video_source></html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>1</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id></profile_id>
<profile_name>Source</profile_name>
<created_at>1470827103</created_at>
<status_update_at>1470827103</status_update_at>
</files>
<files>
<id>778b05534326d5d46dd672fea7e8aa18</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>360</height>
<size>10424011</size>
<url>http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d5d46dd672fea7e8aa18</url>
<html5_video_source>http://www.viddler.com/file/912d2e4/778b05534326d5d46dd672fea7e8aa18</html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1470827103</created_at>
<status_update_at>1470827228</status_update_at>
</files>
<files>
<id>778b05534326d4dc2700c8599c34984c</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>480</height>
<size>10817740</size>
<url>http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d4dc2700c8599c34984c</url>
<html5_video_source>http://www.viddler.com/file/912d2e4/778b05534326d4dc2700c8599c34984c</html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1470827103</created_at>
<status_update_at>1470827243</status_update_at>
</files>
<files>
<id>778b05534326d4de2c3b6b76f2d0a5aa</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>720</height>
<size>19817439</size>
<url>http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d4de2c3b6b76f2d0a5aa</url>
<html5_video_source>http://www.viddler.com/file/912d2e4/778b05534326d4de2c3b6b76f2d0a5aa</html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1470827103</created_at>
<status_update_at>1470827303</status_update_at>
</files>
<files>
<id>778b05534326d4d875dc0d471dbb148d</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>1080</height>
<size>25819173</size>
<url>http://www.viddler.com/file/d/912d2e4.mp4?vfid=778b05534326d4d875dc0d471dbb148d</url>
<html5_video_source></html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1470827103</created_at>
<status_update_at>1470827453</status_update_at>
</files>
<files>
<id>778b05534326d4dac52baad492be4798</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>180</height>
<size>1908909</size>
<url>http://www.viddler.com/file/d/912d2e4.3gp?vfid=778b05534326d4dac52baad492be4798</url>
<html5_video_source></html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1470827103</created_at>
<status_update_at>1470827154</status_update_at>
</files>
</video_list>
<video_list>
<id>b0631c05</id>
<status>ready</status>
<author>username</author>
<title>video title</title>
<upload_time>1470827189</upload_time>
<updated_at>1470827267</updated_at>
<made_public_time>1470827189</made_public_time>
<length>149</length>
<description> </description>
<age_limit></age_limit>
<url>http://www.viddler.com/v/b0631c05</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_b0631c05_v2.jpg</thumbnail_url>
<thumbnail_version>v2</thumbnail_version>
<permalink>http://www.viddler.com/v/b0631c05</permalink>
<html5_video_source>http://www.viddler.com/file/b0631c05/html5</html5_video_source>
<view_count>0</view_count>
<impression_count>0</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>public</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>public</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level></level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>16:9</display_aspect_ratio>
<files>
<id>778b05534326dbd8bded2501bd8e3109</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>1080</height>
<size>73860490</size>
<url>http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dbd8bded2501bd8e3109</url>
<html5_video_source></html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id></profile_id>
<profile_name>Source</profile_name>
<created_at>1470827189</created_at>
<status_update_at>1470827189</status_update_at>
</files>
<files>
<id>778b05534326dbd4dbc475e742af3bd2</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>360</height>
<size>16600598</size>
<url>http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dbd4dbc475e742af3bd2</url>
<html5_video_source>http://www.viddler.com/file/b0631c05/778b05534326dbd4dbc475e742af3bd2</html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1470827189</created_at>
<status_update_at>1470827267</status_update_at>
</files>
<files>
<id>778b05534326dadc92da17a5e05fb119</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>480</height>
<size>17265137</size>
<url>http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dadc92da17a5e05fb119</url>
<html5_video_source>http://www.viddler.com/file/b0631c05/778b05534326dadc92da17a5e05fb119</html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1470827189</created_at>
<status_update_at>1470827379</status_update_at>
</files>
<files>
<id>778b05534326dade524a9746a8987e4a</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>720</height>
<size>31727472</size>
<url>http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dade524a9746a8987e4a</url>
<html5_video_source>http://www.viddler.com/file/b0631c05/778b05534326dade524a9746a8987e4a</html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1470827189</created_at>
<status_update_at>1470827454</status_update_at>
</files>
<files>
<id>778b05534326dad83919041d3949592d</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>1080</height>
<size>41847809</size>
<url>http://www.viddler.com/file/d/b0631c05.mp4?vfid=778b05534326dad83919041d3949592d</url>
<html5_video_source></html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1470827189</created_at>
<status_update_at>1470827403</status_update_at>
</files>
<files>
<id>778b05534326dada97e22f8fa62969d9</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>180</height>
<size>3005684</size>
<url>http://www.viddler.com/file/d/b0631c05.3gp?vfid=778b05534326dada97e22f8fa62969d9</url>
<html5_video_source></html5_video_source>
<display_aspect_ratio>16:9</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1470827189</created_at>
<status_update_at>1470827234</status_update_at>
</files>
</video_list>
</list_result>
OR
https://api.viddler.com/api/v2/viddler.videos.deleteQueue.add.json?key=API_KEY&sessionid=SESSION_ID&video_ids=912d2e4,b0631c05&dry_run=false
<?xml version="1.0" encoding="UTF-8" ?>
<success />
Method Type: POST
Adds video to a "deletion queue" - This is particularly useful for scripting and mass cleanup of your video content. By default, the dry_run
parameter is set to true
by default to allow for non-destructive testing.
Parameters
The viddler.videos.deleteQueue.add method can accept either of the following set of parameters:
-
dry_run
- boolean; Optional | Set tofalse
to commit changes. This is useful for fine-tuning the deletion rule. Defaulttrue
. -
video_ids
- integer; Optional | Accepts a comma separated list of video ids(Max 100) that will be scheduled for deletion.
OR
-
dry_run
- boolean; Optional | Set tofalse
to commit changes. This is useful for fine-tuning the deletion rule. Defaulttrue
. -
tags
- string; Optional | Rule parameter. Match all videos that contain the specified tags (comma-separated). -
min_views
- integer; Optional | Rule parameter. Returns videos with views greater than or equal to the specified value. -
max_views
- integer; Optional | Rule parameter. Returns videos with views less than or equal to the specified value. -
min_upload_date
- date (yyyy-mm-dd
); Optional | Rule parameter. Returns videos uploaded including and after the date provided. -
max_upload_date
- date (yyyy-mm-dd
); Optional | Rule parameter. Returns videos uploaded before and including the date provided.
viddler.videos.deleteQueue.get
http://api.viddler.com/v2/viddler.videos.deleteQueue.get
{
"delete_rules": {
"id: 1": [
{
"status": "CANCEL",
"description": "API_DELETE_SHALLOW",
"ip": "127.0.0.1",
"rules": {
"min_upload_date": "2010-01-01",
"max_upload_date": "2014-11-01"
}
}
],
"id: 3": [
{
"status": "CANCEL",
"description": "API_DELETE_SHALLOW",
"ip": "127.0.0.1",
"rules": {
"min_upload_date": "2010-01-01",
"max_upload_date": "2014-11-01"
}
}
],
"id: 4": [
{
"status": "DONE",
"description": "API_DELETE_SHALLOW",
"ip": "127.0.0.1",
"rules": {
"min_upload_date": "2010-01-01",
"max_upload_date": "2014-12-12"
}
}
],
"id: 8": [
{
"status": "DONE",
"description": "API_DELETE_SHALLOW",
"ip": "127.0.0.1",
"rules": {
"min_upload_date": "2010-01-01",
"max_upload_date": "2014-12-12"
}
}
],
"id: 11": [
{
"status": "DONE",
"description": "API_DELETE_SHALLOW",
"ip": "127.0.0.1",
"rules": {
"min_upload_date": "2010-01-01",
"max_upload_date": "2014-12-12"
}
}
]
}
}
Method Type: GET
Returns the list of delete_rules which includes the status , description , ip , and rules associated with each delete_rule. A delete_rule gets added to the user's list whenever the user calls viddler.videos.deleteQueue.add successfully.
Parameters
(none)
viddler.videos.getByTag
http://api.viddler.com/api/v2/viddler.videos.getByTag.xml?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188&tag=sample
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>2</total>
<sort>uploaded-desc</sort>
<video_list>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<tags>
<tag>
<type>global</type>
<text>sample</text>
</tag>
<tag>
<type>global</type>
<text>test</text>
</tag>
</tags>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
</video>
<video>
<id>64955777</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Star Trek Into Darkness</title>
<upload_time>1431355069</upload_time>
<updated_at>1431969477</updated_at>
<made_public_time>1431355069</made_public_time>
<length>139</length>
<description>Updated_Description</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/64955777</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/64955777</permalink>
<html5_video_source>http://www.viddler.com/file/64955777/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>31</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<tags>
<tag>
<type>global</type>
<text>test</text>
</tag>
<tag>
<type>global</type>
<text>sample</text>
</tag>
</tags>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
</video>
</video_list>
</list_result>
http://api.viddler.com/api/v2/viddler.videos.getByTag.php?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188&tag=sample
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 2
[sort] => uploaded-desc
[video_list] => Array
(
[0] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 1
[tags] => Array
(
[0] => Array
(
[type] => global
[text] => sample
)
[1] => Array
(
[type] => global
[text] => test
)
)
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
)
[1] => Array
(
[id] => 64955777
[status] => ready
[author] => vt_brendan
[title] => Star Trek Into Darkness
[upload_time] => 1431355069
[updated_at] => 1431969477
[made_public_time] => 1431355069
[length] => 139
[description] => Updated_Description
[age_limit] =>
[url] => http://www.viddler.com/v/64955777
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/64955777
[html5_video_source] => http://www.viddler.com/file/64955777/html5
[view_count] => 1
[impression_count] => 31
[favorite] => 0
[comment_count] => 0
[tags] => Array
(
[0] => Array
(
[type] => global
[text] => test
)
[1] => Array
(
[type] => global
[text] => sample
)
)
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.getByTag.json?tag=test&api_key=API_KEY&sessionid=a733e31413ba55d91544f4d4b396
{
"list_result": {
"page": "1",
"per_page": "10",
"total": "2",
"sort": "uploaded-desc",
"video_list": [
{
"id": "47ca099e",
"status": "ready",
"author": "tomk",
"title": "Test Title",
"upload_time": "1337914972",
"made_public_time": "1337914972",
"length": "95",
"description": "Testing using a textarea for the description. should be fun! ",
"age_limit": "",
"url": "http://www.viddler.com/v/47ca099e",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_47ca099e_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.viddler.com/v/47ca099e",
"html5_video_source": "http://www.viddler.com/file/47ca099e/html5",
"view_count": "3",
"impression_count": "4",
"favorite": "0",
"comment_count": "0",
"tags": [
{
"type": "global",
"text": "newform"
},
{
"type": "global",
"text": "giddy"
},
{
"type": "global",
"text": "test"
}
],
"password_protection": "0",
"thumbnails_count": "11",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "4:3"
},
]
}
}
Method Type: GET
Returns a list of videos that have the specified tag(s)
Parameters
-
sessionid
- string; Required -
tag
- string; ''Required' -
page
- integer; Optional | Default1
-
per_page
- integer; Optional | Default10
. Max100
-
sort
- string; Optional | Sort Options:title-dec
(Alphabetical A-Z),title-asc
(Alphabetical Z-A),uploaded-desc
(most recent videos first),uploaded-asc
(oldest videos first),views-desc
(most views first),views-asc
(least views first). Defaults touploaded-desc
.
viddler.videos.getByUser
http://api.viddler.com/api/v2/viddler.videos.getByUser.xml?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188&user=vt_brendan
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<total>2</total>
<sort>uploaded-desc</sort>
<video_list>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1432053765</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
</video>
<video>
<id>64955777</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Star Trek Into Darkness</title>
<upload_time>1431355069</upload_time>
<updated_at>1431969477</updated_at>
<made_public_time>1431355069</made_public_time>
<length>139</length>
<description>Updated_Description</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/64955777</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/64955777</permalink>
<html5_video_source>http://www.viddler.com/file/64955777/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>31</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>7780025e4525d6deb57dc72383a0d8d7</id>
<status>ready</status>
<ext>mov</ext>
<type>video/quicktime</type>
<width>1920</width>
<height>800</height>
<size>169896043</size>
<url>http://www.viddler.com/file/d/64955777.mov?vfid=7780025e4525d6deb57dc72383a0d8d7</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355069</status_update_at>
</file>
<file>
<id>7780025e4525d6dadc2f0bd3178f2615</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>266</height>
<size>8354234</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6dadc2f0bd3178f2615</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d6dadc2f0bd3178f2615</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355176</status_update_at>
</file>
<file>
<id>7780025e4525d6d4d05da6a66e34f2c2</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>355</height>
<size>16062603</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6d4d05da6a66e34f2c2</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d6d4d05da6a66e34f2c2</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355206</status_update_at>
</file>
<file>
<id>7780025e4525d5dc0b3c8e5bc033e0d3</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>533</height>
<size>29175378</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5dc0b3c8e5bc033e0d3</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d5dc0b3c8e5bc033e0d3</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355178</status_update_at>
</file>
<file>
<id>7780025e4525d5deee591b7457fdd2de</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>800</height>
<size>37979937</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5deee591b7457fdd2de</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355432</status_update_at>
</file>
<file>
<id>7780025e4525d5d859b1390d281488d3</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2604407</size>
<url>http://www.viddler.com/file/d/64955777.3gp?vfid=7780025e4525d5d859b1390d281488d3</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355119</status_update_at>
</file>
<file>
<id>7780025e4525d5dad32bd7de2697c172</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>355</height>
<size>15796091</size>
<url>http://www.viddler.com/file/d/64955777.webm?vfid=7780025e4525d5dad32bd7de2697c172</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355178</status_update_at>
</file>
</files>
<closed_captioning_list/>
</video>
</video_list>
</list_result>
http://api.viddler.com/api/v2/viddler.videos.getByUser.php?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188&user=vt_brendan
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[total] => 2
[sort] => uploaded-desc
[video_list] => Array
(
[0] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 1
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1432053765
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
)
[1] => Array
(
[id] => 64955777
[status] => ready
[author] => vt_brendan
[title] => Star Trek Into Darkness
[upload_time] => 1431355069
[updated_at] => 1431969477
[made_public_time] => 1431355069
[length] => 139
[description] => Updated_Description
[age_limit] =>
[url] => http://www.viddler.com/v/64955777
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/64955777
[html5_video_source] => http://www.viddler.com/file/64955777/html5
[view_count] => 1
[impression_count] => 31
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 7780025e4525d6deb57dc72383a0d8d7
[status] => ready
[ext] => mov
[type] => video/quicktime
[width] => 1920
[height] => 800
[size] => 169896043
[url] => http://www.viddler.com/file/d/64955777.mov?vfid=7780025e4525d6deb57dc72383a0d8d7
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431355069
[status_update_at] => 1431355069
)
[1] => Array
(
[id] => 7780025e4525d6dadc2f0bd3178f2615
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 266
[size] => 8354234
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6dadc2f0bd3178f2615
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6dadc2f0bd3178f2615
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431355069
[status_update_at] => 1431355176
)
[2] => Array
(
[id] => 7780025e4525d6d4d05da6a66e34f2c2
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 355
[size] => 16062603
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6d4d05da6a66e34f2c2
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6d4d05da6a66e34f2c2
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431355069
[status_update_at] => 1431355206
)
[3] => Array
(
[id] => 7780025e4525d5dc0b3c8e5bc033e0d3
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 533
[size] => 29175378
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5dc0b3c8e5bc033e0d3
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d5dc0b3c8e5bc033e0d3
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431355069
[status_update_at] => 1431355178
)
[4] => Array
(
[id] => 7780025e4525d5deee591b7457fdd2de
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 800
[size] => 37979937
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5deee591b7457fdd2de
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431355069
[status_update_at] => 1431355432
)
[5] => Array
(
[id] => 7780025e4525d5d859b1390d281488d3
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2604407
[url] => http://www.viddler.com/file/d/64955777.3gp?vfid=7780025e4525d5d859b1390d281488d3
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431355069
[status_update_at] => 1431355119
)
[6] => Array
(
[id] => 7780025e4525d5dad32bd7de2697c172
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 355
[size] => 15796091
[url] => http://www.viddler.com/file/d/64955777.webm?vfid=7780025e4525d5dad32bd7de2697c172
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431355069
[status_update_at] => 1431355178
)
)
[closed_captioning_list] => Array
(
)
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.getByUser.json?user=tomk&api_key=API_KEY&sessionid=218313814113c00d0a544f4d4b317
{
"list_result": {
"page": "1",
"per_page": "10",
"total": "1",
"sort": "uploaded-desc",
"video_list": [
{
"id": "e6b889fb",
"status": "ready",
"author": "tomk",
"title": "tomk 09 10, 2013 Recorded video",
"upload_time": "1378833005",
"made_public_time": "1378833005",
"length": "6",
"description": " ",
"age_limit": "",
"url": "http://www.viddler.com/v/e6b889fb",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_e6b889fb_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.viddler.com/v/e6b889fb",
"html5_video_source": "http://www.viddler.com/file/e6b889fb/html5",
"view_count": "0",
"impression_count": "0",
"favorite": "0",
"comment_count": "0",
"password_protection": "0",
"thumbnails_count": "1",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "4:3",
"files": [
{
"id": "718500584328d2d83c162bed7218ecfc",
"status": "ready",
"ext": "flv",
"type": "video/x-flv",
"width": "545",
"height": "408",
"size": "687313",
"url": "http://www.viddler.com/file/d/e6b889fb.flv?vfid=718500584328d2d83c162bed7218ecfc",
"html5_video_source": "",
"display_aspect_ratio": "4:3",
"source": "1",
"flash": "on",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "",
"profile_name": "Source",
"created_at": "1378833005",
"status_update_at": "1378833005"
},
{
"id": "718500584328d2d4aa3008ff31c4d965",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "480",
"height": "360",
"size": "389758",
"url": "http://www.viddler.com/file/d/e6b889fb.mp4?vfid=718500584328d2d4aa3008ff31c4d965",
"html5_video_source": "http://www.viddler.com/file/e6b889fb/718500584328d2d4aa3008ff31c4d965",
"display_aspect_ratio": "4:3",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1378833005",
"status_update_at": "1378833021"
},
{
"id": "718500584328d1dcf6f6c175c8866ca4",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "240",
"height": "180",
"size": "81854",
"url": "http://www.viddler.com/file/d/e6b889fb.3gp?vfid=718500584328d1dcf6f6c175c8866ca4",
"html5_video_source": "",
"display_aspect_ratio": "4:3",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1378833005",
"status_update_at": "1378833032"
},
{
"id": "718500584328d1de49f1ac84ab3e83cf",
"status": "ready",
"ext": "webm",
"type": "video/webm",
"width": "544",
"height": "408",
"size": "434046",
"url": "http://www.viddler.com/file/d/e6b889fb.webm?vfid=718500584328d1de49f1ac84ab3e83cf",
"html5_video_source": "",
"display_aspect_ratio": "4:3",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1378833005",
"status_update_at": "1378833032"
}
],
"closed_captioning_list": [
]
}
]
}
}
Method Type: GET
Returns a list of videos for a particular account. Will only return Public videos for accounts not owned by the authenticated account.
Parameters
-
sessionid
- string; Required -
user
- string; Required -
page
- integer; Optional | Default1
-
per_page
- integer; Optional | Default10
. Max100
-
status
- boolean; Optional -
sort
- string; Optional | Sort Options:title-dec
(Alphabetical A-Z),title-asc
(Alphabetical Z-A),uploaded-desc
(most recent videos first),uploaded-asc
(oldest videos first),views-desc
(most views first),views-asc
(least views first). Defaults touploaded-desc
. -
tags
- string; Optional | Comma separated list of tags used to filter the list to videos that include the specified tags. -
visibility
- string; Optional |visbility
can contain multiple privacy settings (Set up to list combination of Private and Invitation Only videos for example) separated by a comma. Valid options are:private
,public
,invite
(Invitation Only), andembed
(Domain Restricted)
viddler.videos.search
http://api.viddler.com/api/v2/viddler.videos.search.xml?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188&type=yourvideos&query=test
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<page>1</page>
<per_page>10</per_page>
<video_list>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1431696928</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>778002534022d7d8a3219515dcf98b88</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>57636989</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>off</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602832</status_update_at>
</file>
<file>
<id>778002534022d7d41b1bf41797fb1144</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>267</height>
<size>8061870</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1432053765</status_update_at>
</file>
<file>
<id>778002534022d6dc3e238df908656562</id>
<status>deleted</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>356</height>
<size>15448464</size>
<url>
</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431696519</status_update_at>
</file>
<file>
<id>778002534022d6de8b8298b61270da22</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>534</height>
<size>28148994</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22</url>
<html5_video_source>http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602983</status_update_at>
</file>
<file>
<id>778002534022d6d84180ac7a4b4f9fc9</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>802</height>
<size>37517291</size>
<url>http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431603074</status_update_at>
</file>
<file>
<id>778002534022d6dad5647237a5369b76</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602875</status_update_at>
</file>
<file>
<id>778002534022d6d45b06be25c077de52</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>356</height>
<size>14579865</size>
<url>http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431602832</created_at>
<status_update_at>1431602905</status_update_at>
</file>
<file>
<id>778003584325d6d8d96a2aeca223b462</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697139</created_at>
<status_update_at>1431697172</status_update_at>
</file>
<file>
<id>778003584325d4de13442cdc340cef80</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697177</created_at>
<status_update_at>1431697225</status_update_at>
</file>
<file>
<id>778003584325d4d81c2211108639d963</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2522224</size>
<url>http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431697206</created_at>
<status_update_at>1431697253</status_update_at>
</file>
</files>
<closed_captioning_list/>
</video>
<video>
<id>64955777</id>
<status>ready</status>
<author>vt_brendan</author>
<title>Star Trek Into Darkness</title>
<upload_time>1431355069</upload_time>
<updated_at>1431969477</updated_at>
<made_public_time>1431355069</made_public_time>
<length>139</length>
<description>Updated_Description</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/64955777</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg</thumbnail_url>
<thumbnail_version>v1</thumbnail_version>
<permalink>http://www.viddler.com/v/64955777</permalink>
<html5_video_source>http://www.viddler.com/file/64955777/html5</html5_video_source>
<view_count>1</view_count>
<impression_count>31</impression_count>
<favorite>0</favorite>
<comment_count>0</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<files>
<file>
<id>7780025e4525d6deb57dc72383a0d8d7</id>
<status>ready</status>
<ext>mov</ext>
<type>video/quicktime</type>
<width>1920</width>
<height>800</height>
<size>169896043</size>
<url>http://www.viddler.com/file/d/64955777.mov?vfid=7780025e4525d6deb57dc72383a0d8d7</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>1</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>off</itunes>
<profile_id/>
<profile_name>Source</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355069</status_update_at>
</file>
<file>
<id>7780025e4525d6dadc2f0bd3178f2615</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>640</width>
<height>266</height>
<size>8354234</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6dadc2f0bd3178f2615</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d6dadc2f0bd3178f2615</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>8</profile_id>
<profile_name>360p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355176</status_update_at>
</file>
<file>
<id>7780025e4525d6d4d05da6a66e34f2c2</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>854</width>
<height>355</height>
<size>16062603</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6d4d05da6a66e34f2c2</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d6d4d05da6a66e34f2c2</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>on</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>3</profile_id>
<profile_name>480p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355206</status_update_at>
</file>
<file>
<id>7780025e4525d5dc0b3c8e5bc033e0d3</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1280</width>
<height>533</height>
<size>29175378</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5dc0b3c8e5bc033e0d3</url>
<html5_video_source>http://www.viddler.com/file/64955777/7780025e4525d5dc0b3c8e5bc033e0d3</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>on</ipad>
<itunes>on</itunes>
<profile_id>4</profile_id>
<profile_name>720p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355178</status_update_at>
</file>
<file>
<id>7780025e4525d5deee591b7457fdd2de</id>
<status>ready</status>
<ext>mp4</ext>
<type>video/mp4</type>
<width>1920</width>
<height>800</height>
<size>37979937</size>
<url>http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5deee591b7457fdd2de</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>on</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>on</itunes>
<profile_id>7</profile_id>
<profile_name>1080p</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355432</status_update_at>
</file>
<file>
<id>7780025e4525d5d859b1390d281488d3</id>
<status>ready</status>
<ext>3gp</ext>
<type>video/3gpp</type>
<width>320</width>
<height>133</height>
<size>2604407</size>
<url>http://www.viddler.com/file/d/64955777.3gp?vfid=7780025e4525d5d859b1390d281488d3</url>
<html5_video_source>
</html5_video_source>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>5</profile_id>
<profile_name>3GP</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355119</status_update_at>
</file>
<file>
<id>7780025e4525d5dad32bd7de2697c172</id>
<status>ready</status>
<ext>webm</ext>
<type>video/webm</type>
<width>854</width>
<height>355</height>
<size>15796091</size>
<url>http://www.viddler.com/file/d/64955777.webm?vfid=7780025e4525d5dad32bd7de2697c172</url>
<html5_video_source/>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
<source>0</source>
<flash>na</flash>
<iphone>na</iphone>
<ipad>na</ipad>
<itunes>na</itunes>
<profile_id>6</profile_id>
<profile_name>WebM</profile_name>
<created_at>1431355069</created_at>
<status_update_at>1431355178</status_update_at>
</file>
</files>
<closed_captioning_list/>
</video>
</video_list>
</list_result>
http://api.viddler.com/api/v2/viddler.videos.search.php?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188&type=yourvideos&query=test
Array
(
[list_result] => Array
(
[page] => 1
[per_page] => 10
[video_list] => Array
(
[0] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 1
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 778002534022d7d8a3219515dcf98b88
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 57636989
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d7d8a3219515dcf98b88
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => off
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431602832
[status_update_at] => 1431602832
)
[1] => Array
(
[id] => 778002534022d7d41b1bf41797fb1144
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 267
[size] => 8061870
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d7d41b1bf41797fb1144
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431602832
[status_update_at] => 1432053765
)
[2] => Array
(
[id] => 778002534022d6dc3e238df908656562
[status] => deleted
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 356
[size] => 15448464
[url] =>
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6dc3e238df908656562
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431602832
[status_update_at] => 1431696519
)
[3] => Array
(
[id] => 778002534022d6de8b8298b61270da22
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 534
[size] => 28148994
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6de8b8298b61270da22
[html5_video_source] => http://www.viddler.com/file/aecfca57/778002534022d6de8b8298b61270da22
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431602832
[status_update_at] => 1431602983
)
[4] => Array
(
[id] => 778002534022d6d84180ac7a4b4f9fc9
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 802
[size] => 37517291
[url] => http://www.viddler.com/file/d/aecfca57.mp4?vfid=778002534022d6d84180ac7a4b4f9fc9
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431602832
[status_update_at] => 1431603074
)
[5] => Array
(
[id] => 778002534022d6dad5647237a5369b76
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778002534022d6dad5647237a5369b76
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431602832
[status_update_at] => 1431602875
)
[6] => Array
(
[id] => 778002534022d6d45b06be25c077de52
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 356
[size] => 14579865
[url] => http://www.viddler.com/file/d/aecfca57.webm?vfid=778002534022d6d45b06be25c077de52
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431602832
[status_update_at] => 1431602905
)
[7] => Array
(
[id] => 778003584325d6d8d96a2aeca223b462
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d6d8d96a2aeca223b462
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697139
[status_update_at] => 1431697172
)
[8] => Array
(
[id] => 778003584325d4de13442cdc340cef80
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4de13442cdc340cef80
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697177
[status_update_at] => 1431697225
)
[9] => Array
(
[id] => 778003584325d4d81c2211108639d963
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2522224
[url] => http://www.viddler.com/file/d/aecfca57.3gp?vfid=778003584325d4d81c2211108639d963
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431697206
[status_update_at] => 1431697253
)
)
[closed_captioning_list] => Array
(
)
)
[1] => Array
(
[id] => 64955777
[status] => ready
[author] => vt_brendan
[title] => Star Trek Into Darkness
[upload_time] => 1431355069
[updated_at] => 1431969477
[made_public_time] => 1431355069
[length] => 139
[description] => Updated_Description
[age_limit] =>
[url] => http://www.viddler.com/v/64955777
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_64955777_v1.jpg
[thumbnail_version] => v1
[permalink] => http://www.viddler.com/v/64955777
[html5_video_source] => http://www.viddler.com/file/64955777/html5
[view_count] => 1
[impression_count] => 31
[favorite] => 0
[comment_count] => 0
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
[files] => Array
(
[0] => Array
(
[id] => 7780025e4525d6deb57dc72383a0d8d7
[status] => ready
[ext] => mov
[type] => video/quicktime
[width] => 1920
[height] => 800
[size] => 169896043
[url] => http://www.viddler.com/file/d/64955777.mov?vfid=7780025e4525d6deb57dc72383a0d8d7
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 1
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => off
[profile_id] =>
[profile_name] => Source
[created_at] => 1431355069
[status_update_at] => 1431355069
)
[1] => Array
(
[id] => 7780025e4525d6dadc2f0bd3178f2615
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 640
[height] => 266
[size] => 8354234
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6dadc2f0bd3178f2615
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6dadc2f0bd3178f2615
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 8
[profile_name] => 360p
[created_at] => 1431355069
[status_update_at] => 1431355176
)
[2] => Array
(
[id] => 7780025e4525d6d4d05da6a66e34f2c2
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 854
[height] => 355
[size] => 16062603
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d6d4d05da6a66e34f2c2
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d6d4d05da6a66e34f2c2
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => on
[ipad] => on
[itunes] => on
[profile_id] => 3
[profile_name] => 480p
[created_at] => 1431355069
[status_update_at] => 1431355206
)
[3] => Array
(
[id] => 7780025e4525d5dc0b3c8e5bc033e0d3
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1280
[height] => 533
[size] => 29175378
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5dc0b3c8e5bc033e0d3
[html5_video_source] => http://www.viddler.com/file/64955777/7780025e4525d5dc0b3c8e5bc033e0d3
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => on
[itunes] => on
[profile_id] => 4
[profile_name] => 720p
[created_at] => 1431355069
[status_update_at] => 1431355178
)
[4] => Array
(
[id] => 7780025e4525d5deee591b7457fdd2de
[status] => ready
[ext] => mp4
[type] => video/mp4
[width] => 1920
[height] => 800
[size] => 37979937
[url] => http://www.viddler.com/file/d/64955777.mp4?vfid=7780025e4525d5deee591b7457fdd2de
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => on
[iphone] => na
[ipad] => na
[itunes] => on
[profile_id] => 7
[profile_name] => 1080p
[created_at] => 1431355069
[status_update_at] => 1431355432
)
[5] => Array
(
[id] => 7780025e4525d5d859b1390d281488d3
[status] => ready
[ext] => 3gp
[type] => video/3gpp
[width] => 320
[height] => 133
[size] => 2604407
[url] => http://www.viddler.com/file/d/64955777.3gp?vfid=7780025e4525d5d859b1390d281488d3
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 5
[profile_name] => 3GP
[created_at] => 1431355069
[status_update_at] => 1431355119
)
[6] => Array
(
[id] => 7780025e4525d5dad32bd7de2697c172
[status] => ready
[ext] => webm
[type] => video/webm
[width] => 854
[height] => 355
[size] => 15796091
[url] => http://www.viddler.com/file/d/64955777.webm?vfid=7780025e4525d5dad32bd7de2697c172
[html5_video_source] =>
[display_aspect_ratio] => 2.39:1
[source] => 0
[flash] => na
[iphone] => na
[ipad] => na
[itunes] => na
[profile_id] => 6
[profile_name] => WebM
[created_at] => 1431355069
[status_update_at] => 1431355178
)
)
[closed_captioning_list] => Array
(
)
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.search.json?type=yourvideos&query=test&api_key=API_KEY&sessionid=8135c1410e780e96544f4d4b3e6
"list_result": {
"page": "1",
"per_page": "10",
"video_list": [
{
"id": "47ca099e",
"status": "ready",
"author": "tomk",
"title": "Test Title",
"upload_time": "1337914972",
"made_public_time": "1337914972",
"length": "95",
"description": "Testing using a textarea for the description.",
"age_limit": "",
"url": "http://www.viddler.com/v/47ca099e",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_47ca099e_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.viddler.com/v/47ca099e",
"html5_video_source": "http://www.viddler.com/file/47ca099e/html5",
"view_count": "3",
"impression_count": "4",
"favorite": "0",
"comment_count": "0",
"password_protection": "0",
"thumbnails_count": "11",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "4:3",
"files": [
{
"id": "7287075b4122dad450331041413f8983",
"status": "ready",
"ext": "mkv",
"type": "application/octet-stream",
"width": "624",
"height": "480",
"size": "22446963",
"url": "http://www.viddler.com/file/d/47ca099e.mkv?vfid=7287075b4122dad450331041413f8983",
"html5_video_source": "",
"display_aspect_ratio": "4:3",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "",
"profile_name": "Source",
"created_at": "1337914972",
"status_update_at": "1337914972"
},
{
"id": "7287075b4125d3dc922de2d031e4dc52",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "624",
"height": "480",
"size": "11303042",
"url": "http://www.viddler.com/file/d/47ca099e.mp4?vfid=7287075b4125d3dc922de2d031e4dc52",
"html5_video_source": "http://www.viddler.com/file/47ca099e/7287075b4125d3dc922de2d031e4dc52",
"display_aspect_ratio": "4:3",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1337914972",
"status_update_at": "1337915035"
},
{
"id": "7287075b4125d3de9b798a1ae7d57bcd",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "234",
"height": "180",
"size": "2972911",
"url": "http://www.viddler.com/file/d/47ca099e.3gp?vfid=7287075b4125d3de9b798a1ae7d57bcd",
"html5_video_source": "",
"display_aspect_ratio": "4:3",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1337914972",
"status_update_at": "1337915105"
},
{
"id": "7287075b4125d3d80fefb504be48c7b1",
"status": "ready",
"ext": "webm",
"type": "video/webm",
"width": "624",
"height": "480",
"size": "9110242",
"url": "http://www.viddler.com/file/d/47ca099e.webm?vfid=7287075b4125d3d80fefb504be48c7b1",
"html5_video_source": "",
"display_aspect_ratio": "4:3",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "6",
"profile_name": "WebM",
"created_at": "1337914972",
"status_update_at": "1337915358"
}
],
"closed_captioning_list": [
]
},
{
"id": "51271da7",
"status": "ready",
"author": "tomk",
"title": "Test Video",
"upload_time": "1378828001",
"made_public_time": "1378828001",
"length": "10",
"description": " ",
"age_limit": "",
"url": "http://www.viddler.com/v/51271da7",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_51271da7_v1.jpg",
"thumbnail_version": "v1",
"permalink": "http://www.example.com/video1.html",
"html5_video_source": "http://www.viddler.com/file/51271da7/html5",
"view_count": "0",
"impression_count": "0",
"favorite": "0",
"comment_count": "0",
"password_protection": "0",
"thumbnails_count": "2",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "private"
},
"tagging": {
"level": "private"
},
"commenting": {
"level": "private"
},
"download": {
"level": "private"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9",
"files": [
{
"id": "718500584129d2dc13ef4e82e421fe26",
"status": "ready",
"ext": "mov",
"type": "video/quicktime",
"width": "960",
"height": "540",
"size": "5418416",
"url": "http://www.viddler.com/file/d/51271da7.mov?vfid=718500584129d2dc13ef4e82e421fe26",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "1",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "on",
"profile_id": "",
"profile_name": "Source",
"created_at": "1378828001",
"status_update_at": "1378828001"
},
{
"id": "718500584129d2de555b3aa81c1385f0",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "640",
"height": "360",
"size": "739348",
"url": "http://www.viddler.com/file/d/51271da7.mp4?vfid=718500584129d2de555b3aa81c1385f0",
"html5_video_source": "http://www.viddler.com/file/51271da7/718500584129d2de555b3aa81c1385f0",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "8",
"profile_name": "360p",
"created_at": "1378828001",
"status_update_at": "1378828020"
},
{
"id": "718500584129d2d8918da548aeeeb07f",
"status": "ready",
"ext": "mp4",
"type": "video/mp4",
"width": "854",
"height": "480",
"size": "1255544",
"url": "http://www.viddler.com/file/d/51271da7.mp4?vfid=718500584129d2d8918da548aeeeb07f",
"html5_video_source": "http://www.viddler.com/file/51271da7/718500584129d2d8918da548aeeeb07f",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "on",
"iphone": "on",
"ipad": "on",
"itunes": "on",
"profile_id": "3",
"profile_name": "480p",
"created_at": "1378828001",
"status_update_at": "1378828035"
},
{
"id": "718500584129d2da3e0c15f625af4626",
"status": "ready",
"ext": "3gp",
"type": "video/3gpp",
"width": "320",
"height": "180",
"size": "119298",
"url": "http://www.viddler.com/file/d/51271da7.3gp?vfid=718500584129d2da3e0c15f625af4626",
"html5_video_source": "",
"display_aspect_ratio": "16:9",
"source": "0",
"flash": "na",
"iphone": "na",
"ipad": "na",
"itunes": "na",
"profile_id": "5",
"profile_name": "3GP",
"created_at": "1378828001",
"status_update_at": "1378828022"
},
],
"closed_captioning_list": [
{
"id": "7a82065c7515e7e8",
"enabled": "1",
"language": "en",
"type": "SRT",
"file_size": "144",
"file_url": "http://ccs.cdn-ec.viddler.com/51271da7_1a83ff8b88fe023d5d81f612c82f89ed67757520.srt",
"default": "1"
}
]
}
]
}
}
Method Type: GET
Search for videos based on various parameters. There are three different ways to search, distinguished by the type
parameter. Parameters in the “Common” section can be used with any type. After selecting a type, follow only the parameter list for that type.
Parameters
-
sessionid
- string; Required -
type
- string; Required | Values fortype
areyourvideos
(default),user
(searches a specific user), orallvideos
(searches all of Viddler) – Only public videos will appear for videos not “owned” by the authenticated account.
type=yourvideos
Parameters
-
query
- string; Required | Search term using a keyword. Searches video title, description, as well as both global and timed tags. -
min_upload_date
- date (yyyy-mm-dd
); Optional -
max_upload_date
- date (yyyy-mm-dd
); Optional -
max_age
- integer; Optional | Videos uploaded in the last # of days
type=user
Parameters
-
user
- string; Required
type=allvideos
Parameters
-
query
- string; Required | Search term using a keyword. Searches video title, description, as well as both global and timed tags.
viddler.videos.getEmbedCodeTypes
http://api.viddler.com/api/v2/viddler.videos.getEmbedCodeTypes.xml?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188
<?xml version="1.0" encoding="UTF-8"?>
<list_result>
<default>8</default>
<embed_code_types>
<embed_code_type>
<id>1</id>
<name>Legacy</name>
</embed_code_type>
<embed_code_type>
<id>2</id>
<name>Wordpress.com</name>
</embed_code_type>
<embed_code_type>
<id>3</id>
<name>Flash w/HTML5 fallback</name>
</embed_code_type>
<embed_code_type>
<id>5</id>
<name>iframe</name>
</embed_code_type>
<embed_code_type>
<id>6</id>
<name>Adobe DPS</name>
</embed_code_type>
<embed_code_type>
<id>8</id>
<name>Arpeggio div tag</name>
</embed_code_type>
</embed_code_types>
</list_result>
http://api.viddler.com/api/v2/viddler.videos.getEmbedCodeTypes.php?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188
Array
(
[list_result] => Array
(
[default] => 8
[embed_code_types] => Array
(
[0] => Array
(
[id] => 1
[name] => Legacy
)
[1] => Array
(
[id] => 2
[name] => Wordpress.com
)
[2] => Array
(
[id] => 3
[name] => Flash w/HTML5 fallback
)
[3] => Array
(
[id] => 5
[name] => iframe
)
[4] => Array
(
[id] => 6
[name] => Adobe DPS
)
[5] => Array
(
[id] => 8
[name] => Arpeggio div tag
)
)
)
)
http://api.viddler.com/api/v2/viddler.videos.getEmbedCodeTypes.json?api_key=API_KEY&sessionid=ce314c141088e5276544f4d4b391
{
"list_result": {
"default": "5",
"embed_code_types": [
{
"id": "1",
"name": "Legacy"
},
{
"id": "2",
"name": "Wordpress.com"
},
{
"id": "3",
"name": "Flash w/HTML5 fallback"
},
{
"id": "5",
"name": "iframe"
}
]
}
}
Method Type: GET
Returns a list of the embed code types available to the account. Used with viddler.videos.getEmbedCode
Parameters
-
sessionid
- string; Required
viddler.videos.getEmbedCode
http://api.viddler.com/api/v2/viddler.videos.getEmbedCode.xml?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188&video_id=aecfca57
<?xml version="1.0" encoding="UTF-8"?>
<video>
<video_id>aecfca57</video_id>
<embed_code><script type="text/javascript" src="//static.cdn-ec.viddler.com/js/arpeggio/v3/build/main-built.js"></script> <div class="viddler-auto-embed" data-video-id="aecfca57"></div></embed_code>
</video>
No output available.
http://api.viddler.com/api/v2/viddler.videos.getEmbedCode.json?video_id=51271da7&width=500&player_type=mini&wmode=transparent&embed_code_type=5&hd=1&hidablecontrolbar=1&api_key=API_KEY&sessionid=320323b141089dff48544f4d4b260
{
"video": {
"video_id": "51271da7",
"embed_code": "<iframe id=\"viddler-51271da7\" src=\"http://www.viddler.com/embed/51271da7?f=1&player=mini&secret=64215889&wmode=transparent&api_key=API_KEY&hd=1&hidablecontrolbar=1\" width=\"500\" height=\"281\" frameborder=\"0\" mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\"></iframe>"
}
}
Method Type: GET
Generate an Embed code for a particular video. Any supported parameter that you can use in our embed codes can be added in the format key=value
(Ex: hd=1
or branding=1
)
Parameters
-
sessionid
- string; Required -
video_id
- string; Required -
width
- integer; Optional -
height
- integer; Optional -
player_type
- string; Optional | valid options arefull
,simple
,mini
-
wmode
- string; Optional | Legacy players only. wmode refers to how Flash places content on the webpage. Options are:transparent
,opaque
,window
(defaults towindow
) for more information on wmode, see this Adobe article. Does not apply to HTML 5 or Arpeggio playback. -
embed_code_type
- integer; Optional | Embed code type id obtained fromviddler.videos.getEmbedCodeTypes
viddler.videos.prepareUpload
http://api.viddler.com/api/v2/viddler.videos.prepareUpload.xml?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188
<?xml version="1.0" encoding="UTF-8"?>
<upload>
<endpoint>http://uploads0.viddler.com/viddler_upload/upload/uploadvideo.xml</endpoint>
<token>uf956dae6f109dfca3191be3b0cfc6a692693af26</token>
</upload>
http://api.viddler.com/api/v2/viddler.videos.prepareUpload.php?sessionid=117320e14d6d1d97cb56543f4252454e44414e188&key=API_KEY&sessionid=117320e14d6d1d97cb56543f4252454e44414e188
Array
(
[upload] => Array
(
[endpoint] => http://uploads1.viddler.com/viddler_upload/upload/uploadvideo.php
[token] => u402cf7453966326cf94c89c5e51f0013b97df591
)
)
http://api.viddler.com/api/v2/viddler.videos.prepareUpload.json?api_key=API_KEY&sessionid=1b831ce1416f7cf479544f4d4b3de
{
"upload": {
"endpoint": "http://uploads0.viddler.com/viddler_upload/upload/uploadvideo.json",
"token": "u494ba4b45b423357629fdd25f2bd7e25417fc090"
}
}
Method Type: GET
Provides a unique upload token and the endpoint for an individual upload session.
Parameters
-
sessionid
- string; Required -
allow_replace
- boolean; Optional | Enables uploading in "replace video" mode. Defaultfalse
viddler.videos.setThumbnail
http://api.viddler.com/api/v2/viddler.videos.setThumbnail.xml?sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&key=API_KEY&sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&video_id=aecfca57&timepoint=4
<?xml version="1.0" encoding="UTF-8"?>
<video>
<id>aecfca57</id>
<status>ready</status>
<author>vt_brendan</author>
<title>TEST VIDEO</title>
<upload_time>1431602832</upload_time>
<updated_at>1432057554</updated_at>
<made_public_time>1431602832</made_public_time>
<length>135</length>
<description>
</description>
<age_limit>
</age_limit>
<url>http://www.viddler.com/v/aecfca57</url>
<thumbnail_url>http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v3.jpg</thumbnail_url>
<thumbnail_version>v3</thumbnail_version>
<permalink>http://www.viddler.com/v/aecfca57</permalink>
<html5_video_source>http://www.viddler.com/file/aecfca57/html5</html5_video_source>
<view_count>16</view_count>
<impression_count>47</impression_count>
<favorite>0</favorite>
<comment_count>1</comment_count>
<password_protection>0</password_protection>
<thumbnails_count>11</thumbnails_count>
<thumbnail_index>0</thumbnail_index>
<permissions>
<view>
<level>public</level>
</view>
<embed>
<level>private</level>
</embed>
<tagging>
<level>private</level>
</tagging>
<commenting>
<level>private</level>
</commenting>
<download>
<level>private</level>
</download>
</permissions>
<comments_moderation>
<level>
</level>
<to_review>0</to_review>
</comments_moderation>
<player_type>
<player_type_id>0</player_type_id>
<player_type>arpeggio</player_type>
<comments_enabled>1</comments_enabled>
</player_type>
<display_aspect_ratio>2.39:1</display_aspect_ratio>
</video>
http://api.viddler.com/api/v2/viddler.videos.setThumbnail.php?sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&key=API_KEY&sessionid=30c3e214d6d43d88556543f4252454e44414e2bd&video_id=aecfca57&timepoint=4
Array
(
[video] => Array
(
[id] => aecfca57
[status] => ready
[author] => vt_brendan
[title] => TEST VIDEO
[upload_time] => 1431602832
[updated_at] => 1431696928
[made_public_time] => 1431602832
[length] => 135
[description] =>
[age_limit] =>
[url] => http://www.viddler.com/v/aecfca57
[thumbnail_url] => http://thumbs.cdn-ec.viddler.com/thumbnail_2_aecfca57_v2.jpg
[thumbnail_version] => v2
[permalink] => http://www.viddler.com/v/aecfca57
[html5_video_source] => http://www.viddler.com/file/aecfca57/html5
[view_count] => 16
[impression_count] => 47
[favorite] => 0
[comment_count] => 1
[password_protection] => 0
[thumbnails_count] => 11
[thumbnail_index] => 0
[permissions] => Array
(
[view] => Array
(
[level] => public
)
[embed] => Array
(
[level] => private
)
[tagging] => Array
(
[level] => private
)
[commenting] => Array
(
[level] => private
)
[download] => Array
(
[level] => private
)
)
[comments_moderation] => Array
(
[level] =>
[to_review] => 0
)
[player_type] => Array
(
[player_type_id] => 0
[player_type] => arpeggio
[comments_enabled] => 1
)
[display_aspect_ratio] => 2.39:1
)
)
http://api.viddler.com/api/v2/viddler.videos.setThumbnail.json?video_id=b8f60f03&timepoint=3&api_key=API_KEY&sessionid=493175141083d5f3f544f4d4b3e5
{
"video": {
"id": "b8f60f03",
"status": "ready",
"author": "tomk",
"title": "Big Buck Bunny",
"upload_time": "1310058958",
"made_public_time": "1310651695",
"length": "597",
"description": "Testing ",
"age_limit": "",
"url": "http://www.viddler.com/v/b8f60f03",
"thumbnail_url": "http://thumbs.cdn-ec.viddler.com/thumbnail_2_b8f60f03_v10.jpg",
"thumbnail_version": "v10",
"permalink": "http://thomas.kover.me/test/playertesting2.html",
"html5_video_source": "http://www.viddler.com/file/b8f60f03/html5",
"view_count": "220",
"impression_count": "693",
"favorite": "0",
"comment_count": "1",
"password_protection": "0",
"thumbnails_count": "11",
"thumbnail_index": "0",
"permissions": {
"view": {
"level": "public"
},
"embed": {
"level": "public"
},
"tagging": {
"level": "public"
},
"commenting": {
"level": "public"
},
"download": {
"level": "public"
}
},
"comments_moderation": {
"level": "",
"to_review": "0"
},
"display_aspect_ratio": "16:9"
}
}
Method Type: POST
(MULTIPART POST
when uploading a thumbnail file)
Sets the video thumbnail. The thumbnail can be set to a time point (snapped to closest video keyframe) or a thumbnail file can be uploaded.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required
Method call must contain only one of the following
-
timepoint
- integer; Optional | Time, in seconds. Thumbnails will “snap” to closest key frame in video, and can take some time for the update to occur. API responds with the updated URL, even when the updated thumbnail is not ready. -
file
- file; Optional | Acceptable file formats: GIF, JPG, PNG (1MB size maximum). We also recommend thumbnail file is of the same dimension as the source file or larger.
viddler.videos.getRecordToken
http://api.viddler.com/api/v2/viddler.videos.getRecordToken.xml?sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&key=API_KEY&sessionid=ee32aa14d7294a8ee56543f4252454e44414eff
<?xml version="1.0" encoding="UTF-8"?>
<record_token>
<value>18518514d7299066856543f4252454e44414e19a</value>
</record_token>
http://api.viddler.com/api/v2/viddler.videos.getRecordToken.php?sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&key=API_KEY&sessionid=ee32aa14d7294a8ee56543f4252454e44414eff
Array
(
[record_token] => Array
(
[value] => 3b8537014d729895a956543f4252454e44414e7d
)
)
http://api.viddler.com/api/v2/viddler.videos.getRecordToken.json?sessionid=ee32aa14d7294a8ee56543f4252454e44414eff&key=API_KEY&sessionid=ee32aa14d7294a8ee56543f4252454e44414eff
{
"record_token":{
"value":"12e5b814d72980a8d56543f4252454e44414e3d2"
}
}
Method Type: GET
Returns a token to implement our Webcam Recorder. The token can also be obtained from viddler.users.auth .
Parameters
-
sessionid
- string; Required
viddler.videos.disableAds
http://api.viddler.com/api/v2/viddler.videos.disableAds.xml?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_ids=aecfca57
<?xml version="1.0" encoding="UTF-8"?>
<result>
<changed>0</changed>
<video_ids>
</video_ids>
</result>
http://api.viddler.com/api/v2/viddler.videos.disableAds.php?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_ids=aecfca57
Array
(
[result] => Array
(
[changed] => 0
[video_ids] =>
)
)
http://api.viddler.com/api/v2/viddler.videos.disableAds.json?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_ids=aecfca57
{
"result":{
"changed":"0",
"video_ids":""
}
}
Method Type: POST
Turns adds off for one or multiple videos.
Parameters
-
sessionid
- string; Required -
video_id
- string; Required - Comma separated list of video_ids (if disabling on multiple videos at once)
viddler.videos.enableAds
http://api.viddler.com/api/v2/viddler.videos.enableAds.xml?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_ids=aecfca57
<?xml version="1.0" encoding="UTF-8"?>
<result>
<changed>0</changed>
<video_ids>
</video_ids>
</result>
http://api.viddler.com/api/v2/viddler.videos.enableAds.php?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_ids=aecfca57
Array
(
[result] => Array
(
[changed] => 0
[video_ids] =>
)
)
http://api.viddler.com/api/v2/viddler.videos.enableAds.json?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_ids=aecfca57
{
"result":{
"changed":"0",
"video_ids":""
}
}
Method Type: POST
Turns ads on for one or multiple videos.
Parameters
-
sessionid
- string; Required -
video_ids
- string; Required - Comma separated list of video_ids (if enabling on multiple videos at once)
viddler.videos.getAdsStatus
http://api.viddler.com/api/v2/viddler.videos.getAdsStatus.xml?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_id=aecfca57
<?xml version="1.0" encoding="UTF-8"?>
<video_ads_status>
<status>disabled</status>
<video_id>aecfca57</video_id>
</video_ads_status>
http://api.viddler.com/api/v2/viddler.videos.getAdsStatus.php?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_id=aecfca57
Array
(
[video_ads_status] => Array
(
[status] => disabled
[video_id] => aecfca57
)
)
http://api.viddler.com/api/v2/viddler.videos.getAdsStatus.json?sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&key=API_KEY&sessionid=2c634614d72a31d7e56543f4252454e44414e139&video_id=aecfca57
{
"video_ads_status":{
"status":"disabled",
"video_id":"aecfca57"
}
}
Method Type: GET
Returns the status of advertising on a specific video(enabled/disabled).
Parameters
-
sessionid
- string; Required -
video_id
- string; Required
API Errors
<error>
<code>4</code>
<description>missing required parameter</description> <details>message</details>
</error>
{"error":{
"code":"4",
"description":"missing required parameter",
"details":"message"
}}
a:1:{
s:5:"error";a:3:{
s:4:"code";s:1:"4";
s:11:"description";s:26:"missing required parameter";
s:7:"details";s:7:"message";
}
}
If you make a call to our API, it should return something every time. In the event something isn't correct (missing parameters, media ownership, etc) the Viddler API will return an error.
Each API method response should be checked for the following to ensure it does not contain errors:
- Error response + appropriate HTTP result code
- Error responses contain an error code, error description, and optional error details
- Only HTTP 200 result codes indicate a successful request
Error Codes
Error | Description | Cause | Resolution |
---|---|---|---|
1 | An internal error has occurred | A Bug in the API | Contact Us |
2 | Bad argument format | The proper information for a parameter wasn't provided (Ex. Sending an API Key as sessionid ) |
Check spelling, and make sure the proper data is being sent |
3 | Unknown argument specified | A parameter sent is unknown, and can't be handled | Check spelling, or check the documentation for this method. |
4 | Missing required argument for this method | A parameter that is required an was not specified | Check spelling, or check the documentation for this method. |
5 | No method specified | The request did not include a method | Include a method. |
6 | Unknown method specified | The method provided is not valid | Check spelling, review the documentation. |
7 | API key missing | No API key parameter (&key=API\_KEY ) was provided |
Include the API Key. |
8 | Invalid or unknown API key specified | The API key is not valid | Make sure the full API key is included. |
9 | Invalid or expired sessionid |
The sessionid has expired or does not exist |
Check to make sure additional characters aren't being included. |
10 | Used HTTP method is not allowed for this API method | Using GET when POST is required or vice-versa. | Try using HTTP POST instead of HTTP GET, refer to the method documentation. |
11 | Method call not allowed | The API Key is not able to utilize the method that was tried. | If you require this method and receive this error, contact us. |
12 | API key disabled | The API key is deactivated. Usually the result of breaking our TOS or other misuse of the service. | Contact us to discuss restoring the API key. |
13 | Invalid data sent with request | The data sent with the request is not valid (Ex: Sending a .zip instead of a video file) | Check spelling, and make sure the proper data is being sent |
14 | Bad or invalid SSL State | ||
15 | Invalid response format requested | The response format requested is not supported | Choose a format the API supports: JSON, PHP, XML |
100 | Whatever you requested was Not Found. | A resource that was requested does not exist | Check spelling, and make sure the proper data is being sent, an a supported method is being called. |
101 | The action is forbidden | Attempted action is not allowed based on the API Key provided | Contact us or choose another method. |
102 | The account has been suspended | The account being used has been suspended | Contact Us for more information |
103 | Invalid password | The provided password is incorrect | Check spelling, urlencode your password if it has special characters |
104 | Terms not Accepted | The Terms of Services (TOS) were not agreed to when creating an account | Agree to the Terms of Service on account signup. |
105 | Username already exists | The username provided is already taken) | Try another username. |
200 | The provided file is too large | The file that was provided exceeds the maximum limit for this method | Upload a smaller file. |
202 | Upload Error | Invalid multipart format request | Submit the upload form as multipart/form-data |
203 | Uploading has been disabled | This will appear during system maintenance periods. | Wait and try again later. |
Arpeggio Player (v3)
Arpeggio Player (v2)
Enhancements from Version 2
The Version 3 player represents a significant advance in both user experience (particularly on smaller screens) and functionality. Player controls are grouped according to type (playback-related and interactivity-related) with room for additional features planned for 2015.
- New player design
- Enhanced responsive design (dynamic resizing)
- Automatic show/hide (tools are hidden or minimized during content playback)
- Logical grouping of tools
- Bottom bar: tools involving content playback (e.g., speed, captions)
- Top bar: tools involving user interactivity (e.g., timeline comments)
- Chaptering support
- Improved commenting functionality
Browser Compatibility
As an HTML5 Player, functionality can differ between browsers and versions. Please keep in mind that while we try to maintain compatibility whenever possible, we target browser support in line with Google's browser support policy.
Below is a general list of what can be expected to work on a given set of browsers
Browser | Player Load/Playback | Media Playback Method | Timed Commenting | VAST Tag |
---|---|---|---|---|
Internet Explorer 9 (Win) | Partial | HTML5 (MP4) | No | Yes |
Internet Explorer 10 (Win) | Yes | HTML5 (MP4) | Yes | Yes |
Internet Explorer 11 (Win) | Yes | HTML5 (MP4) | Yes | Yes |
Google Chrome (38+) (Win / OS X / Linux ) | Yes | HTML5 (MP4) | Yes | Yes |
Firefox (34+) (Mac) | Yes | HTML5 (MP4)* | Yes | Yes |
Firefox (34+) (Win) | Yes | HTML5 (MP4)* | Yes | Yes |
Safari (7+) (OS X) | Yes | HTML5 (MP4) | Yes | Yes |
Mobile Safari (iOS 7+) | Yes (iPhone uses native player controls) | HTML5 (MP4) | No | No |
Mobile Chrome (38+) | Yes | HTML5 (MP4) | Yes | No |
* With compatible H.264 Decoder Installed
Known Limitations
- Video Comments: Unfortunately, the technology isn't yet available in most browsers to allow us to record video comments from an HTML5-based player.
- Ad Playback on Mobile devices: We are currently looking in to ways to support ad playback while still having a good viewer experience.
- Fullscreen inside iframes: If the Arpeggio player is embedded inside an iframe without the (
allowfullscreen
attribute), the fullscreen button will not appear. This is a limitation of the HTML specification and not the Arpeggio player.
CSS Customization
The core DOM structure of the player is namespaced under .viddler-app-wrap div.viddler-embed
. All selectors below are assumed to be nested under it. The font-family
can be changed at this level to change the font used throughout the player.
Modals
-
.modal-outer
- Any modal overlays will have this class. Set background-color on this selector to change the colors. Some modals that contain a unordered list, may have the class.picker
-
.modal-outer .triangle
- Some modals have an arrow pointing up or down (using additional class.up
or.down
) to point at the icon that they correspond to. Theborder-color
can be modified if the background color chosen for.modal-outer
needs to be changed -
.modal-container
- The actual contents of the modal
Buttons
-
.button
- Buttons will generally have this class and are currently blue -
.button.alt
- Used as an alternate button color. Used on delete buttons
Play overlay button
The following classes have css rules for the play overlay button. It is currently made with pure css, but you could apply a background to the the main .play-overlay-button
and hide the span.
-
.play-overlay-button
-
.play-overlay-button span
GUI / controls
-
div.media-gui
- The container for all the controls. This is split out into 3 sub sections: -
div.media-gui div.top
- The top control bar. This will contain aul.icons.left-icons
and aul.icons.right-icons
-
div.media-gui div.bottom
- The bottom control bar. This will contain aul.icons.left-icons
and aul.icons.right-icons
-
div.media-gui div.other
- This is a container div for any other GUI controls that do not fit into the top or bottom bar
Whilst individual icons can be targeted, the icons are all images. Therefore, if colors are the only thing to be changed, it is best to use the GUI at viddler.com, to ensure that all possible icons are updated.
Bar
-
.bar-holder
- This is the container for the play bar. The background color can be changed. -
div.total-time-bar
- This is the actual play bar. The background color can be changed. -
div.current-time-bar
- This is the bar that shows how far along in the video you are. The background color can be changed. -
.time-icon
- This sits at the end of the div.current-time-bar and is the circular icon for showing the current position. This is purely css based, but you could convert to a background image if you needed something more specific. .current-time-text-holder
- This shows above the .time-icon if you click on the .time-icon and shows the current time of the video. A bit like a modal, you can change the background-color and also the border-color of the.triangle
within it..
timeline-markers-container .comment-marker
- This is a comment marker on the timeline. You can set a background-image to change the icon..time
Displays the duration of the video
VAST Tag Support
<script type="text/javascript" src="//static.cdn-ec.viddler.com/js/arpeggio/v3/build/main-built.js"></script>
<div class="viddler-auto-embed" data-video-id="d3f8c4ac" data-width="437" data-vast-urls="http://ad3.liverail.com/?LR_PUBLISHER_ID={LR_ID}&LR_CAMPAIGN_ID=229&LR_SCHEMA=vast2 preroll,http://ad3.liverail.com/?LR_PUBLISHER_ID={LR_ID}&LR_CAMPAIGN_ID=229&LR_SCHEMA=vast2 midroll 10"></div>
VAST Tags can be included in the Arpeggio player at two levels: Set globally on the account-level, or set on a per-embed basis.
Requirements
- The server that the VAST tag links to must support Cross-origin resource sharing (CORS). This is a standard method to securely allow JavaScript from different domains to interact with each other.
- The VAST XML must be served with the correct Content-Type header (text/xml).
- VAST 2.0 and VAST 3.0 are supported.
Known Limitations
- Only Linear and Skippable Linear ads are supported.
- The ad media must be an MP4 file. Flash-based ads will not supported.
- The MP4 media that best matches the size of the embed will be used, so a number of different sizes should be listed to provide the best display to a a viewer.
- VPAID Ads are not currently supported
Adding VAST Tags to All Account Videos
To set a single VAST tag on all your videos, please create a support ticket.
Manually Adding VAST Tag(s) to Embed Codes
The Arpeggio player supports the ability to add multiple VAST tags to allow for multiple advertisements. Attributes for each tag should be separated by a space, and the individual tags by a comma. (See the example on the side for an example)
Ad Maps
You can add parameters to each VAST Tag included at the end of the tag that determines where the ad plays in the video:
-
preroll
- Play the ad before allowing playback of the first content item. -
midroll
- Play the ad at a specific offset (in seconds). For example,midroll 60
will play a midroll ad after the first 60 seconds of content playback. -
postroll
- Play the ad at the end of the content item.
Please see the embedding example on the right to see these in use.
Arpeggio Player (v3) API
Embedding
<script type="text/javascript" src="//static.cdn-ec.viddler.com/js/arpeggio/v3/build/main-built.js"></script>
<div id="my-player">
</div>
Include the above script
var embed = new ViddlerEmbed({
videoId: '8071d704',
width: '600px',
target: '#my-player'
});
Inialzing a Player Object via JavaScript
- Include the Arpeggio JavaScript library in the head of your page (see sidebar)
- Create a placeholder div where you want the player to be embedded, this should have a unique id attribute:
- Initialize a
ViddlerEmbed
object. The initializer takes a JavaScript object for the settings.
Options for the Initializer
Required
-
videoId
– string. The Viddler Video ID (token) -
target
- A DOM selector string that targets your unique container div. For example'#my-player'
Optional
-
width
- string - can be either a value in pixels or a percentage (defaults to 640px) -
height
- string - if blank, it will be calculated from aspect ratio -
type
- string - either video or comments (defaults to video) -
autoplay
- boolean - should the player start playing once loaded (default false) -
initialVolume
- integer - a value between 0 and 100 (default 80)
Embed Code Parameters
<script type="text/javascript" src="//static.cdn-ec.viddler.com/js/arpeggio/v3/build/main-built.js"></script>
<div class="viddler-auto-embed" data-video-id="{video_id}" data-width="437" data-height="317"></div>
These data attributes are a part of each individual embed code.
-
data-video-id
- string - The Viddler video ID (token) -
data-width
- string - can be either a value in pixels or a percentage (defaults to 640px) -
data-height
- string - if blank, it will be calculated from aspect ratio -
data-type
- string - either video or comments (defaults to video) -
data-autoplay
- boolean - should the player start playing once loaded (default false) -
data-initial-volume
- integer - a value between 0 and 100 (default 80) -
data-default-captions-language
- string - two-letter ISO 639-1 language code (for example:en
for English,pl
for Polish) -
data-subtitle-display-style
- string - select from pre-defined variables available, detailed in the table below -
data-default-resolution
- string - options are 360p, 480p, 720p, 1080p -
data-disable-backward-seek
- boolean - disables seeking backwards on the timeline (default false) -
data-disable-forward-seek
- boolean - disables seeking forward on the timeline (default false) -
data-disable-seek
- boolean - disables seeking on the timeline (default false) - global overide of the 2 above settings
data-subtitle-display-style
Options
Style | Text Color | BG Color | Attribute |
---|---|---|---|
block | white | black with opacity | none required (default) |
shadow | white | black | data-subtitle-display-style="white-on-black-shadow" |
shadow | black | white | data-subtitle-display-style="black-on-white-shadow" |
block | black | white | data-subtitle-display-style="black-on-white-block" |
block | white | black | data-subtitle-display-style="white-on-black-block" |
Events
embed.manager.events.on('event-name-here', function() {
//Do something here to handle the event
});
Handling Events
Event Names
Manager / Timeline
-
timeline:elTimeUpdate
- The timeline has been updated for a specific element. Takes a parameter for the milliseconds of the time within the specific media element -
timeline:timeUpdate
- The timeline has updated. Takes a parameter for the milliseconds of the global timeline -
timeline:stepEnd
- A media element has finished -
mediaElement:play
- A media element has started playing -
mediaElement:pause
- A media element has been paused -
mediaElement:activated
- A media element has been activated -
mediaElement:deactivated
- A media element has been deactivated
Errors
-
error:videoNotfound
-
error:videoForbidden
-
error:connectionError
GUI
-
gui:ready
-
gui:fullScreenEntered
-
gui:fullScreenLeft
-
gui:minimalInterfaceShown
- When the bar minimizes during playback -
gui:fullInterfaceShown
- When the bar returns after mouse movement -
modal:modalShown
- When any modal shows, such as volume slider / quality / cc etc -
modal:modalHidden
Interactions
-
interaction:clickPlay
-
interaction:clickUnmute
-
interaction:clickMute
-
interaction:dragPlayHead
Video Media Element Specific
-
videoPlayer:playerReady
- The player library is ready -
videoPlayer:mediaReady
- The player has loaded and the video content is loaded and can be played -
videoPlayer:play
- The video has started playing. Could be automatic if autoplay is enabled, or user has pressed play -
videoPlayer:pause
- The video has been paused -
videoPlayer:timeupdate
- The video time has updated. Runs frequently when playing. Useembed.manager.currentTime
to get the current time -
videoPlayer:playing
- The video is playing -
videoPlayer:ended
- The video has finished
Comment List Media Element / Timeline Comments Media Element / Comment Creator Submodule
-
comments:replyAdded
-
comments:commentAdded
-
comments:commentDeleted
General Analytics Feature
-
GeneralAnalytics:PercentMilestoneReached
Controlling the Player
-
embed.manager.play(time)
- Play the video. Accepts an optional time for where the playhead should start (in milliseconds). By default it will play from the current playhead position. -
embed.manager.pause()
- Pause the video -
embed.manager.seekTo(time)
- Move the playhead to the passed in time argument (in milliseconds)
Getting Player Status
-
embed.manager.status
- Can be 'stopped', 'playing', 'paused', 'finished' -
embed.manager.currentTime
- Returns the time of the playhead (in milliseconds)
Linking Embeds
var player = new ViddlerEmbed({videoId: 'abc123', target: '#my-player'});
var comments = new ViddlerEmbed({videoId: 'abc123', target: '#my-comments', type: 'comments'});
player.linkWith(comments);
comments.linkWith(player);
Manifests
A manifest is a data structure that informs the player of everything it needs to know for a given embed.
Chaptering
var manifest = {
tracks: [...],
features: {
chaptering = {
resourceData: {
chapters: [
{
time: 10000,
name: 'Chapter 1'
},
{
time: 20000,
name: 'Chapter 2'
}
]
}
}
};
The chaptering feature of Arpeggio allows for the creation of chapters (as on a DVD) each consisting of a name and time point.
There are two methods to set up chaptering on a video:
Setting up Chapters via the Viddler Interface
The easiest method to define chapters in a video is via the Viddler interface. The chaptering setup can be found in the Interaction tab of the Video Manage page.
Defining Chapters in a Manifest
Within the features key of the JSON manifest, create a new key for chaptering
. This object will contain a key called resourceData
which declares the configuration for a given feature. resourceData
should then contain a key called chapters
which contains the value of an array of chapters. Each defined chapter must contain time
(in milliseconds) and a name
.
Demo
See this Demo on JSFiddle Which uses the manifest builder functionality to build out a manifest
General Analytics
Setting up the library
This feature is an optional library that will send analytics data to a configurable endpoint. It accepts two options in the resourceData
section of the manifest. These are:
-
url
(string): this is the endpoint on your server of which details of analytics events are sent to. For example:http://mysite.com/arpeggio_analytics_endpoint.php
-
eventsToRecord
(array): this optional array tells the analytics feature, which it should notify your servers of. Each item in the array must be either a string such as'videoPlayer:play'
to match an exact event name, or a regular expression if you want to partial match event names, e.g./^GeneralAnalytics/
By default the eventsToRecord array is GeneralAnalytics, videoPlayer:play
. The GeneralAnalytics
regular expression currently only matches one event which is GeneralAnalytics:PercentMilestoneReached
but we may add more events in the future.
Setting up your server side endpoint
When an event is triggered that matches eventsToRecord, a HTTP POST request will be made to your server (POST is used over GET because the data sent has a potential to be more than the allowed length of urls). You may want to enable CORS headers on your endpoint which will stop any console errors, but it is not necessary because the feature does not attempt to read the response)
The POST request will include the following parameters:
-
media_element_id
- in id of the element the player is currently playing, in the case of videos, this will be the id used on Viddler -
media_element_type
- the type of element the player is currently playing. In most cases the value will be 'video' -
media_element_title
- if the media element is a video, this will be the video title -
event_name
- The full name of the event. For examplevideoPlayer:play
-
event_data
- If the event was fired with some additional data, then this field will represent that data. Because the data could be a complex object, it is serialized to JSON. In theGeneralAnalytics:PercentMilestoneReached
event, the value will be an integer value of the percent of which the video has played (25, 50 75 or 100) -
logged_in_user
- This will be sent if there is a global variable of this name set on the page.
Migrating from v2 to v3
Changing Embeds
// Old Javascript URL
<script type="text/javascript" src="//static.cdn-ec.viddler.com/js/arpeggio/v2/build/main-built.js"></script>
// New Javascript URL
<script type="text/javascript" src="//static.cdn-ec.viddler.com/js/arpeggio/v3/build/main-built.js"></script>
To change basic embeds, simply change the version in the URL from v2
to v3
(See the example to the right).
JavaScript Function Changes
-
embed.videoPlayer.resume()
has been removed (useembed.manager.play()
instead.) -
embed.videoPlayer
functions have been renamed toembed.manager
Webcam Recorder
Viddler's webcam recorder is a powerful interaction tool, which can be embedded on your own site. This functionality requires Adobe Flash and as a result will not work on mobile devices.
Embedding the Recorder
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="449" height="545"
id="viddler_recorder" align="middle"> <param name="allowScriptAccess" value="always" /> <param name="allowNetworking" value="all" /> <param name="movie" value="http://static.cdn-ec.viddler.com/flash/recorder.swf" /> <param name="quality" value="high" /> <param name="scale" value="noScale"> <param name="bgcolor" value="#000000" /> <param name="flashvars" value="fake=1&recordToken=[YourRecordTokenHere]" /> <embed src="http://static.cdn-ec.viddler.com/flash/recorder.swf" quality="high" scale="noScale" bgcolor="#000000"
allowScriptAccess="always" allowNetworking="all" width="449" height="545" name="viddler_recorder"
flashvars="fake=1&recordToken=[YourRecordTokenHere]" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object>
- Use the API to authenticate via
viddler.users.auth
. Make sure to add theget_recodred_token=1
parameter to the method call. - Use the
record_token
provided inside the recorder embed code.
Parameters
-
recordToken
– Required | The unique token generated byviddler.users.auth
-
permalink
– Used as the finished video’s permalink after recording -
maxlength
– integer | Value in seconds; sets a custom max length of a recorded footage. -
audioOnly
– boolean | Switch recorder to “audio-only” mode. No video data will be saved. -
noUI
– boolean | Hide the control bar. Remember to enable callbacks. -
noButtons
– boolean | Hides the two buttons displayed to users without a webcam installed. -
recQuality
– Allowed Values:H
for High Quality,M
for Medium Quality, andL
for Low Quality. Setting this parameter will cause the initial quality selector not to be shown. -
inputVolume
- integer | Adjusts input microphone volume, where 0 mutes the microphone and 100 is "double volume." Default value is50
. -
expandVideoPreview
- boolean | expands the size of the video preview so there are no black bars on the top or sides of the recorder window. -
noPlayback
- boolean | Turns off the review playback of the recorded video. -
noCameraMicControls
- boolean | Hides the camera, microphone, and quality popups. This may result in a user having an incorrect webcam or microphone selected and/or not having the ability to correct the issue.
Recorder JavaScript API
Controlling the Recorder
The webcam controller can be controlled using the following JavaScript functions:
-
doStartRecord()
– start the recording -
doStopRecord()
– stop recording -
doDelRecord()
– delete recorded footage -
doSaveRecord()
– save the footage
Callbacks
-
recordConnected()
when recorder swf connects to the recording service. -
recordAuthorised()
when recorder swf authorises it’s record token successfully. -
streamAccessDenied()
when a user denies Flash access to the camera and Microphone (by clicking “Deny” at the Flash prompt.) -
streamAccessAllowed()
when a user allows Flash access to the camera and Microphone (by clicking “Allow” at the Flash prompt.) -
recordStarted()
when user starts recording. -
recordStopped()
when user stops recording. -
recordBuffering(percent)
when the preview beings to buffer before playback. -
recordBufferFull()
when the recorded video buffer is complete and begins preview playback. -
recordFlushed()
when the recorder flushes the record buffer. After this callback, you can call the doDelRecord() or doSaveRecord() functions. -
recordDeleted()
when user decides to delete the footage and re-record. -
recordSave()
when user decides to save video (yet before the request is sent to the server for actual processing). -
recordDone(username, videoNum, videoKey)
– when a video is successfully registered with backend systems and accessible on the site, Passes along the Viddler username, video number and video key back.
Flash Player
Viddler's legacy Flash-based player comes in three flavors: Full, Simple, and Mini. The Full player has all features (video playback and interactive commenting), and as a result has increased load time and screen space. The Simple and Mini players only provide for video playback functionality.
Player Parameters
For 'boolean' entries, you can use either t/f, true/false, or 1/0. For example autoplay=t
will result in the video autoplaying on load.
-
key
- boolean; Required - video_id (Also referred to as "Key" or "Token") -
autoplay
- boolean; Starts the video automatically after the player is loaded -
loop
- boolean; Plays the video again as soon as playback completes -
nologo
- boolean; when true, hides the player logo display -
offsetTime
- integer; (in seconds) Start the video at the specified time -
openURL
orsecret
- string; Secret token of the video. Required if video is set to "Invitation Only" -
smooth
- boolean; Adobe Flash smoothing parameter -
deblock
- integer; Adobe Flash deblocking parameter -
hd
- boolean; If true, defaults to playing HD (720p or higher) video version -
hidestats
- boolean; Hides Stats on video end cap (Full player only) -
enablecallbacks
- boolean; Turns on simple JavaScript Callbacks (Deprecated) -
enablejsapi
- boolean; Turns on Flash Player API -
initialVolume
- int; Initial player volume (values from 0 to 100) -
newwindowclickthrough
- boolean; If true, Links will open in a new window/tab, if false links will open in the existing window/tab -
disablefullscreen
- boolean; if true the full screen button will be disabled/hidden -
framerate
- boolean; Flash Player Animation framerate (not applicable to video) (Default 10) (Deprecated) -
disableseek
- boolean; Disable seeking any direction in player -
disableforwardseek
- boolean; Disable seeking ahead of current play position -
disablebackwardseek
- boolean; Disable seeking behind current play position -
videobrowserfollowpermalink
- boolean; If set to true, the video post-roll interface will open the Video's permalink instead of loading the video inside the current player (Full player only) -
videobrowserfollowpermalinktarget
- string; Determines how the permalink (ifvideobrowserfollowpermalink
is true) is opened:current
opens video in current window (Default),new
opens a video in a new window/tab -
hidablecontrolbar
- boolean; Hide the control bar when not interacting with the player (Full or Simple player Only. The Mini player does this by default) displayUser
string; Username of the person commenting. This allows non-Viddler users to be identified when making a comment.
Customizing the Player
The Flash Players can have their colors altered on-the-fly, or via Viddler's settings on an account-wide basis.
-
disablebranding
– boolean; Sets player to default colors -
dark
– boolean; Change to false to put player in light mode -
activecolor
– hex color; Normal button (not plus button) clicked color -
hovercolor
– hex color; Normal button (not plus button) mouse hover color [full, simple, mini] -
inactivecolor
– hex color; Normal button (not plus button) idle color [full, simple, mini] -
activepluscolor
– hex color; Plus button clicked color [full] -
hoverpluscolor
– hex color; Plus button mouse hover color [full] -
inactivepluscolor
– hex color; Plus button idle color [full] -
barcolor
– hex color; Control bar color [full, simple, mini] -
timelineplay
– hex color; Timeline played part color [full, simple, mini] -
timelineload
– hex color; Timeline loaded part color [full, simple, mini] -
timelineback
– hex color; Timeline background color [full, simple, mini] -
enablestripes
– boolean; Change to false to hide stripes
LiveRail Integration
When using our Flash Player types, Advertising is handled through our partner, LiveRail. By default, we only send along basic information to identify your LiveRail account. If you need to make customizations (to allow more ads to appear, or for targeting) you will have to add parameters to your embed code.
Parameter Syntax
In LiveRail's documentation, the parameters use the LR_{tag_name}
syntax. When adding a parameter to a Flash Player embed code, you must use the format liveral{tag_name}={value}
For example, to add a content tag, you would use liverailTAGS=test
.
A Common Use Case: Configuring Mutliple In-Stream Ads
liverailADMAP=in::0
As single pre-roll ad (Default)
liverailADMAP=in::0;in::100%
1 pre-roll and 1 post-roll video ad
liverailADMAP=in:example_scenario:5%;ov::10%,50%
1 mid-roll from a test scenario and 1 overlay ad
<iframe id="viddler-51271da7" src="//www.viddler.com/embed/51271da7?f=1&autoplay=0&player=full&secret=64215889&loop=0&nologo=0&hd=0& liverailADMAP=in::0;in::100%" width="437" height="288" frameborder="0" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
As part of an embed code
The following syntax is used in this case: liverailADMAP={Type}:{Inventory_scenario_id}:{Time}
- Type: Allowed values are “in” (in-stream video) or “ov” (lower-third overlay ads)
- Inventory_scenario_id: The specified ID (This is usually a string of text, and not a set of numbers)
- Time: There are two time methods to use depending on the content Type
- n – for in-stream placements. “n” can either be elapsed time in seconds, or a percentage (
n%
) - n,m —for overlay ads. “n” can either be elapsed time in seconds, or a percentage, (
n%
) and “m” is the end time (total elapsed time in seconds, or a percentage (m%)
- n – for in-stream placements. “n” can either be elapsed time in seconds, or a percentage (
oEmbed
http://www.viddler.com/oembed/?format=json&url=http://www.viddler.com/v/bdce8c7
oEmbed is an open standard for embedding media into a web site using just a URL to retrieve the proper data.
Endpoint
The endpoint URL is http://www.viddler.com/oembed/
Parameters
-
url
- string; Required The full Viddler URL for a video (e.g.http://www.viddler.com/v/bdce8c7
) -
format
- string; The output format. Values arejson
orxml
. Defaults tojson
Flash Player API
The JavaScript API for our Flash Players are below. This allows control of the Flash player ONLY, the HTML 5 portion of the Flash Player embed does not accept these commands or trigger events.
Setting up
Add parameter to Embed Code
Make sure the enablejsapi=t
parameter is added to the embed code to enable the JavaScript functionality for a given video embed.
<script src="http://static.cdn-ec.viddler.com/js/vapi.js" type="text/javascript"><!--mce:0--></script>
Include the JavaScript Viddler Library
function getPlayer(player_id)
{
return Viddler(player_id);
}
Obtaining the Player Object
API Controls
Loading Video
cueVideoByKey and cueVideoByID
cueVideoByKey
and cueVideoByID
Loads the specified video’s thumbnail and prepares the player to play the video. The player does not request the FLV until playVideo() or seekTo() is called.
function cueVideoByKey(videoKey:String,
startSeconds:Number = 0,
suggestedQuality:String = null,
secretCode:String = null):void;
cueVideoByUsernameAndVideoNumber
cueVideoByUsernameAndVideoNumber
function cueVideoByUsernameAndVideoNumber(
username:String,
videoNumber:Number,
startSeconds:Number = 0,
suggestedQuality:String = null,
secretCode:String = null):void;
loadVideoByKey and loadVideoById
loadVideoByKey
and loadVideoById
Loads the specified video’s thumbnail and prepares the player to play the video. The player does not request the FLV until playVideo or seekTo is called.
function loadVideoByKey(videoKey:String,
startSeconds:Number = 0,
suggestedQuality:String = null,
secretCode:String = null):void;
loadVideoByUsernameAndVideoNumber
loadVideoByUsernameAndVideoNumber
Deprecated.
function loadVideoByUsernameAndVideoNumber(username:String,
videoNumber:Number,
startSeconds:Number = 0,
suggestedQuality:String = null,
secretCode:String = null):void;
Video Playback Controls
playVideo
playVideo
Plays the currently cued/loaded video.
function playVideo():void;
pauseVideo
pauseVideo
Pauses the currently playing video.
function pauseVideo():void;
stopVideo
stopVideo
Stops the current video. This function also cancels the loading of the video.
function stopVideo():void;
seekTo
seekTo
function seekTo(seconds:Number,
allowSeekAhead:Boolean = true):void;
Seeks to the specified time of the video in seconds. The seekTo() function will look for the closest keyframe before the seconds specified. This means that sometimes the play head may seek to just before the requested time, usually no more than ~2 seconds.
The allowSeekAhead parameter determines whether or not the player will make a new request to the server if seconds is beyond the currently loaded video data.
Volume Controls
mute
mute
function mute():void;
Mutes the player.
unMute
unMute
function unMute():void;
Unmutes the player.
isMuted
isMuted
function isMuted(callbackName:String = null):Boolean;
function isMuted():Boolean;
Returns if the player is muted, false if not
setVolume
setVolume
function setVolume(volume:Number):void;
Sets the volume. Accepts an integer between 0 and 100.
getVolume
getVolume
function getVolume(callbackName:String = null):Number;
function getVolume():Number;
Returns the player’s current volume, an integer between 0 and 100. Note that getVolume() will return the volume even if the player is muted.
Player Dimensions
setSize
setSize
Sets the player size (in pixels)
function setSize(width:Number, height:Number):void;
Playback Status
getVideoBytesLoaded
getVideoBytesLoaded
function getVideoBytesLoaded(callbackName:String = null):Number;
function getVideoBytesLoaded():Number;
Returns the current amount of data loaded (in bytes) for the current video.
getVideoSecondsLoaded
getVideoSecondsLoaded
function getVideoSecondsLoaded(callbackName:String = null):Number;
function getVideoSecondsLoaded():Number;
Returns the current amount of time loaded (in seconds) for the current video.
getVideoBytesTotal
getVideoBytesTotal
function ggetVideoBytesTotal(callbackName:String = null):Number;
function getVideoBytesTotal():Number;
Returns the total video size (in bytes) of the currently loaded video.
getVideoStartBytes
getVideoStartBytes
function getVideoStartBytes(callbackName:String = null):Number;
function getVideoStartBytes():Number;
Returns the total video size (in bytes) of the currently loaded video.
getVideoStartSeconds
getVideoStartSeconds
function getVideoStartSeconds(callbackName:String = null):Number;
function getVideoStartSeconds():Number;
Returns the number of bytes the video file started loading from. Example scenario: the user seeks ahead to a point that hasn’t loaded yet, and the player makes a new request to play a segment of the video that hasn’t loaded yet.
getCurrentTime
getCurrentTime
function getCurrentTime(callbackName:String = null):Number;
function getCurrentTime():Number;
Returns the elapsed time in seconds since the video started playing.
getPlayerState
getPlayerState
function getPlayerState(callbackName:String = null):Number;
function getPlayerState():Number;
Returns the state of the player. Possible values are: not started (-1), ended (0), playing (1), paused (2), buffering (3), video cued (5).
Playback Quality
getPlaybackQuality
getPlaybackQuality
function getPlaybackQuality(callbackName:String = null):String;
function getPlaybackQuality():String;
This function retrieves the actual video quality of the current video. It returns null if there is no current video. Possible return values are hd720
, high
, normal
.
setPlaybackQuality
setPlaybackQuality
This function sets the suggested video quality for the current video. The function causes the video to reload at its current position in the new quality. If the playback quality does change, it will only change for the video being played.
Calling this function does not guarantee that the playback quality will actually change. If the playback quality does change, it will only change for the video being played. At that time, the onPlaybackQualityChange event will fire, and your code should respond to the event rather than the fact that it called the setPlaybackQuality function.
The suggestedQuality parameter value can be normal, high, hd720 or default. Setting the parameter value to default instructs Viddler to select the most appropriate playback quality, which will vary for different users, videos, systems and other playback conditions.
If you call the setPlaybackQuality function with a suggestedQuality level that is not available for the video, then the quality will be set to the next lowest level that is available. For example, if you request a quality level of high, and that is unavailable, then the playback quality will be set to normal (as long as that quality level is available).
In addition, setting suggestedQuality to a value that is not a recognized quality level is equivalent to setting suggestedQuality to default.
function setPlaybackQuality(suggestedQuality:String):void;
getAvailableQualityLevels
getAvailableQualityLevels
function getAvailableQualityLevels(callbackName:String = null):Array;
function getAvailableQualityLevels():Array;
This function returns the set of quality formats in which the current video is available. You could use this function to determine whether the video is available in a higher quality than the user is viewing, and your player could display a button or other element to let the user adjust the quality.
The function returns an array of strings ordered from highest to lowest quality. Possible array element values are hd720, high, normal. This function returns an empty array if there is no current video.
Your client should not automatically switch to use the highest (or lowest) quality video or to any unknown format name. Viddler could expand the list of quality levels to include formats that may not be appropriate in your player context. Similarly, Viddler could remove quality options that would be detrimental to the user experience. By ensuring that your client only switches to known, available formats, you can ensure that your client’s performance will not be affected by either the introduction of new quality levels or the removal of quality levels that are not appropriate for your player context.
Video Data
getVideoKey
getVideoKey
function getVideoKey(callbackName:String = null):String;
function getVideoKey():String;
Returns key of the currently playing video Note that getVideoKey() will return null until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getDuration
getDuration
function getDuration(callbackName:String = null):Number;
function getDuration():Number;
Returns the duration in seconds of the currently playing video. Note that getDuration() will return 0 until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getVideoUrl
getVideoUrl
function getVideoUrl(offset:Number = 0,
callbackName:String = null):String;
function getVideoUrl(offset:Number = 0):String;
TReturns the Viddler.com URL or permalink for the currently loaded/playing video. Note that getVideoUrl() will return null until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getVideoEmbedCode
getVideoEmbedCode
function getVideoEmbedCode(playerUrl:String = null,
offset:Number = 0,
width:Number = 0,
height:Number = 0,
controlPanelHeight:Number = 0,
callbackName:String = null):String;
function getVideoEmbedCode(playerUrl:String = null,
offset:Number = 0,
width:Number = 0,
height:Number = 0,
controlPanelHeight:Number = 0):String;
Returns the embed code for the currently loaded/playing video. Note that getVideoEmbedCode() will return null until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getVideoTitle
getVideoTitle
function getPlaybackQuality(callbackName:String = null):String;
function getPlaybackQuality():String;
Returns title. Note that getVideoTitle() will return null until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getAuthorName
getAuthorName
function getAuthorName(callbackName:String = null):String;
function getAuthorName():String;
Returns video’s author’s name. Note that getAuthorName() will return null until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getAuthorAvatarUrl
getAuthorAvatarUrl
function getAuthorAvatarUrl(callbackName:String = null):String;
function getAuthorAvatarUrl():String;;
Returns video’s author’s avatar’s url. Note that getAuthorAvatarUrl() will return null until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getViewsCount
getViewsCount
function getViewsCount(callbackName:String = null):Number;
function getViewsCount():Number;
Returns number of views for current video. Note that getViewsCount() will always return -1 until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getCommentsCount
getCommentsCount
function getCommentsCount(callbackName:String = null):Number;
function getCommentsCount():Number;
Returns number of comments for current video. Note that getCommentsCount() will always return -1 until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
getFavoritesCount
getFavoritesCount
function getFavoritesCount(callbackName:String = null):Number;
function getFavoritesCount():Number;
Returns number of users that favorited this video. Note that getFavoritesCount() will always return -1 until the video’s info is loaded, which normally happens just after cueVideoBy* or loadVideoBy* call. Player state PLAYER_STATE_VIDEO_CUED indicates that video’s info is loaded.
Comments
CommentInfo
Data object representing comment. Properties in ActionScript and JavaScrip
public var dateAdded:Date; // date the comment was added
public var id:Number; // comment id
public var test:String; // comment content
public var videoId:Number; // id of video that this comment belongs to
public var posterId:Number; // id of comment author
public var posterImage:String; // url to avatar of comment author
public var posterName:String; // name of comment author
public var startTime:Number; // comment timepoint
public var rating:Number; // current comment rating
public var ratedAs:Number; // if -1 current user rated this comment negatively, if 1 current user rated this comment positively, if 0 current user didn't rate this comment
public var replyToId:number; // id of comment that this comment is a reply to
public var videoReply:Boolean; // true if this comment is video comment
public var videoUrl:String; // url to flv file of the video comment
public var moderationStatus:Number; // moderations status (-1 refused, 0 pending review, 1 approved, 2 denied)
getComments
getComments
function getComments(callbackName:String = null):Array;
function getComments():Array;
Returns comments of current video. This method returns array of CommentInfo
objects.
saveComment
saveComment
Saves comment as current user. This function will send request to Viddler's servers to save comment and upon receiving response it will dispatch event onSaveCommentResult
. text
is the comment’s content. startTime
is the comment’s timepoint in seconds (float). replyToId
is the parent comment’s id (this is passed to function when we want to indicate that this comment is a response). username
is user’s name used only when player is in anonymous commenting mode.
function saveComment(text:String,
startTime:Number,
replyToId:Number = 0,
username:String = null):void;
deleteComments
deleteComments
Delete comment. id is comment’s id. This function will send request to viddler’s server to delete comment and upon receiving response it will dispatch event: onDeleteCommentResult.
function deleteComment(id:Number):void;
rateComment
rateComment
Rates comment. id
is comment’s id. rating
is user’s rating of current comment: -1
negative, 0
neutral, 1 positive. This function will send a request to Viddler’s server to rate the comment and it will dispatch event onRateCommentResult
on completion.
function rateComment(id:Number, rating:Number):void;
Event Listeners
addEventListener
addEventListener
function addEventListener(type:String,
listenerName:String):void
function addEventListener(type:String,
listener:Function,
useCapture:Boolean=false,
priority:int=0,
useWeakReference:Boolean=false):void;
This Function differs depending on the language in use:
JavaScript: Adds a listener function for the specified event. The Events section identifies the different events that the player might fire. The listenerName is a name off the function that will execute when the specified event fires.
ActionScript 3: Adds a listener function for the specified event. The Events section identifies the different events that the player might fire. The listener is a reference to the function that will execute when the specified event fires.
Events
onReady
onReady
This event is fired when the player is loaded and initialized, meaning it is ready to receive API calls.
onStateChange
onStateChange
This event is fired whenever the player’s state changes. Possible values are not started (-1), ended (0), playing (1), paused (2), buffering (3), video cued (5). When the SWF is first loaded it will broadcast an unstarted (-1) event. When the video is cued and ready to play it will broadcast a video cued event (5).
onPlaybackQualityChange
onPlaybackQualityChange
This event is fired whenever the video playback quality changes. For example, if you call the setPlaybackQuality
function, this event will fire if the playback quality actually changes. Your code should respond to the event and should not assume that the quality will automatically change when the setPlaybackQuality
function is called. Similarly, your code should not assume that playback quality will only change as a result of an explicit call to setPlaybackQuality
or any other function that allows you to set a suggested playback quality.
The value that the event broadcasts is the new playback quality. Possible values are “normal”, “high” and “hd720″.
onError
onError
This event is fired when an error in the player occurs. The possible error codes are 100 and 111. The 100 error code is broadcast when the video requested is not found. This occurs when a video has been removed (for any reason) or it never existed in the first place. Verbose meaning of 100 error is ‘not found’. The 111 error code is broadcast when the video requested is marked as private or is not available to current user. Verbose meaning of 111 error is ‘forbidden’.
onBrandingUpdate
onBrandingUpdate
This event is fired when new branding info is loaded. Data contains new BrandingInfo
object. If data is null
, skin should use default branding.
onSecurityUpdate
onSecurityUpdate
This event is fired when security is updated after loading new video info or updating old one. Data property contains SecurityManagerInterface
instance.
onSaveCommentResult
onSaveCommentResult
This event is fired when saveComment
function is called. Data contains new CommentInfo
object if saving was successful or null
if player wasn’t able to save the comment.
onRateCommentResult
onRateCommentResult
This event is fired when rateComment function
is called. Data contains result: 0
success, 1
error.
onDeleteCommentResult
onDeleteCommentResult
This event is fired when deleteComment
function is called. Data contains result: 0
success, 1
error.
Examples
Loading the Player
See the sidebar to the right to learn how load the player in ActionScript 3.
package {
import flash.display.Loader;
import flash.display.Sprite;
import flash.events.Event;
import flash.net.URLRequest;
import flash.system.Security;
public class LoadExample extends Sprite {
// This loader will be used to load chromeless player
private var loader:Loader;
// This will hold chromeless player instance
private var player:Object;
public function LoadExample() {
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);
loader.load(new URLRequest("http://www.viddler.com/chromeless/"));
}
private function onLoaderInit(event:Event):void {
addChild(loader);
Security.allowDomain(loader.contentLoaderInfo.url);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_READY, onPlayerReady);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_ERROR, onPlayerError);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_STATE_CHANGE, onPlayerStateChange);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_PLAYBACK_QUALITY_CHANGE, onPlayerPlaybackQualityChange);
}
private function onPlayerReady(event:Event):void {
trace('player ready:', Object(event).data);
player = loader.content;
player.setSize(480, 360);
}
private function onPlayerError(event:Event):void {
trace('player error:', Object(event).data);
}
private function onPlayerStateChange(event:Event):void {
trace('player state:', Object(event).data);
}
private function onPlayerPlaybackQualityChange(event:Event):void {
trace('video quality:', Object(event).data);
}
}
}
Example Skin
You can download a example skin here. The source is also available on Github.
package {
import flash.display.Graphics;
import flash.display.Loader;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.events.TimerEvent;
import flash.net.URLRequest;
import flash.system.Security;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.utils.Timer;
[SWF(width="600", height="400", fps="10")]
public class ExampleSkin extends Sprite {
private var loader:Loader;
private var player:Object;
private var playButton:Sprite;
private var stopButton:Sprite;
private var statusField:TextField;
private var volumeField:TextField;
private var bytesTotalField:TextField;
private var bytesLoadedField:TextField;
private var bytesStartField:TextField;
private var durationField:TextField;
private var currentTimeField:TextField;
public function ExampleSkin() {
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
createButtons();
createFields();
stage.addEventListener(Event.RESIZE, onStageResize);
var timer:Timer = new Timer(250);
timer.addEventListener(TimerEvent.TIMER, onTimer);
timer.start();
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);
if (loaderInfo.url.charAt(0) == 'f') {
loader.load(new URLRequest("ChromelessPublisher.swf"));
} else {
loader.load(new URLRequest("http://www.viddler.com/chromeless/"));
}
}
private function onLoaderInit(event:Event):void {
trace('onLoaderInit, event:', event);
addChild(loader);
Security.allowDomain(loader.content.loaderInfo.url);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_READY, onPlayerReady);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_ERROR, onPlayerError);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_STATE_CHANGE, onPlayerStateChange);
loader.content.addEventListener(ChromelessPlayerConstants.EVENT_PLAYBACK_QUALITY_CHANGE, onPlayerPlaybackQualityChange);
}
private function onPlayerReady(event:Event):void {
trace('onPlayerReady, event:', event);
player = loader.content;
addChild(stopButton);
addChild(playButton);
addChild(statusField);
addChild(volumeField);
addChild(bytesTotalField);
addChild(bytesLoadedField);
addChild(bytesStartField);
addChild(durationField);
addChild(currentTimeField);
onStageResize(null);
player.cueVideoByKey('e304f492');
// player.loadVideoByKey('e304f492');
}
private function onPlayerError(event:Event):void {
trace('onPlayerError, event: ' + event);
}
private function onPlayerStateChange(event:Event):void {
trace('onPlayerStateChange, event: ' + event);
var data:Number = Object(event).data;
if (data == ChromelessPlayerConstants.PLAYER_STATE_UNSTARTED) {
updateStatus('unstarted');
removeButtonClickListener(playButton, playButtonClickListener);
} else if (data == ChromelessPlayerConstants.PLAYER_STATE_ENDED) {
updateStatus('ended');
setButtonLabel(playButton, 'replay');
addButtonClickListener(playButton, playButtonClickListener);
removeButtonClickListener(stopButton, stopButtonClickListener);
} else if (data == ChromelessPlayerConstants.PLAYER_STATE_PLAYING) {
setButtonLabel(playButton, 'pause');
addButtonClickListener(playButton, playButtonClickListener);
updateStatus('playing');
addButtonClickListener(stopButton, stopButtonClickListener);
} else if (data == ChromelessPlayerConstants.PLAYER_STATE_PAUSED) {
setButtonLabel(playButton, 'play');
addButtonClickListener(playButton, playButtonClickListener);
updateStatus('paused');
addButtonClickListener(stopButton, stopButtonClickListener);
} else if (data == ChromelessPlayerConstants.PLAYER_STATE_BUFFERING) {
setButtonLabel(playButton, 'pause');
addButtonClickListener(playButton, playButtonClickListener);
updateStatus('buffering');
addButtonClickListener(stopButton, stopButtonClickListener);
} else if (data == ChromelessPlayerConstants.PLAYER_STATE_VIDEO_CUED) {
setButtonLabel(playButton, 'play');
addButtonClickListener(playButton, playButtonClickListener);
updateStatus('video cued');
}
}
private function onPlayerPlaybackQualityChange(event:Event):void {
trace('onPlayerPlaybackQualityChange, event:', event);
}
private function onStageResize(event:Event):void {
trace('onStageResize, event:', event);
if (player != null) {
player.setSize(stage.stageWidth, stage.stageHeight);
}
var padding:Number = 10;
var y:Number = stage.stageHeight - 30;
stopButton.x = padding;
stopButton.y = y;
playButton.x = stopButton.x + stopButton.width + padding;
playButton.y = y;
statusField.x = padding;
statusField.y = padding;
volumeField.x = statusField.x;
volumeField.y = statusField.y + statusField.height + padding;
bytesTotalField.x = volumeField.x;
bytesTotalField.y = volumeField.y + volumeField.height + padding;
bytesLoadedField.x = bytesTotalField.x;
bytesLoadedField.y = bytesTotalField.y + bytesTotalField.height + padding;
bytesStartField.x = bytesLoadedField.x;
bytesStartField.y = bytesLoadedField.y + bytesLoadedField.height + padding;
durationField.x = bytesStartField.x;
durationField.y = bytesStartField.y + bytesStartField.height + padding;
currentTimeField.x = durationField.x;
currentTimeField.y = durationField.y + durationField.height + padding;
}
private function createTextField():TextField {
var textField:TextField = new TextField();
textField = new TextField();
textField.background = true;
textField.backgroundColor = 0xFFFFFF;
textField.selectable = false;
textField.autoSize = TextFieldAutoSize.LEFT;
textField.text = 'none';
return textField;
}
//
// Fields
//
private function createFields():void {
statusField = createTextField();
volumeField = createTextField();
updateVolume(0);
bytesTotalField = createTextField();
updateBytesTotal(0);
bytesLoadedField = createTextField();
updateBytesLoaded(0);
bytesStartField = createTextField();
updateBytesStart(0);
durationField = createTextField();
updateDuration(0);
currentTimeField = createTextField();
updateCurrentTime(0);
}
private function updateStatus(status:String):void {
statusField.text = status;
}
private function updateVolume(volume:Number):void {
volumeField.text = 'Volume: ' + volume;
}
private function updateBytesLoaded(bytesLoaded:Number):void {
bytesLoadedField.text = 'Bytes loaded: ' + bytesLoaded;
}
private function updateBytesTotal(bytesTotal:Number):void {
bytesTotalField.text = 'Bytes total: ' + bytesTotal;
}
private function updateBytesStart(bytesStart:Number):void {
bytesStartField .text = 'Bytes start: ' + bytesStart;
}
private function updateDuration(duration:Number):void {
durationField.text = 'Duration: ' + duration;
}
private function updateCurrentTime(currentTime:Number):void {
currentTimeField.text = 'Current time: ' + currentTime;
}
//
// Update timer
//
private function onTimer(event:TimerEvent):void {
if (player) {
updateVolume(player.getVolume());
updateBytesLoaded(player.getVideoBytesLoaded());
updateBytesTotal(player.getVideoBytesTotal());
updateBytesStart(player.getVideoStartBytes());
updateDuration(player.getDuration());
updateCurrentTime(player.getCurrentTime());
}
}
//
// Buttons
//
private function createButtons():void {
playButton = createPlayButton();
stopButton = createStopButton();
}
private function createPlayButton():Sprite {
return createButton('play');
}
private function createStopButton():Sprite {
return createButton('stop');
}
private function playButtonClickListener(e:MouseEvent):void {
if (getButtonTextField(playButton).text == 'play') {
player.playVideo();
} else if (getButtonTextField(playButton).text == 'pause') {
player.pauseVideo();
} else if (getButtonTextField(playButton).text == 'replay') {
player.seekTo(0);
player.playVideo();
}
}
private function stopButtonClickListener(e:MouseEvent):void {
player.stopVideo();
}
private function createButton(label:String):Sprite {
var tf:TextField = new TextField();
tf.autoSize = TextFieldAutoSize.LEFT;
tf.background = true;
tf.backgroundColor = 0xFFFFFF;
tf.text = label;
tf.selectable = false;
var s:Sprite = new Sprite();
s.addChild(tf);
tf.x = 0;
tf.y = 0;
var m:Sprite = new Sprite();
s.addChild(m);
var g:Graphics = m.graphics;
g.beginFill(0xFFFFFF, 0.3);
g.drawRect(0, 0, tf.width, tf.height);
g.endFill();
m.x = 0;
m.y = 0;
s.addEventListener(MouseEvent.ROLL_OVER, buttonRollOverListener);
s.addEventListener(MouseEvent.ROLL_OUT, buttonRollOutListener);
return s;
}
private function buttonRollOverListener(e:MouseEvent):void {
getButtonTextField(e.target).backgroundColor = 0xCCCCCC;
}
private function buttonRollOutListener(e:MouseEvent):void {
getButtonTextField(e.target).backgroundColor = 0xFFFFFF;
}
private function getButtonTextField(o:Object):TextField {
return (o as Sprite).getChildAt(0) as TextField;
}
private function addButtonClickListener(button:Sprite, listener:Function):void {
button.addEventListener(MouseEvent.CLICK, listener);
button.buttonMode = true;
}
private function removeButtonClickListener(button:Sprite, listener:Function):void {
button.removeEventListener(MouseEvent.CLICK, listener);
button.buttonMode = false;
}
private function setButtonLabel(o:Sprite, label:String):void {
getButtonTextField(o).text = label;
}
}
}