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