This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <video id="clarify_video" class="video-js vjs-default-skin" | |
| controls preload="auto" width="640" height="264" | |
| data-setup='{"example_option":true}'> | |
| <source src="http://example.com/clarify-video.mp4" type='video/mp4' /> | |
| <source src="http://example.com/clarify-video.webm" type='video/webm' /> | |
| <source src="http://example.com/clarify-video.ogv" type='video/ogg' /> | |
| <track kind="captions" src="http://example.com/path/to/captions.vtt" srclang="en" label="English" default> | |
| </video> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="http://vjs.zencdn.net/5.0/video-js.min.css" rel="stylesheet"> | |
| <script src="http://vjs.zencdn.net/5.0/video.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl https://api.clarify.io/v1/bundles/abcde12345/insights/fadbe23456 \ | |
| --header "Authorization: Bearer myapikey" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl --data "insight=captions_r9" https://api.clarify.io/v1/bundles/abcde12345/insights \ | |
| --header "Authorization: Bearer myapikey" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl --data "media_url=http://media.clarify.io/video/presentations/SirKenRobinson-TED2006-How-Schools-Kill-Creativity.mp4" \ | |
| --data "name=Sir Ken Robinson – TED 2006" https://api.clarify.io/v1/bundles \ | |
| --X POST --header "Authorization: Bearer myapikey" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "bundle_id": "abcde12345", | |
| "created": "2015-05-16T20:39:37.507Z", | |
| "id": "54321edcba", | |
| "name": "spoken_keywords", | |
| "status": "ready", | |
| "track_data": [ | |
| { | |
| "keywords": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl https://api.clarify.io/v1/bundles/abcde12345/insights/54321edcba \ | |
| --header "Authorization: Bearer myapikey" | jq '.' | |
| # The jq portion is optional and just used to pretty print the resulting json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id":"abcde12345", | |
| "_class":"Ref", | |
| "_links":{ | |
| "self":{ | |
| "href":"/v1/bundles/abcde12345" | |
| }, | |
| "curies":[ | |
| { | |
| "href":"/docs/rels/{rel}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl --data "media_url=http://media.clarify.io/audio/books/dorothyandthewizardinoz_01_baum_64kb.mp3" \ | |
| --data "notify_url=http://example.org/sample-receiver" \ | |
| --data "name=Dorothy and the Wizard of Oz" https://api.clarify.io/v1/bundles \ | |
| --X POST --header "Authorization: Bearer myapikey" | jq '.' | |
| # The jq portion is optional and just used to pretty print the resulting json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl https://api.clarify.io/v1/search?query=compris \ | |
| --data "language=fr" \ | |
| --header "Authorization: Bearer myapikey" |