From 1e1ee3463cb16c4d7a7d8442b74abe7810a05a44 Mon Sep 17 00:00:00 2001 From: jos Date: Wed, 26 Jun 2019 17:24:09 +0200 Subject: [PATCH] Implemented `preview` mode (WIP) --- src/css/jsoneditor.css | 24 +- src/css/statusbar.css | 3 +- src/js/JSONEditor.js | 4 +- src/js/ModeSwitcher.js | 7 + src/js/i18n.js | 2 + src/js/previewmode.js | 464 ++ src/js/showTransformModal.js | 12 +- src/js/textmode.js | 1 - src/js/util.js | 38 +- test/largefile.json | 12605 --------------------------------- test/util.test.js | 11 + 11 files changed, 554 insertions(+), 12617 deletions(-) create mode 100644 src/js/previewmode.js delete mode 100644 test/largefile.json diff --git a/src/css/jsoneditor.css b/src/css/jsoneditor.css index d0f78b0..6355878 100644 --- a/src/css/jsoneditor.css +++ b/src/css/jsoneditor.css @@ -280,6 +280,23 @@ div.jsoneditor-outer.has-nav-bar.has-main-menu-bar { padding-top: 61px; } +div.jsoneditor pre.jsoneditor-preview { + +} + +div.jsoneditor code.jsoneditor-preview { + background: none; +} + +div.jsoneditor.jsoneditor-mode-preview pre.jsoneditor-preview { + width: 100%; + height: 100%; + overflow: hidden; + margin: 2px; + white-space: pre-wrap; + word-break: break-all; +} + textarea.jsoneditor-text, .ace-jsoneditor { min-height: 150px; @@ -353,16 +370,13 @@ div.jsoneditor-value, div.jsoneditor td, div.jsoneditor th, div.jsoneditor textarea, -.jsoneditor-schema-error { +div.jsoneditor pre.jsoneditor-preview, +div.jsoneditor .jsoneditor-schema-error { font-family: "dejavu sans mono", "droid sans mono", consolas, monaco, "lucida console", "courier new", courier, monospace, sans-serif; font-size: 10pt; color: #1A1A1A; } - - - - /* popover */ .jsoneditor-schema-error { cursor: default; diff --git a/src/css/statusbar.css b/src/css/statusbar.css index c7bce4f..909b378 100644 --- a/src/css/statusbar.css +++ b/src/css/statusbar.css @@ -11,7 +11,8 @@ div.jsoneditor-statusbar { font-size: 10pt; } -div.jsoneditor-statusbar > .jsoneditor-curserinfo-label { +div.jsoneditor-statusbar > .jsoneditor-curserinfo-label, +div.jsoneditor-statusbar > .jsoneditor-size-info { margin: 0 2px 0 4px; } diff --git a/src/js/JSONEditor.js b/src/js/JSONEditor.js index 5906978..b4e03a3 100644 --- a/src/js/JSONEditor.js +++ b/src/js/JSONEditor.js @@ -13,6 +13,7 @@ var VanillaPicker = require('./vanilla-picker'); // may be undefined in case of var treemode = require('./treemode'); var textmode = require('./textmode'); +var previewmode = require('./previewmode'); var util = require('./util'); if (typeof Promise === 'undefined') { @@ -472,9 +473,10 @@ JSONEditor.registerMode = function (mode) { } }; -// register tree and text modes +// register tree, text, and preview modes JSONEditor.registerMode(treemode); JSONEditor.registerMode(textmode); +JSONEditor.registerMode(previewmode); // expose some of the libraries that can be used customized JSONEditor.ace = ace; diff --git a/src/js/ModeSwitcher.js b/src/js/ModeSwitcher.js index 3de4ce8..da1a71c 100644 --- a/src/js/ModeSwitcher.js +++ b/src/js/ModeSwitcher.js @@ -48,6 +48,13 @@ function ModeSwitcher(container, modes, current, onSwitch) { 'click': function () { onSwitch('view'); } + }, + preview: { + 'text': translate('modePreviewText'), + 'title': translate('modePreviewTitle'), + 'click': function () { + onSwitch('preview'); + } } }; diff --git a/src/js/i18n.js b/src/js/i18n.js index d80d3a8..b04b1cc 100644 --- a/src/js/i18n.js +++ b/src/js/i18n.js @@ -90,6 +90,8 @@ var _defs = { modeTreeTitle: 'Switch to tree editor', modeViewText: 'View', modeViewTitle: 'Switch to tree view', + modePreviewText: 'Preview', + modePreviewTitle: 'Switch to preview mode', examples: 'Examples', default: 'Default', }, diff --git a/src/js/previewmode.js b/src/js/previewmode.js new file mode 100644 index 0000000..f9f6dbc --- /dev/null +++ b/src/js/previewmode.js @@ -0,0 +1,464 @@ +'use strict'; + +var jmespath = require('jmespath'); +var translate = require('./i18n').translate; +var ModeSwitcher = require('./ModeSwitcher'); +var showSortModal = require('./showSortModal'); +var showTransformModal = require('./showTransformModal'); +var util = require('./util'); + +// create a mixin with the functions for text mode +var previewmode = {}; + +var DEFAULT_MODAL_ANCHOR = document.body; // TODO: this constant is defined multiple times +var MAX_PREVIEW_CHARACTERS = 100000; // should be enough to fill the editor window + +/** + * Create a JSON document preview, suitable for processing of large documents + * @param {Element} container + * @param {Object} [options] Object with options. available options: + * {String} mode Available values: "preview". + * {Number} indentation Number of indentation + * spaces. 2 by default. + * {function} onChange Callback method triggered on change. + * Does not pass the changed contents. + * {function} onChangeText Callback method, triggered + * in modes on change of contents, + * passing the changed contents + * as stringified JSON. + * {function} onModeChange Callback method + * triggered after setMode + * {boolean} escapeUnicode If true, unicode + * characters are escaped. + * false by default. + * @private + */ +previewmode.create = function (container, options) { + // read options + options = options || {}; + + if (typeof options.statusBar === 'undefined') { + options.statusBar = true; + } + + // setting default for previewmode + options.mainMenuBar = options.mainMenuBar !== false; + options.enableSort = options.enableSort !== false; + options.enableTransform = options.enableTransform !== false; + + this.options = options; + + // indentation + if (options.indentation) { + this.indentation = Number(options.indentation); + } + else { + this.indentation = 2; // number of spaces + } + + // determine mode + this.mode = 'preview'; + + var me = this; + this.container = container; + this.dom = {}; + + this.json = undefined; + this.text = ''; + + // TODO: JSON Schema support + + // create a debounced validate function + this._debouncedValidate = util.debounce(this.validate.bind(this), this.DEBOUNCE_INTERVAL); + + this.width = container.clientWidth; + this.height = container.clientHeight; + + this.frame = document.createElement('div'); + this.frame.className = 'jsoneditor jsoneditor-mode-preview'; + this.frame.onclick = function (event) { + // prevent default submit action when the editor is located inside a form + event.preventDefault(); + }; + + this.content = document.createElement('div'); + this.content.className = 'jsoneditor-outer'; + + this.dom.previewContent = document.createElement('pre'); + this.dom.previewContent.className = 'jsoneditor-preview'; + this.dom.previewText = document.createTextNode(''); + this.dom.previewContent.appendChild(this.dom.previewText); + this.content.appendChild(this.dom.previewContent); + + if (this.options.mainMenuBar) { + util.addClassName(this.content, 'has-main-menu-bar'); + + // create menu + this.menu = document.createElement('div'); + this.menu.className = 'jsoneditor-menu'; + this.frame.appendChild(this.menu); + + // create format button + var buttonFormat = document.createElement('button'); + buttonFormat.type = 'button'; + buttonFormat.className = 'jsoneditor-format'; + buttonFormat.title = 'Format JSON data, with proper indentation and line feeds (Ctrl+\\)'; + this.menu.appendChild(buttonFormat); + buttonFormat.onclick = function () { + try { + me.format(); + me._onChange(); + } + catch (err) { + me._onError(err); + } + }; + + // create compact button + var buttonCompact = document.createElement('button'); + buttonCompact.type = 'button'; + buttonCompact.className = 'jsoneditor-compact'; + buttonCompact.title = 'Compact JSON data, remove all whitespaces (Ctrl+Shift+\\)'; + this.menu.appendChild(buttonCompact); + buttonCompact.onclick = function () { + try { + me.compact(); + me._onChange(); + } + catch (err) { + me._onError(err); + } + }; + + // create sort button + if (this.options.enableSort) { + var sort = document.createElement('button'); + sort.type = 'button'; + sort.className = 'jsoneditor-sort'; + sort.title = translate('sortTitleShort'); + sort.onclick = function () { + me._showSortModal(); + }; + this.menu.appendChild(sort); + } + + // create transform button + if (this.options.enableTransform) { + var transform = document.createElement('button'); + transform.type = 'button'; + transform.title = translate('transformTitleShort'); + transform.className = 'jsoneditor-transform'; + transform.onclick = function () { + me._showTransformModal(); + }; + this.menu.appendChild(transform); + } + + // create repair button + var buttonRepair = document.createElement('button'); + buttonRepair.type = 'button'; + buttonRepair.className = 'jsoneditor-repair'; + buttonRepair.title = 'Repair JSON: fix quotes and escape characters, remove comments and JSONP notation, turn JavaScript objects into JSON.'; + this.menu.appendChild(buttonRepair); + buttonRepair.onclick = function () { + try { + me.repair(); + me._onChange(); + } + catch (err) { + me._onError(err); + } + }; + + // create mode box + if (this.options && this.options.modes && this.options.modes.length) { + this.modeSwitcher = new ModeSwitcher(this.menu, this.options.modes, this.options.mode, function onSwitch(mode) { + // switch mode and restore focus + me.setMode(mode); + me.modeSwitcher.focus(); + }); + } + } + + this.frame.appendChild(this.content); + this.container.appendChild(this.frame); + + if (options.statusBar) { + util.addClassName(this.content, 'has-status-bar'); + + var statusBar = document.createElement('div'); + this.dom.statusBar = statusBar; + statusBar.className = 'jsoneditor-statusbar'; + this.frame.appendChild(statusBar); + + this.dom.sizeInfo = document.createElement('span'); + this.dom.sizeInfo.className = 'jsoneditor-size-info'; + this.dom.sizeInfo.innerText = ''; + + statusBar.appendChild(this.dom.sizeInfo); + } + + this.renderPreview(); + + this.setSchema(this.options.schema, this.options.schemaRefs); +}; + +previewmode.renderPreview = function () { + var text = this.getText(); + + this.dom.previewText.nodeValue = (text.length > MAX_PREVIEW_CHARACTERS) + ? (text.slice(0, MAX_PREVIEW_CHARACTERS) + '...') + : text; + + this.dom.sizeInfo.innerText = 'Size: ' + util.formatSize(text.length) +}; + +/** + * Handle a change: + * - Validate JSON schema + * - Send a callback to the onChange listener if provided + * @private + */ +previewmode._onChange = function () { + if (this.onChangeDisabled) { + return; + } + + // validate JSON schema (if configured) + this._debouncedValidate(); + + // trigger the onChange callback + if (this.options.onChange) { + try { + this.options.onChange(); + } + catch (err) { + console.error('Error in onChange callback: ', err); + } + } + + // trigger the onChangeText callback + if (this.options.onChangeText) { + try { + this.options.onChangeText(this.getText()); + } + catch (err) { + console.error('Error in onChangeText callback: ', err); + } + } +}; + +/** + * Open a sort modal + * @private + */ +previewmode._showSortModal = function () { + var me = this; + var container = this.options.modalAnchor || DEFAULT_MODAL_ANCHOR; + var json = this.get(); + + function onSort (sortedBy) { + if (Array.isArray(json)) { + var sortedJson = util.sort(json, sortedBy.path, sortedBy.direction); + + me.sortedBy = sortedBy + me.set(sortedJson); + } + + if (util.isObject(json)) { + var sortedJson = util.sortObjectKeys(json, sortedBy.direction); + + me.sortedBy = sortedBy; + me.set(sortedJson); + } + } + + showSortModal(container, json, onSort, me.sortedBy) +} + +/** + * Open a transform modal + * @private + */ +previewmode._showTransformModal = function () { + var me = this; + var anchor = this.options.modalAnchor || DEFAULT_MODAL_ANCHOR; + var json = this.get(); + showTransformModal(anchor, json, function (query) { + var updatedJson = jmespath.search(json, query); + me.set(updatedJson); + }) +} + +/** + * Destroy the editor. Clean up DOM, event listeners, and web workers. + */ +previewmode.destroy = function () { + if (this.frame && this.container && this.frame.parentNode == this.container) { + this.container.removeChild(this.frame); + } + + if (this.modeSwitcher) { + this.modeSwitcher.destroy(); + this.modeSwitcher = null; + } + + this._debouncedValidate = null; +}; + +/** + * Compact the code in the text editor + */ +previewmode.compact = function () { + var json = this.get(); + var text = JSON.stringify(json); + this.setText(text); + + // we know that in this case the json is still the same + this.json = json; +}; + +/** + * Format the code in the text editor + */ +previewmode.format = function () { + var json = this.get(); + var text = JSON.stringify(json, null, this.indentation); + this.setText(text); + + // we know that in this case the json is still the same + this.json = json; +}; + +/** + * Repair the code in the text editor + */ +previewmode.repair = function () { + var text = this.getText(); + var sanitizedText = util.sanitize(text); + this.setText(sanitizedText); +}; + +/** + * Set focus to the formatter + */ +previewmode.focus = function () { + // TODO: implement method focus +}; + +/** + * Set json data in the formatter + * @param {*} json + */ +previewmode.set = function(json) { + this.text = undefined; + this.json = json; + + this.renderPreview(); +}; + +/** + * Update data. Same as calling `set` in text/code mode. + * @param {*} json + */ +previewmode.update = function(json) { + this.set(json); +}; + +/** + * Get json data from the formatter + * @return {*} json + */ +previewmode.get = function() { + if (this.json === undefined) { + var text = this.getText(); + + try { + console.time('parse') // TODO: cleanup + this.json = util.parse(text); // this can throw an error + console.timeEnd('parse') // TODO: cleanup + } + catch (err) { + // try to sanitize json, replace JavaScript notation with JSON notation + text = util.sanitize(text); + + // try to parse again + this.json = util.parse(text); // this can throw an error + } + } + + return this.json; +}; + +/** + * Get the text contents of the editor + * @return {String} jsonText + */ +previewmode.getText = function() { + if (this.text === undefined) { + console.time('stringify') // TODO: cleanup + this.text = JSON.stringify(this.json, null, this.indentation); + console.timeEnd('stringify') // TODO: cleanup + + if (this.options.escapeUnicode === true) { + console.time('escape') // TODO: cleanup + this.text = util.escapeUnicodeChars(this.text); + console.timeEnd('escape') // TODO: cleanup + } + } + + return this.text; +}; + +/** + * Set the text contents of the editor + * @param {String} jsonText + */ +previewmode.setText = function(jsonText) { + if (this.options.escapeUnicode === true) { + console.time('escape') // TODO: cleanup + this.text = util.escapeUnicodeChars(jsonText); + console.timeEnd('escape') // TODO: cleanup + } + else { + this.text = jsonText; + } + this.json = undefined; + + this.renderPreview(); + + // validate JSON schema + this._debouncedValidate(); +}; + +/** + * Update the text contents + * @param {string} jsonText + */ +previewmode.updateText = function(jsonText) { + // don't update if there are no changes + if (this.getText() === jsonText) { + return; + } + + this.onChangeDisabled = true; // don't fire an onChange event + this.setText(jsonText); + this.onChangeDisabled = false; +}; + +/** + * Validate current JSON object against the configured JSON schema + * Throws an exception when no JSON schema is configured + */ +previewmode.validate = function () { + // FIXME: implement validate (also support custom validation) +}; + +// define modes +module.exports = [ + { + mode: 'preview', + mixin: previewmode, + data: 'json' + } +]; diff --git a/src/js/showTransformModal.js b/src/js/showTransformModal.js index 6533479..24d8b58 100644 --- a/src/js/showTransformModal.js +++ b/src/js/showTransformModal.js @@ -252,14 +252,22 @@ function showTransformModal (container, json, onTransform) { function updatePreview() { try { + console.time('transform') // TODO: cleanup var transformed = jmespath.search(value, query.value); - var lines = JSON.stringify(transformed, null, 2).split('\n'); + console.timeEnd('transform') // TODO: cleanup + + console.time('stringify') // TODO: cleanup + var lines = JSON.stringify(transformed, null, 2) + console.timeEnd('stringify') // TODO: cleanup + + console.time('split') // TODO: cleanup + lines = lines.split('\n'); // FIXME: remove split, it's slow + console.timeEnd('split') // TODO: cleanup if (lines.length > MAX_PREVIEW_LINES) { lines = lines.slice(0, MAX_PREVIEW_LINES).concat(['...']) } - preview.className = 'jsoneditor-transform-preview'; preview.value = lines.join('\n'); ok.disabled = false; diff --git a/src/js/textmode.js b/src/js/textmode.js index 2aec908..ed5b53e 100644 --- a/src/js/textmode.js +++ b/src/js/textmode.js @@ -179,7 +179,6 @@ textmode.create = function (container, options) { this.menu.appendChild(sort); } - // TODO // create transform button if (this.options.enableTransform) { var transform = document.createElement('button'); diff --git a/src/js/util.js b/src/js/util.js index f6e0a67..5192e8c 100644 --- a/src/js/util.js +++ b/src/js/util.js @@ -6,6 +6,8 @@ var jsonlint = require('./assets/jsonlint/jsonlint'); var jsonMap = require('json-source-map'); var translate = require('./i18n').translate; +var MAX_ITEMS_FIELDS_COLLECTION = 10000; + /** * Parse JSON using the parser built-in in the browser. * On exception, the jsonString is validated and a detailed error is thrown. @@ -1213,9 +1215,11 @@ exports.getChildPaths = function (json, includeObjects) { } if (Array.isArray(json)) { - json.forEach(function (item) { + var max = Math.min(json.length, MAX_ITEMS_FIELDS_COLLECTION); + for (var i = 0; i < max; i++) { + var item = json[i]; getObjectChildPaths(item, pathsMap, '', includeObjects); - }); + } } else { pathsMap[''] = true; @@ -1296,6 +1300,36 @@ exports.parseString = function(str) { } }; +/** + * Return a human readable document size + * For example formatSize(7570718) outputs '7.2 MiB' + * @param {number} size + * @return {string} Returns a human readable size + */ +exports.formatSize = function (size) { + if (size < 900) { + return size.toFixed() + ' B'; + } + + var KiB = size / 1024; + if (KiB < 900) { + return KiB.toFixed(1) + ' KiB'; + } + + var MiB = KiB / 1024; + if (MiB < 900) { + return MiB.toFixed(1) + ' MiB'; + } + + var GiB = MiB / 1024; + if (GiB < 900) { + return GiB.toFixed(1) + ' GiB'; + } + + var TiB = GiB / 1024; + return TiB.toFixed(1) + ' TiB'; +} + /** * Test whether a value is an Object * @param {*} value diff --git a/test/largefile.json b/test/largefile.json deleted file mode 100644 index 8f3a180..0000000 --- a/test/largefile.json +++ /dev/null @@ -1,12605 +0,0 @@ -{ - "version": "1.0", - "encoding": "UTF-8", - "feed": { - "xmlns$app": "http://www.w3.org/2007/app", - "xmlns": "http://www.w3.org/2005/Atom", - "xmlns$media": "http://search.yahoo.com/mrss/", - "xmlns$openSearch": "http://a9.com/-/spec/opensearch/1.1/", - "xmlns$gd": "http://schemas.google.com/g/2005", - "xmlns$gml": "http://www.opengis.net/gml", - "xmlns$yt": "http://gdata.youtube.com/schemas/2007", - "xmlns$georss": "http://www.georss.org/georss", - "gd$etag": "W/\"A0MHRHo6fSp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:videos" - }, - "updated": { - "$t": "2012-04-16T06:57:15.415Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - } - ], - "title": { - "$t": "YouTube Videos matching query: football -soccer" - }, - "logo": { - "$t": "http://www.youtube.com/img/pic_youtubelogo_123x63.gif" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com" - }, - { - "rel": "http://schemas.google.com/g/2005#feed", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos?v=2" - }, - { - "rel": "http://schemas.google.com/g/2005#batch", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/batch?v=2" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos?alt=json&q=football+-soccer&start-index=1&max-results=50&orderby=published&v=2" - }, - { - "rel": "service", - "type": "application/atomsvc+xml", - "href": "https://gdata.youtube.com/feeds/api/videos?alt=atom-service&v=2" - }, - { - "rel": "next", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos?alt=json&q=football+-soccer&start-index=51&max-results=50&orderby=published&v=2" - } - ], - "author": [ - { - "name": { - "$t": "YouTube" - }, - "uri": { - "$t": "http://www.youtube.com/" - } - } - ], - "generator": { - "$t": "YouTube data API", - "version": "2.1", - "uri": "http://gdata.youtube.com" - }, - "openSearch$totalResults": { - "$t": 17775 - }, - "openSearch$startIndex": { - "$t": 1 - }, - "openSearch$itemsPerPage": { - "$t": 50 - }, - "entry": [ - { - "gd$etag": "W/\"DUYGQH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:ZUHnx_yGfYg" - }, - "published": { - "$t": "2012-04-16T06:18:41.000Z" - }, - "updated": { - "$t": "2012-04-16T06:18:41.000Z" - }, - "app$control": { - "yt$state": { - "$t": "Syndication of this video was restricted by its owner.", - "name": "restricted", - "reasonCode": "limitedSyndication" - } - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "friendshipunited" - } - ], - "title": { - "$t": "FRIENDSHIP UNITED (Prima Lingkar Asri)" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/ZUHnx_yGfYg?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=ZUHnx_yGfYg&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/ZUHnx_yGfYg/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/ZUHnx_yGfYg/related?v=2" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/ZUHnx_yGfYg?v=2" - } - ], - "author": [ - { - "name": { - "$t": "ClarissaScolastica" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/ClarissaScolastica" - }, - "yt$userId": { - "$t": "PxqMFmq9hESdd7fL8uyY6g" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "denied" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/ZUHnx_yGfYg/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/ZUHnx_yGfYg?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 139, - "yt$format": 5 - } - ], - "media$credit": [ - { - "$t": "clarissascolastica", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "ClarissaScolastica" - } - ], - "media$description": { - "$t": "We are Friendship United,We are team football in Prima Lingkar Asri (Indonesia),Thanks for watching my video. \"We're not born winners,we're not born losers,we're born choosers!\" Go follow on twitter crew #FriendshipUnited ( @rezaocta16 , @ossaaay , @clariscolastica , @raga_yohanes , @dinabiil , @Evan_julio , @mkafi8 , @dirgabijaksono , @gitchaw , @albrin , @santonyvardy , @andryrivaldy )", - "type": "plain" - }, - "media$keywords": { - "$t": "friendshipunited" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=ZUHnx_yGfYg&feature=youtube_gdata_player" - }, - "media$restriction": [ - { - "$t": "UM US VI", - "type": "country", - "relationship": "deny" - } - ], - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/ZUHnx_yGfYg/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:09.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/ZUHnx_yGfYg/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/ZUHnx_yGfYg/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/ZUHnx_yGfYg/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:34.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/ZUHnx_yGfYg/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:09.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/ZUHnx_yGfYg/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:44.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "FRIENDSHIP UNITED (Prima Lingkar Asri)", - "type": "plain" - }, - "yt$duration": { - "seconds": "139" - }, - "yt$uploaded": { - "$t": "2012-04-16T06:18:41.000Z" - }, - "yt$videoid": { - "$t": "ZUHnx_yGfYg" - } - }, - "yt$recorded": { - "$t": "2012-04-16" - } - }, - { - "gd$etag": "W/\"DUcGQX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:S0KcBLqEoas" - }, - "published": { - "$t": "2012-04-16T06:17:00.000Z" - }, - "updated": { - "$t": "2012-04-16T06:17:00.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Animals", - "label": "Pets & Animals" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "perro" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "footbal" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "playas de tijuana" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "pelota" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "perrita" - } - ], - "title": { - "$t": "Gina jugando football" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/S0KcBLqEoas?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=S0KcBLqEoas&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/S0KcBLqEoas/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/S0KcBLqEoas/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=S0KcBLqEoas" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/S0KcBLqEoas?v=2" - } - ], - "author": [ - { - "name": { - "$t": "elizabethortegaco" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/elizabethortegaco" - }, - "yt$userId": { - "$t": "cjAHg7F2kL_ECS8lgJ0nRw" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/S0KcBLqEoas/comments?v=2", - "countHint": 0 - } - }, - "yt$location": { - "$t": "playas tijuana" - }, - "media$group": { - "media$category": [ - { - "$t": "Animals", - "label": "Pets & Animals", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/S0KcBLqEoas?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 59, - "yt$format": 5 - }, - { - "url": "rtsp://v7.cache8.c.youtube.com/CiILENy73wIaGQmroYS6BJxCSxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 59, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache3.c.youtube.com/CiILENy73wIaGQmroYS6BJxCSxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 59, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "elizabethortegaco", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "elizabethortegaco" - } - ], - "media$description": { - "$t": "perrita Gina jugando football con unos ninios frente al cafe aquamarino y el horno 320 en el malecon de playas de tijuana, ella queria que le patearan la pelota!!!", - "type": "plain" - }, - "media$keywords": { - "$t": "perro, footbal, playas de tijuana, pelota, perrita" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=S0KcBLqEoas&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/S0KcBLqEoas/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:29.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/S0KcBLqEoas/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/S0KcBLqEoas/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/S0KcBLqEoas/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:14.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/S0KcBLqEoas/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:29.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/S0KcBLqEoas/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:44.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Gina jugando football", - "type": "plain" - }, - "yt$duration": { - "seconds": "59" - }, - "yt$uploaded": { - "$t": "2012-04-16T06:17:00.000Z" - }, - "yt$videoid": { - "$t": "S0KcBLqEoas" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "1" - } - }, - { - "gd$etag": "W/\"DE4DQH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:ScT3ehz70yU" - }, - "published": { - "$t": "2012-04-16T06:16:11.000Z" - }, - "updated": { - "$t": "2012-04-16T06:16:11.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Entertainment", - "label": "Entertainment" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Joe" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Jonas" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Demi" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Lovato" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Dallas" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Selena" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "love" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "jealous" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "sister" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "hate" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "player" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "loser" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "movie" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "series" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "short" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "story" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "one" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "shot" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Rated" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "jemi" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "onetruemedia" - } - ], - "title": { - "$t": "Under The Stars (Movie-One) Episode- 12 (JEMI)" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/ScT3ehz70yU?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=ScT3ehz70yU&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/ScT3ehz70yU/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/ScT3ehz70yU/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=ScT3ehz70yU" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/ScT3ehz70yU?v=2" - } - ], - "author": [ - { - "name": { - "$t": "TheBlurify" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/TheBlurify" - }, - "yt$userId": { - "$t": "m80cE4ZVd6-7C8TVoTpnWw" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/ScT3ehz70yU/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Entertainment", - "label": "Entertainment", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/ScT3ehz70yU?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 17, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache1.c.youtube.com/CiILENy73wIaGQkl0_scevfESRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 17, - "yt$format": 1 - }, - { - "url": "rtsp://v3.cache8.c.youtube.com/CiILENy73wIaGQkl0_scevfESRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 17, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "theblurify", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "TheBlurify" - } - ], - "media$description": { - "$t": "Story Here! =========== PLEASE CHECK OUT THE VIDEO I POSTED ABOUT MY NEW STORY IF YOU HAVEN'T YET!!! =========== *Knock knock!* I heard a voice as I jumped back in surprise. *Wow, did I scare you?*Sam asked with a light chuckle. I shook my head. He wore a pair of navy blue shorts and his torso remained bare. He had a good tanned body from what I quickly glanced at, not wanting to make it obvious. He was skinny but lean and toned. Not a bad view, if you asked me.*We're going down for a swim,* He informed. His hands rested on his waist and a towel over his shoulder. *Do you want to go?* His smile was lose and with caution. I guess he knew I wasn't about to fall for his charming toothy smile and decided to play it safe. *No, thanks.* I replied. I knew the rest wouldn't make it very welcoming for me to join. Sam nodded and began walking back. *Ok.* He smiled. *I'll be there if you change your mind.* I managed to show a smile of gratitude. The least I could do was give him credit for being nice and putting an effort to make me feel good about being here and not like a burden. *Thank you.* The rest left soon after which pretty much left me alone. There was a lake a short walks away, from what I remembered, so I'm sure they were all there. It was killing me not to just swallow my pride and go for a swim. Having the days heat wash away and feel the cool water against my skin, but at the same time, I was sure as hell not about to strip down to my bikini and have Lauren or Maggie ...", - "type": "plain" - }, - "media$keywords": { - "$t": "Joe, Jonas, Demi, Lovato, Dallas, Selena, love, jealous, sister, hate, player, loser, movie, series, short, story, one, shot, Rated, jemi, onetruemedia" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=ScT3ehz70yU&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/ScT3ehz70yU/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:08.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/ScT3ehz70yU/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/ScT3ehz70yU/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/ScT3ehz70yU/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:04.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/ScT3ehz70yU/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:08.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/ScT3ehz70yU/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:12.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Under The Stars (Movie-One) Episode- 12 (JEMI)", - "type": "plain" - }, - "yt$duration": { - "seconds": "17" - }, - "yt$uploaded": { - "$t": "2012-04-16T06:16:11.000Z" - }, - "yt$videoid": { - "$t": "ScT3ehz70yU" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "2" - } - }, - { - "gd$etag": "W/\"DEADSH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:CRw7iiAfHPU" - }, - "published": { - "$t": "2012-04-16T06:12:59.000Z" - }, - "updated": { - "$t": "2012-04-16T06:12:59.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "zaccagni" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "gubbio" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "zurla_entertainment" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "inverness" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "scotland" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "scozia" - } - ], - "title": { - "$t": "Football match in Inverness, Scotland (rigori scozzesi)" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/CRw7iiAfHPU?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=CRw7iiAfHPU&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/CRw7iiAfHPU/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/CRw7iiAfHPU/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=CRw7iiAfHPU" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/CRw7iiAfHPU?v=2" - } - ], - "author": [ - { - "name": { - "$t": "zaccaimano" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/zaccaimano" - }, - "yt$userId": { - "$t": "kkb0S3rhe-LttdSqgG6LMA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/CRw7iiAfHPU/comments?v=2", - "countHint": 0 - } - }, - "georss$where": { - "gml$Point": { - "gml$pos": { - "$t": "57.4777717590332 -4.224720001220703" - } - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/CRw7iiAfHPU?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 107, - "yt$format": 5 - }, - { - "url": "rtsp://v3.cache2.c.youtube.com/CiILENy73wIaGQn1HB8gijscCRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 107, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache1.c.youtube.com/CiILENy73wIaGQn1HB8gijscCRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 107, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "zaccaimano", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "zaccaimano" - } - ], - "media$description": { - "$t": "The final penalties", - "type": "plain" - }, - "media$keywords": { - "$t": "zaccagni, gubbio, zurla_entertainment, inverness, scotland, scozia" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=CRw7iiAfHPU&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/CRw7iiAfHPU/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:53.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/CRw7iiAfHPU/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/CRw7iiAfHPU/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/CRw7iiAfHPU/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:26.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/CRw7iiAfHPU/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:53.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/CRw7iiAfHPU/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:20.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Football match in Inverness, Scotland (rigori scozzesi)", - "type": "plain" - }, - "yt$duration": { - "seconds": "107" - }, - "yt$uploaded": { - "$t": "2012-04-16T06:12:59.000Z" - }, - "yt$videoid": { - "$t": "CRw7iiAfHPU" - } - }, - "yt$recorded": { - "$t": "2012-04-06" - } - }, - { - "gd$etag": "W/\"DEEFRH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:5EjeJpLY7S0" - }, - "published": { - "$t": "2012-04-16T06:10:15.000Z" - }, - "updated": { - "$t": "2012-04-16T06:10:15.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "UNO" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "omavs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Nebraska-Omaha" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "UNO Mavericks sports" - } - ], - "title": { - "$t": "PlayersSuingUNO.wmv" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/5EjeJpLY7S0?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=5EjeJpLY7S0&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/5EjeJpLY7S0/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/5EjeJpLY7S0/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=5EjeJpLY7S0" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/5EjeJpLY7S0?v=2" - } - ], - "author": [ - { - "name": { - "$t": "UNOMavsBlog" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/UNOMavsBlog" - }, - "yt$userId": { - "$t": "64HM5pIt74M5HIavzb1L3w" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/5EjeJpLY7S0/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/5EjeJpLY7S0?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 321, - "yt$format": 5 - }, - { - "url": "rtsp://v8.cache7.c.youtube.com/CiILENy73wIaGQkt7diSJt5I5BMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 321, - "yt$format": 1 - }, - { - "url": "rtsp://v7.cache6.c.youtube.com/CiILENy73wIaGQkt7diSJt5I5BMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 321, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "unomavsblog", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "UNOMavsBlog" - } - ], - "media$description": { - "$t": "Campus reaction to the news that former football players and recruits are suing UNO for information to determine if they were mislead about the football program.", - "type": "plain" - }, - "media$keywords": { - "$t": "UNO, omavs, Nebraska-Omaha, UNO Mavericks sports" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=5EjeJpLY7S0&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/5EjeJpLY7S0/default.jpg", - "height": 90, - "width": 120, - "time": "00:02:40.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/5EjeJpLY7S0/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/5EjeJpLY7S0/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/5EjeJpLY7S0/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:20.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/5EjeJpLY7S0/2.jpg", - "height": 90, - "width": 120, - "time": "00:02:40.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/5EjeJpLY7S0/3.jpg", - "height": 90, - "width": 120, - "time": "00:04:00.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "PlayersSuingUNO.wmv", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "321" - }, - "yt$uploaded": { - "$t": "2012-04-16T06:10:15.000Z" - }, - "yt$videoid": { - "$t": "5EjeJpLY7S0" - } - } - }, - { - "gd$etag": "W/\"Dk8AQH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:0A15f4B1T9U" - }, - "published": { - "$t": "2012-04-16T05:40:41.000Z" - }, - "updated": { - "$t": "2012-04-16T05:40:41.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Kerala" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "messi" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "play" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "(അവന്റെഒരുതോഴി)" - } - ], - "title": { - "$t": "Kerala messi football play (അവന്റെഒരുതോഴി)" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/0A15f4B1T9U?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=0A15f4B1T9U&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/0A15f4B1T9U/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/0A15f4B1T9U/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=0A15f4B1T9U" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/0A15f4B1T9U?v=2" - } - ], - "author": [ - { - "name": { - "$t": "kottayamvideo" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/kottayamvideo" - }, - "yt$userId": { - "$t": "VYK-aGk1mi9IZDwEMmwGHg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/0A15f4B1T9U/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/0A15f4B1T9U?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 27, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQnVT3WAf3kN0BMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 27, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache1.c.youtube.com/CiILENy73wIaGQnVT3WAf3kN0BMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 27, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "kottayamvideo", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "kottayamvideo" - } - ], - "media$description": { - "$t": "American football is a sport played between two teams of eleven with the objective of scoring points by advancing the ball into the opposing team's end zone. Known in the United States simply as football, it may also be referred to informally as gridiron football,[1][2] and even more rare, the \"pigskin\".[3] The ball can be advanced by running with it or throwing it to a teammate. Points can be scored by carrying the ball over the opponent's goal line, catching a pass thrown over that goal line, kicking the ball through the opponent's goal posts or tackling an opposing ball carrier in his own end zone. In the United States, the major forms are high school football, college football and professional football. Each of these are played under slightly different rules.[4] High school football is governed by the National Federation of State High School Associations and college football by the National Collegiate Athletic Association and National Association of Intercollegiate Athletics. The major league for professional football is the National Football League.", - "type": "plain" - }, - "media$keywords": { - "$t": "Kerala, messi, football, play, (അവന്റെഒരുതോഴി)" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=0A15f4B1T9U&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/0A15f4B1T9U/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:13.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/0A15f4B1T9U/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/0A15f4B1T9U/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/0A15f4B1T9U/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:06.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/0A15f4B1T9U/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:13.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/0A15f4B1T9U/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:20.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Kerala messi football play (അവന്റെഒരുതോഴി)", - "type": "plain" - }, - "yt$duration": { - "seconds": "27" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:40:41.000Z" - }, - "yt$videoid": { - "$t": "0A15f4B1T9U" - } - } - }, - { - "gd$etag": "W/\"DkAASX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:7hg2BvLQvuw" - }, - "published": { - "$t": "2012-04-16T05:39:08.000Z" - }, - "updated": { - "$t": "2012-04-16T05:39:08.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "mobile" - } - ], - "title": { - "$t": "#39 Jorge Batres SBU" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/7hg2BvLQvuw?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=7hg2BvLQvuw&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/7hg2BvLQvuw/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/7hg2BvLQvuw/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=7hg2BvLQvuw" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/7hg2BvLQvuw?v=2" - } - ], - "author": [ - { - "name": { - "$t": "SBUFBVideosDept" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/SBUFBVideosDept" - }, - "yt$userId": { - "$t": "isxkO3iSNLZUpjYqPGOvPQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "allowed" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/7hg2BvLQvuw/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/7hg2BvLQvuw?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 149, - "yt$format": 5 - }, - { - "url": "rtsp://v5.cache7.c.youtube.com/CiILENy73wIaGQnsvtDyBjYY7hMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 149, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache8.c.youtube.com/CiILENy73wIaGQnsvtDyBjYY7hMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 149, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "sbufbvideosdept", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "SBUFBVideosDept" - } - ], - "media$description": { - "$t": "Jorge Batres, SBU's kicker/punter gives a few words about the upcoming 2012 football season.", - "type": "plain" - }, - "media$keywords": { - "$t": "mobile" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=7hg2BvLQvuw&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/7hg2BvLQvuw/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:14.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/7hg2BvLQvuw/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/7hg2BvLQvuw/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/7hg2BvLQvuw/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:37.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/7hg2BvLQvuw/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:14.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/7hg2BvLQvuw/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:51.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "#39 Jorge Batres SBU", - "type": "plain" - }, - "yt$duration": { - "seconds": "149" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:39:08.000Z" - }, - "yt$videoid": { - "$t": "7hg2BvLQvuw" - } - } - }, - { - "gd$etag": "W/\"DkAFR347eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:O_IJnyUbSDY" - }, - "published": { - "$t": "2012-04-16T05:38:36.000Z" - }, - "updated": { - "$t": "2012-04-16T05:38:36.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Homer" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "LA" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Relay for Life" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Glory Gals" - } - ], - "title": { - "$t": "Relay for Life - Homer, LA 2012" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/O_IJnyUbSDY?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=O_IJnyUbSDY&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/O_IJnyUbSDY/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/O_IJnyUbSDY/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=O_IJnyUbSDY" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/O_IJnyUbSDY?v=2" - } - ], - "author": [ - { - "name": { - "$t": "HomerMessenger" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/HomerMessenger" - }, - "yt$userId": { - "$t": "b37co3tL2mrGD96aUNl80A" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/O_IJnyUbSDY/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/O_IJnyUbSDY?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 252, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache7.c.youtube.com/CiILENy73wIaGQk2SBslnwnyOxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 252, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache8.c.youtube.com/CiILENy73wIaGQk2SBslnwnyOxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 252, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "homermessenger", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "HomerMessenger" - } - ], - "media$description": { - "$t": "Footage from the Luminaries Ceremony - Relay for Life 2012 - Homer, LA at Homer High School Football Stadium", - "type": "plain" - }, - "media$keywords": { - "$t": "Homer, LA, Relay for Life, Glory Gals" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=O_IJnyUbSDY&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/O_IJnyUbSDY/default.jpg", - "height": 90, - "width": 120, - "time": "00:02:06", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/O_IJnyUbSDY/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/O_IJnyUbSDY/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/O_IJnyUbSDY/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:03", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/O_IJnyUbSDY/2.jpg", - "height": 90, - "width": 120, - "time": "00:02:06", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/O_IJnyUbSDY/3.jpg", - "height": 90, - "width": 120, - "time": "00:03:09", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Relay for Life - Homer, LA 2012", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "252" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:38:36.000Z" - }, - "yt$videoid": { - "$t": "O_IJnyUbSDY" - } - } - }, - { - "gd$etag": "W/\"DkMERn47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:t-afuUNb0Uo" - }, - "published": { - "$t": "2012-04-16T05:33:27.000Z" - }, - "updated": { - "$t": "2012-04-16T05:33:27.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "highlights!" - } - ], - "title": { - "$t": "highlights!.wmv" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/t-afuUNb0Uo?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=t-afuUNb0Uo&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/t-afuUNb0Uo/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/t-afuUNb0Uo/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=t-afuUNb0Uo" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/t-afuUNb0Uo?v=2" - } - ], - "author": [ - { - "name": { - "$t": "edgarraguilar8" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/edgarraguilar8" - }, - "yt$userId": { - "$t": "uJk4jnk3B900MyfYn6gz5g" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/t-afuUNb0Uo/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/t-afuUNb0Uo?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 571, - "yt$format": 5 - }, - { - "url": "rtsp://v5.cache7.c.youtube.com/CiILENy73wIaGQlK0VtDuZ_mtxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 571, - "yt$format": 1 - }, - { - "url": "rtsp://v1.cache4.c.youtube.com/CiILENy73wIaGQlK0VtDuZ_mtxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 571, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "edgarraguilar8", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "edgarraguilar8" - } - ], - "media$description": { - "$t": "some of what i thought were some of my best plays in high school football!! mostly clips from my junior year because unfortunately my sophmore and senior year i got hurt and my seasons ended early. .", - "type": "plain" - }, - "media$keywords": { - "$t": "highlights!" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=t-afuUNb0Uo&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/t-afuUNb0Uo/default.jpg", - "height": 90, - "width": 120, - "time": "00:04:45.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/t-afuUNb0Uo/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/t-afuUNb0Uo/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/t-afuUNb0Uo/1.jpg", - "height": 90, - "width": 120, - "time": "00:02:22.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/t-afuUNb0Uo/2.jpg", - "height": 90, - "width": 120, - "time": "00:04:45.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/t-afuUNb0Uo/3.jpg", - "height": 90, - "width": 120, - "time": "00:07:08.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "highlights!.wmv", - "type": "plain" - }, - "yt$duration": { - "seconds": "571" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:33:27.000Z" - }, - "yt$videoid": { - "$t": "t-afuUNb0Uo" - } - } - }, - { - "gd$etag": "W/\"CU8CRX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:weMSc7VyDD4" - }, - "published": { - "$t": "2012-04-16T05:24:24.000Z" - }, - "updated": { - "$t": "2012-04-16T05:24:24.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Games", - "label": "Gaming" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Fer" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "dayz" - } - ], - "title": { - "$t": "Runescape-Dragon Claws Giveaway" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/weMSc7VyDD4?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=weMSc7VyDD4&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/weMSc7VyDD4/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/weMSc7VyDD4/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=weMSc7VyDD4" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/weMSc7VyDD4?v=2" - } - ], - "author": [ - { - "name": { - "$t": "TyroneAloneWithMeth" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/TyroneAloneWithMeth" - }, - "yt$userId": { - "$t": "nMLRKdVQ7P-p_cEipgO1fA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/weMSc7VyDD4/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Games", - "label": "Gaming", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/weMSc7VyDD4?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 38, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQk-DHK1cxLjwRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 38, - "yt$format": 1 - }, - { - "url": "rtsp://v1.cache1.c.youtube.com/CiILENy73wIaGQk-DHK1cxLjwRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 38, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "tyronealonewithmeth", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "TyroneAloneWithMeth" - } - ], - "media$description": { - "$t": "Message for more info EXTRA TAGS: tehnoobshow thepwnageninja herzantix tehnoobshoow Penny the Penguin funny runescape rs free zezima animal skychi account twixalex crush hilarious dark arm3 sladeakakevin crushman90 runescape boss kalphite dragon king black chaos elemental queen parody Lord of the rings sisterhood traveling pants moby dick war of worlds lion boy series starr parody hilarious rs retard runescape. twixalex crushman michael weird upside down cheese popper kids kid wheelchair dude green blue yellow are all colors of the rainbow skittles rule skittle commercial delicious cookie sprinkles dramatic prarie dog stick figures on crack 1 2 3 4 5 are all numbers of the rainbow wtf did i just say number of the rainbow thats kind of stupid in a funny way with balony pk vid video f2p p2p bank free account extra tags: KIDS RANQE PURPLE 0WNZ ZEZIMA N0VALYFE PHAT LURE OWNAGE RUNESCAPE WILDY WILDERNESS ELVEMAGE ELVEMAGE RUNESCAPE PKING RUN3 4RR0WPK OWNAGE MAIKEL PRO I MAHATMA I EVO BLOODHOUN34 KIDS RANQE KRAZYFAKEN RUNESCAPE PKER RUNESCAPE PKING INTIATE PURE 99 STR MAGE RANGE OBBY MAUL WICKED MAUL FIRE CAPE P00NAGE I KASOY I ELF MAGE PKA OBBY MAUL MAULER EDGEVILLE POONAGEkids ranqe elvemage purple 0wnz bloodhoun34 runescape pking wild pker ownage zezima phat lure KIDS RANQE PURPLE 0WNZ ZEZIMA N0VALYFE PHAT LURE OWNAGE RUNESCAPE WILDY WILDERNESS ELVEMAGE ELVEMAGE RUNESCAPE PKING RUN3 4RR0WPK OWNAGE MAIKEL PRO I MAHATMA I EVO BLOODHOUN34 KIDS RANQE KRAZYFAKEN RUNESCAPE PKER ...", - "type": "plain" - }, - "media$keywords": { - "$t": "Fer, dayz" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=weMSc7VyDD4&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/weMSc7VyDD4/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:19", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/weMSc7VyDD4/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/weMSc7VyDD4/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/weMSc7VyDD4/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:09.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/weMSc7VyDD4/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:19", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/weMSc7VyDD4/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:28.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Runescape-Dragon Claws Giveaway", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "38" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:24:24.000Z" - }, - "yt$videoid": { - "$t": "weMSc7VyDD4" - } - } - }, - { - "gd$etag": "W/\"CUAFRX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:3lMygQpMEEs" - }, - "published": { - "$t": "2012-04-16T05:21:54.000Z" - }, - "updated": { - "$t": "2012-04-16T05:21:54.000Z" - }, - "app$control": { - "yt$state": { - "$t": "Syndication of this video was restricted by its owner.", - "name": "restricted", - "reasonCode": "limitedSyndication" - } - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - } - ], - "title": { - "$t": "Football 14.02.2012" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/3lMygQpMEEs?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=3lMygQpMEEs&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/3lMygQpMEEs/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/3lMygQpMEEs/related?v=2" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/3lMygQpMEEs?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Jarom Nowak" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/rZyYP-Lh0-Kkl5aFG85ktw" - }, - "yt$userId": { - "$t": "rZyYP-Lh0-Kkl5aFG85ktw" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "denied" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/3lMygQpMEEs/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/3lMygQpMEEs?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 409, - "yt$format": 5 - } - ], - "media$credit": [ - { - "$t": "rZyYP-Lh0-Kkl5aFG85ktw", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Jarom Nowak" - } - ], - "media$description": { - "$t": "Deathmatch 14.04.2012", - "type": "plain" - }, - "media$keywords": { - "$t": "Football" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=3lMygQpMEEs&feature=youtube_gdata_player" - }, - "media$restriction": [ - { - "$t": "DE", - "type": "country", - "relationship": "deny" - } - ], - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/3lMygQpMEEs/default.jpg", - "height": 90, - "width": 120, - "time": "00:03:24.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/3lMygQpMEEs/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/3lMygQpMEEs/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/3lMygQpMEEs/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:42.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/3lMygQpMEEs/2.jpg", - "height": 90, - "width": 120, - "time": "00:03:24.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/3lMygQpMEEs/3.jpg", - "height": 90, - "width": 120, - "time": "00:05:06.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Football 14.02.2012", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "409" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:21:54.000Z" - }, - "yt$videoid": { - "$t": "3lMygQpMEEs" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "7" - } - }, - { - "gd$etag": "W/\"CE4BSX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:rRW9R8Zclbk" - }, - "published": { - "$t": "2012-04-16T05:09:18.000Z" - }, - "updated": { - "$t": "2012-04-16T05:09:18.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "#Richmond#Tigers#MCG#AFL#" - } - ], - "title": { - "$t": "RichmondTigers2012 'Hear the Tigers Raw' Membership Promo unauthorised" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/rRW9R8Zclbk?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=rRW9R8Zclbk&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/rRW9R8Zclbk/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/rRW9R8Zclbk/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=rRW9R8Zclbk" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/rRW9R8Zclbk?v=2" - } - ], - "author": [ - { - "name": { - "$t": "RichmondTigers2011" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/RichmondTigers2011" - }, - "yt$userId": { - "$t": "po8qqWXXp6Fo00UGlbcTlg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/rRW9R8Zclbk/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/rRW9R8Zclbk?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 36, - "yt$format": 5 - }, - { - "url": "rtsp://v2.cache3.c.youtube.com/CiILENy73wIaGQm5lVzGR70VrRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 36, - "yt$format": 1 - }, - { - "url": "rtsp://v7.cache6.c.youtube.com/CiILENy73wIaGQm5lVzGR70VrRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 36, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "richmondtigers2011", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "RichmondTigers2011" - } - ], - "media$description": { - "$t": "RichmondTigers2012 'Hear the Tigers Raw' Membership Promo unauthorised written, spoken & photographed by Pete Dowe. www.richmondfc.com.au www.youtube.com www.youtube.com www.youtube.com #funny#Richmond#Tigers#Membership#Promo#MCG#Punt#Rd#Oval# #Melbourne#Cricket#Ground#AFL#Football#", - "type": "plain" - }, - "media$keywords": { - "$t": "#Richmond#Tigers#MCG#AFL#" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=rRW9R8Zclbk&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/rRW9R8Zclbk/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:18", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/rRW9R8Zclbk/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/rRW9R8Zclbk/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/rRW9R8Zclbk/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:09", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/rRW9R8Zclbk/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:18", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/rRW9R8Zclbk/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:27", - "yt$name": "end" - } - ], - "media$title": { - "$t": "RichmondTigers2012 'Hear the Tigers Raw' Membership Promo unauthorised", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "36" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:09:18.000Z" - }, - "yt$videoid": { - "$t": "rRW9R8Zclbk" - } - } - }, - { - "gd$etag": "W/\"CEIGQX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:qjO8l5uNunE" - }, - "published": { - "$t": "2012-04-16T05:02:00.000Z" - }, - "updated": { - "$t": "2012-04-16T05:02:00.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "RJ Dill" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Kaleb Johnson" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Scarlet Nation" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Rutgers football" - } - ], - "title": { - "$t": "RJ Dill and Kaleb Johnson interviews" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/qjO8l5uNunE?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=qjO8l5uNunE&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/qjO8l5uNunE/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/qjO8l5uNunE/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=qjO8l5uNunE" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/qjO8l5uNunE?v=2" - } - ], - "author": [ - { - "name": { - "$t": "scarletnationtv" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/scarletnationtv" - }, - "yt$userId": { - "$t": "beUNBqGe0GbGCQpGJr4xVg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/qjO8l5uNunE/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/qjO8l5uNunE?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 104, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache5.c.youtube.com/CiILENy73wIaGQlxuo2bl7wzqhMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 104, - "yt$format": 1 - }, - { - "url": "rtsp://v3.cache8.c.youtube.com/CiILENy73wIaGQlxuo2bl7wzqhMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 104, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "scarletnationtv", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "scarletnationtv" - } - ], - "media$description": { - "$t": "Rutgers offensive tackles RJ Dill and Kaleb Johnson talk Rutgers football.", - "type": "plain" - }, - "media$keywords": { - "$t": "RJ Dill, Kaleb Johnson, Scarlet Nation, Rutgers football" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=qjO8l5uNunE&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/qjO8l5uNunE/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:52", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/qjO8l5uNunE/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/qjO8l5uNunE/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/qjO8l5uNunE/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:26", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/qjO8l5uNunE/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:52", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/qjO8l5uNunE/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:18", - "yt$name": "end" - } - ], - "media$title": { - "$t": "RJ Dill and Kaleb Johnson interviews", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "104" - }, - "yt$uploaded": { - "$t": "2012-04-16T05:02:00.000Z" - }, - "yt$videoid": { - "$t": "qjO8l5uNunE" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "3" - } - }, - { - "gd$etag": "W/\"C04HRH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:C6t6gKz_nqA" - }, - "published": { - "$t": "2012-04-16T04:52:15.000Z" - }, - "updated": { - "$t": "2012-04-16T04:52:15.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Education", - "label": "Education" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Larry" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "romano" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "park" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "saturday" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "league" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "cell" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "phone" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "usage" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "talking" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "and" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "catching" - } - ], - "title": { - "$t": "larry romano on the phone making a 1st down completion saturday football league" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/C6t6gKz_nqA?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=C6t6gKz_nqA&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/C6t6gKz_nqA/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/C6t6gKz_nqA/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=C6t6gKz_nqA" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/C6t6gKz_nqA?v=2" - } - ], - "author": [ - { - "name": { - "$t": "namnamer" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/namnamer" - }, - "yt$userId": { - "$t": "Pg1Kgppp1H57d15BSZgA-w" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/C6t6gKz_nqA/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Education", - "label": "Education", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/C6t6gKz_nqA?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 289, - "yt$format": 5 - }, - { - "url": "rtsp://v2.cache8.c.youtube.com/CiILENy73wIaGQmgnv-sgHqrCxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 289, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache3.c.youtube.com/CiILENy73wIaGQmgnv-sgHqrCxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 289, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "namnamer", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "namnamer" - } - ], - "media$description": { - "$t": "It's illegal to talk on the phone while driving a car but driving down field... it's still legal in park football to talk while playing. not recommended unless you are a pro like Larry but...", - "type": "plain" - }, - "media$keywords": { - "$t": "Larry, romano, park, football, saturday, league, cell, phone, usage, talking, and, catching" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=C6t6gKz_nqA&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/C6t6gKz_nqA/default.jpg", - "height": 90, - "width": 120, - "time": "00:02:24.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/C6t6gKz_nqA/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/C6t6gKz_nqA/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/C6t6gKz_nqA/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:12.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/C6t6gKz_nqA/2.jpg", - "height": 90, - "width": 120, - "time": "00:02:24.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/C6t6gKz_nqA/3.jpg", - "height": 90, - "width": 120, - "time": "00:03:36.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "larry romano on the phone making a 1st down completion saturday football league", - "type": "plain" - }, - "yt$duration": { - "seconds": "289" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:52:15.000Z" - }, - "yt$videoid": { - "$t": "C6t6gKz_nqA" - } - } - }, - { - "gd$etag": "W/\"C04ERn47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:htHKUbXYw2M" - }, - "published": { - "$t": "2012-04-16T04:51:47.000Z" - }, - "updated": { - "$t": "2012-04-16T04:51:47.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Comedy", - "label": "Comedy" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "FF" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Jeffery" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "and" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Preston" - } - ], - "title": { - "$t": "FF introducing Jeffery and Preston Irving" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/htHKUbXYw2M?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=htHKUbXYw2M&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/htHKUbXYw2M/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/htHKUbXYw2M/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=htHKUbXYw2M" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/htHKUbXYw2M?v=2" - } - ], - "author": [ - { - "name": { - "$t": "thehuckabee182" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/thehuckabee182" - }, - "yt$userId": { - "$t": "rnahI2jjsVsjwX9OQCvPlA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/htHKUbXYw2M/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Comedy", - "label": "Comedy", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/htHKUbXYw2M?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 146, - "yt$format": 5 - }, - { - "url": "rtsp://v5.cache7.c.youtube.com/CiILENy73wIaGQljw9i1UcrRhhMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 146, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache8.c.youtube.com/CiILENy73wIaGQljw9i1UcrRhhMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 146, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "thehuckabee182", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "thehuckabee182" - } - ], - "media$description": { - "$t": "A kickass trailer of an upcoming fantasy football film. Looks to be the funniest film ever. Introducing the characters Jeffery and Preston Irving.", - "type": "plain" - }, - "media$keywords": { - "$t": "FF, Jeffery, and, Preston" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=htHKUbXYw2M&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/htHKUbXYw2M/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:13", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/htHKUbXYw2M/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/htHKUbXYw2M/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/htHKUbXYw2M/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:36.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/htHKUbXYw2M/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:13", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/htHKUbXYw2M/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:49.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "FF introducing Jeffery and Preston Irving", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "146" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:51:47.000Z" - }, - "yt$videoid": { - "$t": "htHKUbXYw2M" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "3" - } - }, - { - "gd$etag": "W/\"C08NR347eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:QUxE8dfrSf8" - }, - "published": { - "$t": "2012-04-16T04:51:36.000Z" - }, - "updated": { - "$t": "2012-04-16T04:51:36.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "football" - } - ], - "title": { - "$t": "ThundersU16-2012-04-15.MPG" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/QUxE8dfrSf8?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=QUxE8dfrSf8&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/QUxE8dfrSf8/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/QUxE8dfrSf8/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=QUxE8dfrSf8" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/QUxE8dfrSf8?v=2" - } - ], - "author": [ - { - "name": { - "$t": "8960Krogsager" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/8960Krogsager" - }, - "yt$userId": { - "$t": "OkaIPe6KmLmVNKzzuzT-tA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/QUxE8dfrSf8/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/QUxE8dfrSf8?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 47, - "yt$format": 5 - }, - { - "url": "rtsp://v2.cache1.c.youtube.com/CiILENy73wIaGQn_SevX8URMQRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 47, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQn_SevX8URMQRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 47, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "8960krogsager", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "8960Krogsager" - } - ], - "media$description": { - "$t": "U16 American Football Randers Thunder vs Herning Hawks: 6-0 15. april 2012", - "type": "plain" - }, - "media$keywords": { - "$t": "football" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=QUxE8dfrSf8&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/QUxE8dfrSf8/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:23.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/QUxE8dfrSf8/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/QUxE8dfrSf8/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/QUxE8dfrSf8/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:11.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/QUxE8dfrSf8/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:23.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/QUxE8dfrSf8/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:35.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "ThundersU16-2012-04-15.MPG", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "47" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:51:36.000Z" - }, - "yt$videoid": { - "$t": "QUxE8dfrSf8" - } - } - }, - { - "gd$etag": "W/\"C0UDQX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:q1-elpWAAoo" - }, - "published": { - "$t": "2012-04-16T04:41:10.000Z" - }, - "updated": { - "$t": "2012-04-16T04:41:10.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "college football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "tulsa golden hurricans" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "tulsa football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "GJ Kinne" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "wide receiver" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "quarter back" - } - ], - "title": { - "$t": "Landon Finton 2012 Football Highlights" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/q1-elpWAAoo?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=q1-elpWAAoo&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/q1-elpWAAoo/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/q1-elpWAAoo/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=q1-elpWAAoo" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/q1-elpWAAoo?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Ryan Edwards" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/saGhMa5XGVHl02wfLNEy7g" - }, - "yt$userId": { - "$t": "saGhMa5XGVHl02wfLNEy7g" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/q1-elpWAAoo/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/q1-elpWAAoo?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 94, - "yt$format": 5 - }, - { - "url": "rtsp://v2.cache3.c.youtube.com/CiILENy73wIaGQmKAoCVlp5fqxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 94, - "yt$format": 1 - }, - { - "url": "rtsp://v1.cache1.c.youtube.com/CiILENy73wIaGQmKAoCVlp5fqxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 94, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "saGhMa5XGVHl02wfLNEy7g", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Ryan Edwards" - } - ], - "media$description": { - "$t": "7 year old Landon Finton football highlights", - "type": "plain" - }, - "media$keywords": { - "$t": "football, college football, tulsa golden hurricans, tulsa football, GJ Kinne, wide receiver, quarter back" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=q1-elpWAAoo&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/q1-elpWAAoo/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:47", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/q1-elpWAAoo/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/q1-elpWAAoo/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/q1-elpWAAoo/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:23.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/q1-elpWAAoo/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:47", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/q1-elpWAAoo/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:10.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Landon Finton 2012 Football Highlights", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "94" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:41:10.000Z" - }, - "yt$videoid": { - "$t": "q1-elpWAAoo" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "1" - } - }, - { - "gd$etag": "W/\"CkQBQn47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:3W1ya1FqhCU" - }, - "published": { - "$t": "2012-04-16T04:25:53.000Z" - }, - "updated": { - "$t": "2012-04-16T04:25:53.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Games", - "label": "Gaming" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "The" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Rumble" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Fish" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ザ・ランブルフィッシュ" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ATOMISWAVE" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "SAMMY" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ARCADE" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "CAB" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "GAME" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "FIGHTING" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "BEAT" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "UM" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "UP" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "KUNG" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "FU" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ca" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "HD" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": ".GAME" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "PLAY" - } - ], - "title": { - "$t": "The Rumble Fish ザ・ランブルフィッシュ game play atomiswave cab & pics HD" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/3W1ya1FqhCU?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=3W1ya1FqhCU&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/3W1ya1FqhCU/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/3W1ya1FqhCU/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=3W1ya1FqhCU" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/3W1ya1FqhCU?v=2" - } - ], - "author": [ - { - "name": { - "$t": "dzzmoo1" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/dzzmoo1" - }, - "yt$userId": { - "$t": "DDLrqLjO1egeeRdx8X4s8A" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "moderated" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "denied" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/3W1ya1FqhCU/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Games", - "label": "Gaming", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/3W1ya1FqhCU?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 101, - "yt$format": 5 - }, - { - "url": "rtsp://v5.cache2.c.youtube.com/CiILENy73wIaGQklhGpRa3Jt3RMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 101, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache4.c.youtube.com/CiILENy73wIaGQklhGpRa3Jt3RMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 101, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "dzzmoo1", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "dzzmoo1" - } - ], - "media$description": { - "$t": "The Rumble Fish (ザ・ランブルフィッシュ?) is a 2D fighting game developed by Dimps and published by Sega Sammy Holdings. It was originally released in 2004 for the Atomiswave arcade platform and was later ported to the PlayStation 2 on March 17, 2005. A sequel, The Rumble Fish 2, has since been developed.Atomiswave game play and cab (HD) and pics part 0.2 Atomiswave games Demolish Fist (Sammy / Dimps) Dirty Pigskin Football (Play Mechanix) Dolphin Blue (Sammy) Extreme Hunting (Sammy) Extreme Hunting 2 Tournament Edition (Sega Amusement USA) Faster Than Speed (Sammy) Fist of the North Star (Hokuto No Ken) (Sega / ARC System Works) Guilty Gear Isuka (Sammy / ARC System Works) Guilty Gear X Version 1.5 (Sammy / ARC System Works) Hustle Tamaire Kyousou (Animal Basket) (Sammy) Knights of Valour: The Seven Spirits (Sammy / IGS) Maximum Speed (Sammy) Metal Slug 6 (Sega / SNK Playmore) Neo Geo Battle Coliseum (Sega / SNK Playmore) Ranger Mission (Sammy) Salaried Worker Golden Taro (Sammy) Samurai Shodown VI (Sega / SNK Playmore) Sega Bass Fishing Challenge (Sega Amusement USA) Sega Clay Challenge (Sega Amusement USA) Sports Shooting USA (Sammy) The King of Fighters Neowave (Sammy / SNK Playmore) The King of Fighters XI (Sega / SNK Playmore) The Rumble Fish (Sammy / Dimps) The Rumble Fish 2 (Sega / Dimps) Victory Furlong - Horse Racing (Sammy) [edit] Unreleased Chase 1929 (Sammy) Force Five (Sammy) Kenju (Sammy / DreamFactory) Premier Eleven (Sammy / Dimps) Sushi Bar (Sammy)", - "type": "plain" - }, - "media$keywords": { - "$t": "The, Rumble, Fish, ザ・ランブルフィッシュ, ATOMISWAVE, SAMMY, ARCADE, CAB, GAME, FIGHTING, BEAT, UM, UP, KUNG, FU, ca, HD, .GAME, PLAY" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=3W1ya1FqhCU&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/3W1ya1FqhCU/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:50.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/3W1ya1FqhCU/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/3W1ya1FqhCU/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/3W1ya1FqhCU/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:25.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/3W1ya1FqhCU/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:50.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/3W1ya1FqhCU/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:15.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "The Rumble Fish ザ・ランブルフィッシュ game play atomiswave cab & pics HD", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "101" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:25:53.000Z" - }, - "yt$videoid": { - "$t": "3W1ya1FqhCU" - } - }, - "yt$statistics": { - "favoriteCount": "2", - "viewCount": "27" - } - }, - { - "gd$etag": "W/\"A0IMSX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:U_Lw8ccft9U" - }, - "published": { - "$t": "2012-04-16T04:13:08.000Z" - }, - "updated": { - "$t": "2012-04-16T04:13:08.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Sport" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Tunisie" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Professionnalisme" - } - ], - "title": { - "$t": "Tunisia Sport (2/10) _ Football Professionnel en Tunisie 26-02-2010.MPG" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/U_Lw8ccft9U?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=U_Lw8ccft9U&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/U_Lw8ccft9U/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/U_Lw8ccft9U/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=U_Lw8ccft9U" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/U_Lw8ccft9U?v=2" - } - ], - "author": [ - { - "name": { - "$t": "amoezaineb" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/amoezaineb" - }, - "yt$userId": { - "$t": "EKm4GFx69vsS69IMZJ1crQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/U_Lw8ccft9U/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/U_Lw8ccft9U?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 600, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache6.c.youtube.com/CiILENy73wIaGQnVtx_H8fDyUxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 600, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache5.c.youtube.com/CiILENy73wIaGQnVtx_H8fDyUxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 600, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "amoezaineb", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "amoezaineb" - } - ], - "media$description": { - "$t": "Épisode 2/10 : Professionnalisme/ compétence-habileté + mentalité-sérieux + éthique-responsabilité", - "type": "plain" - }, - "media$keywords": { - "$t": "Sport, Tunisie, Football, Professionnalisme" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=U_Lw8ccft9U&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/U_Lw8ccft9U/default.jpg", - "height": 90, - "width": 120, - "time": "00:05:00", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/U_Lw8ccft9U/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/U_Lw8ccft9U/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/U_Lw8ccft9U/1.jpg", - "height": 90, - "width": 120, - "time": "00:02:30", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/U_Lw8ccft9U/2.jpg", - "height": 90, - "width": 120, - "time": "00:05:00", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/U_Lw8ccft9U/3.jpg", - "height": 90, - "width": 120, - "time": "00:07:30", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Tunisia Sport (2/10) _ Football Professionnel en Tunisie 26-02-2010.MPG", - "type": "plain" - }, - "yt$duration": { - "seconds": "600" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:13:08.000Z" - }, - "yt$videoid": { - "$t": "U_Lw8ccft9U" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "1" - } - }, - { - "gd$etag": "W/\"Ak4GQH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:g6j2GbE95Hg" - }, - "published": { - "$t": "2012-04-16T04:08:03.000Z" - }, - "updated": { - "$t": "2012-04-16T06:48:41.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "el" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "football" - } - ], - "title": { - "$t": "el football.AVI" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/g6j2GbE95Hg?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=g6j2GbE95Hg&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/g6j2GbE95Hg/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/g6j2GbE95Hg/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=g6j2GbE95Hg" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/g6j2GbE95Hg?v=2" - } - ], - "author": [ - { - "name": { - "$t": "louinex" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/louinex" - }, - "yt$userId": { - "$t": "PSot9M-Q0Da3Gq8SPGUOcA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/g6j2GbE95Hg/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/g6j2GbE95Hg?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 135, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache7.c.youtube.com/CiILENy73wIaGQl45D2xGfaogxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 135, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache5.c.youtube.com/CiILENy73wIaGQl45D2xGfaogxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 135, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "louinex", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "louinex" - } - ], - "media$description": { - "$t": "", - "type": "plain" - }, - "media$keywords": { - "$t": "el, football" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=g6j2GbE95Hg&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/g6j2GbE95Hg/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:07.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/g6j2GbE95Hg/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/g6j2GbE95Hg/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/g6j2GbE95Hg/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:33.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/g6j2GbE95Hg/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:07.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/g6j2GbE95Hg/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:41.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "el football.AVI", - "type": "plain" - }, - "yt$duration": { - "seconds": "135" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:08:03.000Z" - }, - "yt$videoid": { - "$t": "g6j2GbE95Hg" - } - } - }, - { - "gd$etag": "W/\"Ak4BQH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:5xHBXPswmcw" - }, - "published": { - "$t": "2012-04-16T04:02:31.000Z" - }, - "updated": { - "$t": "2012-04-16T04:02:31.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Ramona" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - } - ], - "title": { - "$t": "Marc Sutton #78" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/5xHBXPswmcw?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=5xHBXPswmcw&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/5xHBXPswmcw/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/5xHBXPswmcw/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=5xHBXPswmcw" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/5xHBXPswmcw?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Ramonaramsfootball" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/Ramonaramsfootball" - }, - "yt$userId": { - "$t": "JE_miX30awxqh9o0Tv1nFw" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "denied" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/5xHBXPswmcw?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 386, - "yt$format": 5 - }, - { - "url": "rtsp://v4.cache4.c.youtube.com/CiILENy73wIaGQnMmTD7XMER5xMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 386, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache8.c.youtube.com/CiILENy73wIaGQnMmTD7XMER5xMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 386, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "ramonaramsfootball", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Ramonaramsfootball" - } - ], - "media$description": { - "$t": "Marc Sutton #78 Class of 2012, National Football Federation Award Winner, All Inland Empire First Team for 2 years, Position: Tackle Height:6'4\" Weight:265", - "type": "plain" - }, - "media$keywords": { - "$t": "Ramona, Football" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=5xHBXPswmcw&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/5xHBXPswmcw/default.jpg", - "height": 90, - "width": 120, - "time": "00:03:13", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/5xHBXPswmcw/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/5xHBXPswmcw/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/5xHBXPswmcw/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:36.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/5xHBXPswmcw/2.jpg", - "height": 90, - "width": 120, - "time": "00:03:13", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/5xHBXPswmcw/3.jpg", - "height": 90, - "width": 120, - "time": "00:04:49.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Marc Sutton #78", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "386" - }, - "yt$uploaded": { - "$t": "2012-04-16T04:02:31.000Z" - }, - "yt$videoid": { - "$t": "5xHBXPswmcw" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "3" - } - }, - { - "gd$etag": "W/\"AkACQn47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:mTkisZG6mcU" - }, - "published": { - "$t": "2012-04-16T03:59:23.000Z" - }, - "updated": { - "$t": "2012-04-16T03:59:23.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Nonprofit", - "label": "Nonprofits & Activism" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Rancho" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Cucamonga" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Middle" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "School" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Advanced" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Band" - } - ], - "title": { - "$t": "Joseph @ Colony High 10-2-11.mp4" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/mTkisZG6mcU?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=mTkisZG6mcU&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/mTkisZG6mcU/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/mTkisZG6mcU/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=mTkisZG6mcU" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/mTkisZG6mcU?v=2" - } - ], - "author": [ - { - "name": { - "$t": "majicmiracles" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/majicmiracles" - }, - "yt$userId": { - "$t": "nRO7en25sxio2jY7CiyDeQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/mTkisZG6mcU/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Nonprofit", - "label": "Nonprofits & Activism", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/mTkisZG6mcU?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 21, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache3.c.youtube.com/CiILENy73wIaGQnFmbqRsSI5mRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 21, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache8.c.youtube.com/CiILENy73wIaGQnFmbqRsSI5mRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 21, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "majicmiracles", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "majicmiracles" - } - ], - "media$description": { - "$t": "Football Game - Drumming from the Bleachers", - "type": "plain" - }, - "media$keywords": { - "$t": "Rancho, Cucamonga, Middle, School, Advanced, Band" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=mTkisZG6mcU&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/mTkisZG6mcU/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:10.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/mTkisZG6mcU/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/mTkisZG6mcU/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/mTkisZG6mcU/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:05.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/mTkisZG6mcU/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:10.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/mTkisZG6mcU/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:15.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Joseph @ Colony High 10-2-11.mp4", - "type": "plain" - }, - "yt$duration": { - "seconds": "21" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:59:23.000Z" - }, - "yt$videoid": { - "$t": "mTkisZG6mcU" - } - } - }, - { - "gd$etag": "W/\"AkQHRH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:XnRokBqZBrc" - }, - "published": { - "$t": "2012-04-16T03:52:15.000Z" - }, - "updated": { - "$t": "2012-04-16T03:52:15.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "aaronfootball2" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Outdoor Sports" - } - ], - "title": { - "$t": "Aaron Playing Football" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/XnRokBqZBrc?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=XnRokBqZBrc&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/XnRokBqZBrc/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/XnRokBqZBrc/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=XnRokBqZBrc" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/XnRokBqZBrc?v=2" - } - ], - "author": [ - { - "name": { - "$t": "lauraellen32" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/lauraellen32" - }, - "yt$userId": { - "$t": "hiO6pvzA3blJzKG_-UVaFQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/XnRokBqZBrc/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/XnRokBqZBrc?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 115, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache4.c.youtube.com/CiILENy73wIaGQm3BpkakGh0XhMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 115, - "yt$format": 1 - }, - { - "url": "rtsp://v1.cache7.c.youtube.com/CiILENy73wIaGQm3BpkakGh0XhMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 115, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "lauraellen32", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "lauraellen32" - } - ], - "media$description": { - "$t": "October 2011 - He's number 48", - "type": "plain" - }, - "media$keywords": { - "$t": "aaronfootball2, Outdoor Sports" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=XnRokBqZBrc&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/XnRokBqZBrc/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:57.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/XnRokBqZBrc/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/XnRokBqZBrc/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/XnRokBqZBrc/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:28.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/XnRokBqZBrc/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:57.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/XnRokBqZBrc/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:26.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Aaron Playing Football", - "type": "plain" - }, - "yt$duration": { - "seconds": "115" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:52:15.000Z" - }, - "yt$videoid": { - "$t": "XnRokBqZBrc" - } - } - }, - { - "gd$etag": "W/\"AkYAR347eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:Weto5t-jNrE" - }, - "published": { - "$t": "2012-04-16T03:49:06.000Z" - }, - "updated": { - "$t": "2012-04-16T03:49:06.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Diablos" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Spartans" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Mission" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Viejo" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "De" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "La" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Salle" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "High" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "School" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "2005" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "sports" - } - ], - "title": { - "$t": "Giacomo Vitko's HS Football Highlights Pt. 3" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/Weto5t-jNrE?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=Weto5t-jNrE&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Weto5t-jNrE/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Weto5t-jNrE/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=Weto5t-jNrE" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Weto5t-jNrE?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Me4678" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/Me4678" - }, - "yt$userId": { - "$t": "qCTTrmhVWvFLqKAU4k0zwQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/Weto5t-jNrE/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/Weto5t-jNrE?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 69, - "yt$format": 5 - }, - { - "url": "rtsp://v8.cache4.c.youtube.com/CiILENy73wIaGQmxNqPf5mjrWRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 69, - "yt$format": 1 - }, - { - "url": "rtsp://v1.cache2.c.youtube.com/CiILENy73wIaGQmxNqPf5mjrWRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 69, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "me4678", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Me4678" - } - ], - "media$description": { - "$t": "Mission Viejo DT-72 Vs De La Salle", - "type": "plain" - }, - "media$keywords": { - "$t": "Diablos, Spartans, Mission, Viejo, De, La, Salle, Football, High, School, 2005, sports" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=Weto5t-jNrE&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/Weto5t-jNrE/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:34.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/Weto5t-jNrE/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/Weto5t-jNrE/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/Weto5t-jNrE/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:17.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/Weto5t-jNrE/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:34.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/Weto5t-jNrE/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:51.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Giacomo Vitko's HS Football Highlights Pt. 3", - "type": "plain" - }, - "yt$duration": { - "seconds": "69" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:49:06.000Z" - }, - "yt$videoid": { - "$t": "Weto5t-jNrE" - } - } - }, - { - "gd$etag": "W/\"AkYDQX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:NS5e35tTD6k" - }, - "published": { - "$t": "2012-04-16T03:49:30.000Z" - }, - "updated": { - "$t": "2012-04-16T03:49:30.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Jed Brummett" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Carroll County Crushing Crows" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Indoor Football" - } - ], - "title": { - "$t": "Jed Brummett - Indoor Football April 15 2012 - 1st TD Pass Vs. Crushing Crows East" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/NS5e35tTD6k?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=NS5e35tTD6k&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NS5e35tTD6k/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NS5e35tTD6k/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=NS5e35tTD6k" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NS5e35tTD6k?v=2" - } - ], - "author": [ - { - "name": { - "$t": "rodgerraven" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/rodgerraven" - }, - "yt$userId": { - "$t": "1dfHFnOQ87E2lcXt53TWXg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/NS5e35tTD6k/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/NS5e35tTD6k?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 16, - "yt$format": 5 - }, - { - "url": "rtsp://v3.cache4.c.youtube.com/CiILENy73wIaGQmpD1Ob314uNRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 16, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache7.c.youtube.com/CiILENy73wIaGQmpD1Ob314uNRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 16, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "rodgerraven", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "rodgerraven" - } - ], - "media$description": { - "$t": "Crushing Crows North lost a tough fought game vs Crushing Crows East 20-12", - "type": "plain" - }, - "media$keywords": { - "$t": "Jed Brummett, Carroll County Crushing Crows, Indoor Football" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=NS5e35tTD6k&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/NS5e35tTD6k/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:08", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/NS5e35tTD6k/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/NS5e35tTD6k/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/NS5e35tTD6k/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:04", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/NS5e35tTD6k/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:08", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/NS5e35tTD6k/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:12", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Jed Brummett - Indoor Football April 15 2012 - 1st TD Pass Vs. Crushing Crows East", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "16" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:49:30.000Z" - }, - "yt$videoid": { - "$t": "NS5e35tTD6k" - } - } - }, - { - "gd$etag": "W/\"DU4GSH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:H6IjXIotjWI" - }, - "published": { - "$t": "2012-04-16T03:45:29.000Z" - }, - "updated": { - "$t": "2012-04-16T03:45:29.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Blake" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "First" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Pick" - } - ], - "title": { - "$t": "Blake First Tackle Football Pick vs Bulldogs 7-6 Win" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/H6IjXIotjWI?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=H6IjXIotjWI&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/H6IjXIotjWI/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/H6IjXIotjWI/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=H6IjXIotjWI" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/H6IjXIotjWI?v=2" - } - ], - "author": [ - { - "name": { - "$t": "BlakeLilFitzStaley" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/BlakeLilFitzStaley" - }, - "yt$userId": { - "$t": "XcJFG0qDgG0PzRMTwd6Wqg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/H6IjXIotjWI/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/H6IjXIotjWI?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 17, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache2.c.youtube.com/CiILENy73wIaGQlijS2KXCOiHxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 17, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache7.c.youtube.com/CiILENy73wIaGQlijS2KXCOiHxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 17, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "blakelilfitzstaley", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "BlakeLilFitzStaley" - } - ], - "media$description": { - "$t": "", - "type": "plain" - }, - "media$keywords": { - "$t": "Blake, First, Pick" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=H6IjXIotjWI&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/H6IjXIotjWI/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:08.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/H6IjXIotjWI/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/H6IjXIotjWI/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/H6IjXIotjWI/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:04.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/H6IjXIotjWI/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:08.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/H6IjXIotjWI/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:12.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Blake First Tackle Football Pick vs Bulldogs 7-6 Win", - "type": "plain" - }, - "yt$duration": { - "seconds": "17" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:45:29.000Z" - }, - "yt$videoid": { - "$t": "H6IjXIotjWI" - } - } - }, - { - "gd$etag": "W/\"DEMHQX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:7MckFDAUJXQ" - }, - "published": { - "$t": "2012-04-16T03:20:30.000Z" - }, - "updated": { - "$t": "2012-04-16T03:20:30.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Anatomy" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Final" - } - ], - "title": { - "$t": "Anatomy Final.mp4" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/7MckFDAUJXQ?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=7MckFDAUJXQ&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/7MckFDAUJXQ/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/7MckFDAUJXQ/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=7MckFDAUJXQ" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/7MckFDAUJXQ?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Jacobr158" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/Jacobr158" - }, - "yt$userId": { - "$t": "odOMv6k7vbnl_tZDBCs5kw" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/7MckFDAUJXQ/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/7MckFDAUJXQ?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 219, - "yt$format": 5 - }, - { - "url": "rtsp://v5.cache7.c.youtube.com/CiILENy73wIaGQl0JRQwFCTH7BMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 219, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQl0JRQwFCTH7BMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 219, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "jacobr158", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Jacobr158" - } - ], - "media$description": { - "$t": "This video describes the muscles used in throwing a football how to improve them, and what throwing a football looks like.", - "type": "plain" - }, - "media$keywords": { - "$t": "Anatomy, Final" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=7MckFDAUJXQ&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/7MckFDAUJXQ/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:49.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/7MckFDAUJXQ/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/7MckFDAUJXQ/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/7MckFDAUJXQ/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:54.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/7MckFDAUJXQ/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:49.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/7MckFDAUJXQ/3.jpg", - "height": 90, - "width": 120, - "time": "00:02:44.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Anatomy Final.mp4", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "219" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:20:30.000Z" - }, - "yt$videoid": { - "$t": "7MckFDAUJXQ" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "2" - } - }, - { - "gd$etag": "W/\"DEMESX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:m_NVZ7A-h6E" - }, - "published": { - "$t": "2012-04-16T03:20:08.000Z" - }, - "updated": { - "$t": "2012-04-16T03:20:08.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - } - ], - "title": { - "$t": "shoe and football=swagg!!!" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/m_NVZ7A-h6E?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=m_NVZ7A-h6E&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/m_NVZ7A-h6E/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/m_NVZ7A-h6E/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=m_NVZ7A-h6E" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/m_NVZ7A-h6E?v=2" - } - ], - "author": [ - { - "name": { - "$t": "e3swagg" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/e3swagg" - }, - "yt$userId": { - "$t": "u9E1DgtYmsB_LGsvsX3rWQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/m_NVZ7A-h6E/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/m_NVZ7A-h6E?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 15, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache7.c.youtube.com/CiILENy73wIaGQmhhz6wZ1XzmxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 15, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache1.c.youtube.com/CiILENy73wIaGQmhhz6wZ1XzmxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 15, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "e3swagg", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "e3swagg" - } - ], - "media$description": { - "$t": "my shoe and a football can talk. Lol", - "type": "plain" - }, - "media$keywords": {}, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=m_NVZ7A-h6E&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/m_NVZ7A-h6E/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:07.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/m_NVZ7A-h6E/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/m_NVZ7A-h6E/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/m_NVZ7A-h6E/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:03.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/m_NVZ7A-h6E/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:07.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/m_NVZ7A-h6E/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:11.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "shoe and football=swagg!!!", - "type": "plain" - }, - "yt$duration": { - "seconds": "15" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:20:08.000Z" - }, - "yt$videoid": { - "$t": "m_NVZ7A-h6E" - } - } - }, - { - "gd$etag": "W/\"DEQMQX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:dxCDd9d85eQ" - }, - "published": { - "$t": "2012-04-16T03:19:40.000Z" - }, - "updated": { - "$t": "2012-04-16T03:19:40.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "lucy" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "camrae" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "012" - } - ], - "title": { - "$t": "Just us a finchel love story ep 1" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/dxCDd9d85eQ?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=dxCDd9d85eQ&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/dxCDd9d85eQ/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/dxCDd9d85eQ/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=dxCDd9d85eQ" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/dxCDd9d85eQ?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Mackenzie Clearwater" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/y5Xccjwl41lISaYrcAIi_A" - }, - "yt$userId": { - "$t": "y5Xccjwl41lISaYrcAIi_A" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/dxCDd9d85eQ/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/dxCDd9d85eQ?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 7, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache5.c.youtube.com/CiILENy73wIaGQnk5XzXd4MQdxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 7, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache8.c.youtube.com/CiILENy73wIaGQnk5XzXd4MQdxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 7, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "y5Xccjwl41lISaYrcAIi_A", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Mackenzie Clearwater" - } - ], - "media$description": { - "$t": "Plot: Finn has a huge crush on Rachel but Finn and Rachel are best friends. Rachel and Sam are going out but Rachel likes Finn. Rachel is not that cool but finn is in the caption of the football team, Finn and Rachel have been best friends since they were 5 they are both 15 when they were little they they promised to be each other's first kiss On with the story At School f-hey Rach u want to come round tonight r-hey yer why not f- sweet r-ur such a nerd f- u bet ya r- oh god I cant be seen with a nerd latter (about to walk a way but finn stands in frount of her) f- realy well then (hugs her ) Q-awww how cute are u two final going out yay that means that Santana ows me $30 r- QUINN f- its great to know that our friends are making bets about our love life (btw Rachel and Quinn are friends) R-well where are very close friends F-(gets a bit sad at the word Friend ) Q- well it was just the glee culb R+F-we need to talk to them Q-(runs away) R- where is she going F- who cears R- where were we ill be at ur around 4 the end sorry it was short the next one will be longer no copy right intende", - "type": "plain" - }, - "media$keywords": { - "$t": "lucy, camrae, 012" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=dxCDd9d85eQ&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/dxCDd9d85eQ/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:03.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/dxCDd9d85eQ/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/dxCDd9d85eQ/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/dxCDd9d85eQ/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:01.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/dxCDd9d85eQ/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:03.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/dxCDd9d85eQ/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:05.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Just us a finchel love story ep 1", - "type": "plain" - }, - "yt$duration": { - "seconds": "7" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:19:40.000Z" - }, - "yt$videoid": { - "$t": "dxCDd9d85eQ" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "2" - } - }, - { - "gd$etag": "W/\"DEQHRH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:Yo8PPfYYzYo" - }, - "published": { - "$t": "2012-04-16T03:18:55.000Z" - }, - "updated": { - "$t": "2012-04-16T03:18:55.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Entertainment", - "label": "Entertainment" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "All Pro Football 2k8" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "2k sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "visual concepts" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "the catch" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Joe Montana" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Herman Moore" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "San Francisco 49ers" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Detroit Lions" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "NFL" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Google" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Yahoo" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "wikipedia" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "bing" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "PS3" - } - ], - "title": { - "$t": "All Pro Football 2K8 Spectacular Catch!!! Joe Montana to Herman Moore" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/Yo8PPfYYzYo?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=Yo8PPfYYzYo&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Yo8PPfYYzYo/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Yo8PPfYYzYo/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=Yo8PPfYYzYo" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Yo8PPfYYzYo?v=2" - } - ], - "author": [ - { - "name": { - "$t": "tjglendinning" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/tjglendinning" - }, - "yt$userId": { - "$t": "1IFS_bkPOus2ZVbdZdPELQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/Yo8PPfYYzYo/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Entertainment", - "label": "Entertainment", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/Yo8PPfYYzYo?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 33, - "yt$format": 5 - }, - { - "url": "rtsp://v5.cache5.c.youtube.com/CiILENy73wIaGQmKzRj2PQ-PYhMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 33, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache6.c.youtube.com/CiILENy73wIaGQmKzRj2PQ-PYhMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 33, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "tjglendinning", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "tjglendinning" - } - ], - "media$description": { - "$t": "Awesome catch... The 2K Series of football games are still better than modern games in nearly all aspects. The graphics are not quite on par, but this game was made in 2007 and looks way better than Madden 10 or possibly even 11 graphically. The presentation is still top notch.", - "type": "plain" - }, - "media$keywords": { - "$t": "All Pro Football 2k8, 2k sports, visual concepts, the catch, Joe Montana, Herman Moore, San Francisco 49ers, Detroit Lions, NFL, Google, Yahoo, wikipedia, bing, PS3" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=Yo8PPfYYzYo&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/Yo8PPfYYzYo/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:16.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/Yo8PPfYYzYo/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/Yo8PPfYYzYo/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/Yo8PPfYYzYo/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:08.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/Yo8PPfYYzYo/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:16.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/Yo8PPfYYzYo/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:24.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "All Pro Football 2K8 Spectacular Catch!!! Joe Montana to Herman Moore", - "type": "plain" - }, - "yt$duration": { - "seconds": "33" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:18:55.000Z" - }, - "yt$videoid": { - "$t": "Yo8PPfYYzYo" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "4" - } - }, - { - "gd$etag": "W/\"DEUBRH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:NMYpMDpId-E" - }, - "published": { - "$t": "2012-04-16T03:17:35.000Z" - }, - "updated": { - "$t": "2012-04-16T03:17:35.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Education", - "label": "Education" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Adult" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ABA" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Therapy" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Independent Leisure skills" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Scrapbooking" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Special needs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Autism" - } - ], - "title": { - "$t": "Leisure Skills: Scrapbooking" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/NMYpMDpId-E?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=NMYpMDpId-E&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NMYpMDpId-E/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=NMYpMDpId-E" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NMYpMDpId-E?v=2" - } - ], - "author": [ - { - "name": { - "$t": "ShapeOfBehavior" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/ShapeOfBehavior" - }, - "yt$userId": { - "$t": "tGXXyf0lq885PjT9avLtJA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "denied" - }, - { - "action": "commentVote", - "permission": "denied" - }, - { - "action": "videoRespond", - "permission": "denied" - }, - { - "action": "rate", - "permission": "denied" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Education", - "label": "Education", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/NMYpMDpId-E?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 16, - "yt$format": 5 - }, - { - "url": "rtsp://v4.cache4.c.youtube.com/CiILENy73wIaGQnhd0g6MCnGNBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 16, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache8.c.youtube.com/CiILENy73wIaGQnhd0g6MCnGNBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 16, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "shapeofbehavior", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "ShapeOfBehavior" - } - ], - "media$description": { - "$t": "The Shape focuses on building leisure skills around patient preference and choice in the young adult program. This young adult likes football and he enjoys the floppy paper and the stickers allow the incoporation of more fine motor development. Building independent leisure skills promotes independence and is crticial for better quality of life.", - "type": "plain" - }, - "media$keywords": { - "$t": "Adult, ABA, Therapy, Independent Leisure skills, Scrapbooking, Special needs, Autism" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=NMYpMDpId-E&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/NMYpMDpId-E/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:08", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/NMYpMDpId-E/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/NMYpMDpId-E/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/NMYpMDpId-E/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:04", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/NMYpMDpId-E/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:08", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/NMYpMDpId-E/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:12", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Leisure Skills: Scrapbooking", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "16" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:17:35.000Z" - }, - "yt$videoid": { - "$t": "NMYpMDpId-E" - } - } - }, - { - "gd$etag": "W/\"DEUAQ347eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:NVEvZmggNKM" - }, - "published": { - "$t": "2012-04-16T03:17:22.000Z" - }, - "updated": { - "$t": "2012-04-16T03:17:22.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "JUSTIN" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "BIEBER" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ES" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "DEL" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "BARCA!!!" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "youtube" - } - ], - "title": { - "$t": "JUSTIN BIEBER ES DEL BARCA!!! - YouTube.flv" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/NVEvZmggNKM?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=NVEvZmggNKM&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NVEvZmggNKM/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NVEvZmggNKM/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=NVEvZmggNKM" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/NVEvZmggNKM?v=2" - } - ], - "author": [ - { - "name": { - "$t": "JUSTIN startpop" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/WZNMChP4aOldvORBIFIQTA" - }, - "yt$userId": { - "$t": "WZNMChP4aOldvORBIFIQTA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/NVEvZmggNKM/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/NVEvZmggNKM?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 169, - "yt$format": 5 - }, - { - "url": "rtsp://v7.cache5.c.youtube.com/CiILENy73wIaGQmjNCBoZi9RNRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 169, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache7.c.youtube.com/CiILENy73wIaGQmjNCBoZi9RNRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 169, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "WZNMChP4aOldvORBIFIQTA", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "JUSTIN startpop" - } - ], - "media$description": { - "$t": "Justin Bieber jugando football con la camisera del barca vamosss Justin goo goo ...", - "type": "plain" - }, - "media$keywords": { - "$t": "JUSTIN, BIEBER, ES, DEL, BARCA!!!, youtube" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=NVEvZmggNKM&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/NVEvZmggNKM/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:24.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/NVEvZmggNKM/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/NVEvZmggNKM/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/NVEvZmggNKM/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:42.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/NVEvZmggNKM/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:24.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/NVEvZmggNKM/3.jpg", - "height": 90, - "width": 120, - "time": "00:02:06.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "JUSTIN BIEBER ES DEL BARCA!!! - YouTube.flv", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "169" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:17:22.000Z" - }, - "yt$videoid": { - "$t": "NVEvZmggNKM" - } - } - }, - { - "gd$etag": "W/\"D0QMQH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:fe9lRnedv2U" - }, - "published": { - "$t": "2012-04-16T03:03:01.000Z" - }, - "updated": { - "$t": "2012-04-16T03:03:01.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "talented freshmen" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "quarterback" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "highlights" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "valuable" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "nfl" - } - ], - "title": { - "$t": "Pano Tiatia 2011 Football Highlights" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/fe9lRnedv2U?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=fe9lRnedv2U&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/fe9lRnedv2U/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/fe9lRnedv2U/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=fe9lRnedv2U" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/fe9lRnedv2U?v=2" - } - ], - "author": [ - { - "name": { - "$t": "lstiax2" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/lstiax2" - }, - "yt$userId": { - "$t": "jWHn5L0Cf4y2XozrkEG8tA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "denied" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/fe9lRnedv2U/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/fe9lRnedv2U?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 234, - "yt$format": 5 - }, - { - "url": "rtsp://v4.cache8.c.youtube.com/CiILENy73wIaGQllv513RmXvfRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 234, - "yt$format": 1 - }, - { - "url": "rtsp://v5.cache8.c.youtube.com/CiILENy73wIaGQllv513RmXvfRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 234, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "lstiax2", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "lstiax2" - } - ], - "media$description": { - "$t": "Pano Tiatia, Freshmen #29 Running Back | Pineview High School, St. George, Utah Ran over 1500 yards in the season.", - "type": "plain" - }, - "media$keywords": { - "$t": "Football, sports, talented freshmen, quarterback, highlights, valuable, nfl" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=fe9lRnedv2U&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/fe9lRnedv2U/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:57", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/fe9lRnedv2U/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/fe9lRnedv2U/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/fe9lRnedv2U/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:58.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/fe9lRnedv2U/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:57", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/fe9lRnedv2U/3.jpg", - "height": 90, - "width": 120, - "time": "00:02:55.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Pano Tiatia 2011 Football Highlights", - "type": "plain" - }, - "yt$duration": { - "seconds": "234" - }, - "yt$uploaded": { - "$t": "2012-04-16T03:03:01.000Z" - }, - "yt$videoid": { - "$t": "fe9lRnedv2U" - } - } - }, - { - "gd$etag": "W/\"D0YDQH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:UF4a21RDJ78" - }, - "published": { - "$t": "2012-04-16T02:59:31.000Z" - }, - "updated": { - "$t": "2012-04-16T02:59:31.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Davis Rugby" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Davis High" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Rugby" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "DC Rugby" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Utah Rugby" - } - ], - "title": { - "$t": "Davis High Rugby vs Rocky Mtn Rugby Fight.wmv" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/UF4a21RDJ78?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=UF4a21RDJ78&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/UF4a21RDJ78/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/UF4a21RDJ78/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=UF4a21RDJ78" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/UF4a21RDJ78?v=2" - } - ], - "author": [ - { - "name": { - "$t": "JayGBarton1" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/JayGBarton1" - }, - "yt$userId": { - "$t": "jS-zBAq670xAB5vg0fbE4g" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/UF4a21RDJ78/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/UF4a21RDJ78?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 79, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQm_J0NU2xpeUBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 79, - "yt$format": 1 - }, - { - "url": "rtsp://v7.cache5.c.youtube.com/CiILENy73wIaGQm_J0NU2xpeUBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 79, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "jaygbarton1", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "JayGBarton1" - } - ], - "media$description": { - "$t": "Davis High Rugby in Davis County, Utah played a game at the Davis High Football field in Kaysville, Utah. Watch Davis High School play these boys... Davis worked them in this game it was exciting to see Davis Play these boys. Because of a fight the ref called the game a draw...", - "type": "plain" - }, - "media$keywords": { - "$t": "Davis Rugby, Davis High, Rugby, DC Rugby, Utah Rugby" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=UF4a21RDJ78&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/UF4a21RDJ78/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:39.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/UF4a21RDJ78/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/UF4a21RDJ78/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/UF4a21RDJ78/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:19.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/UF4a21RDJ78/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:39.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/UF4a21RDJ78/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:59.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Davis High Rugby vs Rocky Mtn Rugby Fight.wmv", - "type": "plain" - }, - "yt$duration": { - "seconds": "79" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:59:31.000Z" - }, - "yt$videoid": { - "$t": "UF4a21RDJ78" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "2" - } - }, - { - "gd$etag": "W/\"DkAHSX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:QSmB4X6WCwU" - }, - "published": { - "$t": "2012-04-16T02:52:18.000Z" - }, - "updated": { - "$t": "2012-04-16T02:52:18.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Nikki" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Rowe" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Isaac" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Govea" - } - ], - "title": { - "$t": "Nikki Rowe Football Isaac Govea 2010" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/QSmB4X6WCwU?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=QSmB4X6WCwU&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/QSmB4X6WCwU/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/QSmB4X6WCwU/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=QSmB4X6WCwU" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/QSmB4X6WCwU?v=2" - } - ], - "author": [ - { - "name": { - "$t": "dan100295" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/dan100295" - }, - "yt$userId": { - "$t": "F4YOrtG8Jw1dp2U4IFh10Q" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/QSmB4X6WCwU/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/QSmB4X6WCwU?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 302, - "yt$format": 5 - }, - { - "url": "rtsp://v2.cache1.c.youtube.com/CiILENy73wIaGQkFC5Z-4YEpQRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 302, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache8.c.youtube.com/CiILENy73wIaGQkFC5Z-4YEpQRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 302, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "dan100295", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "dan100295" - } - ], - "media$description": { - "$t": "#21 Isaac Govea Senior Year Highlights", - "type": "plain" - }, - "media$keywords": { - "$t": "Nikki, Rowe, Football, Isaac, Govea" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=QSmB4X6WCwU&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/QSmB4X6WCwU/default.jpg", - "height": 90, - "width": 120, - "time": "00:02:31", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/QSmB4X6WCwU/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/QSmB4X6WCwU/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/QSmB4X6WCwU/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:15.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/QSmB4X6WCwU/2.jpg", - "height": 90, - "width": 120, - "time": "00:02:31", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/QSmB4X6WCwU/3.jpg", - "height": 90, - "width": 120, - "time": "00:03:46.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Nikki Rowe Football Isaac Govea 2010", - "type": "plain" - }, - "yt$duration": { - "seconds": "302" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:52:18.000Z" - }, - "yt$videoid": { - "$t": "QSmB4X6WCwU" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "1" - } - }, - { - "gd$etag": "W/\"DkQHSX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:TWbTiYA-g4c" - }, - "published": { - "$t": "2012-04-16T02:45:38.000Z" - }, - "updated": { - "$t": "2012-04-16T02:45:38.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Highlights" - } - ], - "title": { - "$t": "JAKE SANDERS 2011 CARROLLTON FOOTBALL HIGHLIGHTS" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/TWbTiYA-g4c?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=TWbTiYA-g4c&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/TWbTiYA-g4c/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/TWbTiYA-g4c/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=TWbTiYA-g4c" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/TWbTiYA-g4c?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Collier Sanders" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/IfDpsBQG7sxYY6fW4VMXww" - }, - "yt$userId": { - "$t": "IfDpsBQG7sxYY6fW4VMXww" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/TWbTiYA-g4c/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/TWbTiYA-g4c?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 242, - "yt$format": 5 - }, - { - "url": "rtsp://v7.cache6.c.youtube.com/CiILENy73wIaGQmHgz6AidNmTRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 242, - "yt$format": 1 - }, - { - "url": "rtsp://v4.cache6.c.youtube.com/CiILENy73wIaGQmHgz6AidNmTRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 242, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "IfDpsBQG7sxYY6fW4VMXww", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Collier Sanders" - } - ], - "media$description": { - "$t": "Jake Sanders 2011 football highlights - Carrollton High School Trojans Class of 2014 6'6\" 320 lbs OT/OG", - "type": "plain" - }, - "media$keywords": { - "$t": "Football, Highlights" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=TWbTiYA-g4c&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/TWbTiYA-g4c/default.jpg", - "height": 90, - "width": 120, - "time": "00:02:01", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/TWbTiYA-g4c/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/TWbTiYA-g4c/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/TWbTiYA-g4c/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:00.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/TWbTiYA-g4c/2.jpg", - "height": 90, - "width": 120, - "time": "00:02:01", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/TWbTiYA-g4c/3.jpg", - "height": 90, - "width": 120, - "time": "00:03:01.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "JAKE SANDERS 2011 CARROLLTON FOOTBALL HIGHLIGHTS", - "type": "plain" - }, - "yt$duration": { - "seconds": "242" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:45:38.000Z" - }, - "yt$videoid": { - "$t": "TWbTiYA-g4c" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "4" - } - }, - { - "gd$etag": "W/\"DkYDSX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:A3nrRdjtPs8" - }, - "published": { - "$t": "2012-04-16T02:42:58.000Z" - }, - "updated": { - "$t": "2012-04-16T02:42:58.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "football" - } - ], - "title": { - "$t": "cardinals flag football" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/A3nrRdjtPs8?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=A3nrRdjtPs8&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/A3nrRdjtPs8/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/A3nrRdjtPs8/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=A3nrRdjtPs8" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/A3nrRdjtPs8?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Samantha roberts" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/FS184ENyxC4MsxogNYxYIw" - }, - "yt$userId": { - "$t": "FS184ENyxC4MsxogNYxYIw" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/A3nrRdjtPs8/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/A3nrRdjtPs8?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 6, - "yt$format": 5 - }, - { - "url": "rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQnPPu3YRet5AxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 6, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache8.c.youtube.com/CiILENy73wIaGQnPPu3YRet5AxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 6, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "FS184ENyxC4MsxogNYxYIw", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Samantha roberts" - } - ], - "media$description": { - "$t": "Cardinals Flagfootball", - "type": "plain" - }, - "media$keywords": { - "$t": "football" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=A3nrRdjtPs8&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/A3nrRdjtPs8/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:03", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/A3nrRdjtPs8/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/A3nrRdjtPs8/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/A3nrRdjtPs8/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:01.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/A3nrRdjtPs8/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:03", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/A3nrRdjtPs8/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:04.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "cardinals flag football", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "6" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:42:58.000Z" - }, - "yt$videoid": { - "$t": "A3nrRdjtPs8" - } - } - }, - { - "gd$etag": "W/\"CU4EQX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:_bKFFGfhx0k" - }, - "published": { - "$t": "2012-04-16T02:38:20.000Z" - }, - "updated": { - "$t": "2012-04-16T02:38:20.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Nonprofit", - "label": "Nonprofits & Activism" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "tshirt" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Battle" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "2010" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "10" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "30" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "11" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "31" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "40" - } - ], - "title": { - "$t": "T-Shirt Battle" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/_bKFFGfhx0k?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=_bKFFGfhx0k&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/_bKFFGfhx0k/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=_bKFFGfhx0k" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/_bKFFGfhx0k?v=2" - } - ], - "author": [ - { - "name": { - "$t": "3LittleNinjas" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/3LittleNinjas" - }, - "yt$userId": { - "$t": "aoZimlscjBchASOWVd1KtA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "moderated" - }, - { - "action": "commentVote", - "permission": "denied" - }, - { - "action": "videoRespond", - "permission": "denied" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/_bKFFGfhx0k/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Nonprofit", - "label": "Nonprofits & Activism", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/_bKFFGfhx0k?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 45, - "yt$format": 5 - }, - { - "url": "rtsp://v5.cache5.c.youtube.com/CiILENy73wIaGQlJx-FnFIWy_RMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 45, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache7.c.youtube.com/CiILENy73wIaGQlJx-FnFIWy_RMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 45, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "3littleninjas", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "3LittleNinjas" - } - ], - "media$description": { - "$t": "Monster vs. Football vs. Boston Terrier vs. Eagles vs. Boston Terrier", - "type": "plain" - }, - "media$keywords": { - "$t": "tshirt, Battle, 2010, 10, 30, 11, 31, 40" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=_bKFFGfhx0k&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/_bKFFGfhx0k/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:22.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/_bKFFGfhx0k/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/_bKFFGfhx0k/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/_bKFFGfhx0k/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:11.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/_bKFFGfhx0k/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:22.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/_bKFFGfhx0k/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:33.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "T-Shirt Battle", - "type": "plain" - }, - "yt$duration": { - "seconds": "45" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:38:20.000Z" - }, - "yt$videoid": { - "$t": "_bKFFGfhx0k" - } - } - }, - { - "gd$etag": "W/\"CU8HRX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:JKGRaBGCXHI" - }, - "published": { - "$t": "2012-04-16T02:37:14.000Z" - }, - "updated": { - "$t": "2012-04-16T02:37:14.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "CO" - } - ], - "title": { - "$t": "Cross Over sencillo Football Skills" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/JKGRaBGCXHI?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=JKGRaBGCXHI&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/JKGRaBGCXHI/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/JKGRaBGCXHI/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=JKGRaBGCXHI" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/JKGRaBGCXHI?v=2" - } - ], - "author": [ - { - "name": { - "$t": "XavierRojo1" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/XavierRojo1" - }, - "yt$userId": { - "$t": "i7lel-X-k9WhWCYBCReCbA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/JKGRaBGCXHI/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/JKGRaBGCXHI?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 9, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache2.c.youtube.com/CiILENy73wIaGQlyXIIRaJGhJBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 9, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache2.c.youtube.com/CiILENy73wIaGQlyXIIRaJGhJBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 9, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "xavierrojo1", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "XavierRojo1" - } - ], - "media$description": { - "$t": "Mi cross over sencillo", - "type": "plain" - }, - "media$keywords": { - "$t": "CO" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=JKGRaBGCXHI&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/JKGRaBGCXHI/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:04.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/JKGRaBGCXHI/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/JKGRaBGCXHI/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/JKGRaBGCXHI/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:02.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/JKGRaBGCXHI/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:04.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/JKGRaBGCXHI/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:06.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Cross Over sencillo Football Skills", - "type": "plain" - }, - "yt$duration": { - "seconds": "9" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:37:14.000Z" - }, - "yt$videoid": { - "$t": "JKGRaBGCXHI" - } - } - }, - { - "gd$etag": "W/\"CEABSX47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:8mTmvj_j-g8" - }, - "published": { - "$t": "2012-04-16T02:30:08.000Z" - }, - "updated": { - "$t": "2012-04-16T05:05:58.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "SBU" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Bearcats" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Weights" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "NCAA" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Samoa" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Samoans" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Jorge" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Batres" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Shedd" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Jameson" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Manuma" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Dro" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Ben" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Maligni" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Villa" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Athletes" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Strenght" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Conditioning" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "hodgetwins" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Work" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Big" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Muscle" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Iron" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Pump" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Protein" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Workout" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Curls" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Bench" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Squat" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Split" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Jerk" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Incline" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Massive" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Huge" - } - ], - "title": { - "$t": "SBU Football Grind Time Season." - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/8mTmvj_j-g8?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=8mTmvj_j-g8&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/8mTmvj_j-g8/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/8mTmvj_j-g8/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=8mTmvj_j-g8" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/8mTmvj_j-g8?v=2" - } - ], - "author": [ - { - "name": { - "$t": "jbKicks10" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/jbKicks10" - }, - "yt$userId": { - "$t": "_LQBLfh5z9r3se1gQNsglA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/8mTmvj_j-g8/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/8mTmvj_j-g8?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 171, - "yt$format": 5 - }, - { - "url": "rtsp://v3.cache7.c.youtube.com/CiILENy73wIaGQkP-uM_vuZk8hMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 171, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache4.c.youtube.com/CiILENy73wIaGQkP-uM_vuZk8hMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 171, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "jbkicks10", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "jbKicks10" - } - ], - "media$description": { - "$t": "Sbu Football players on a off day getting better for the upcoming season. Family!", - "type": "plain" - }, - "media$keywords": { - "$t": "SBU, Football, Bearcats, Weights, NCAA, Samoa, Samoans, Jorge, Batres, Shedd, Jameson, Manuma, Dro, Ben, Maligni, Villa, Athletes, Sports, Strenght, Conditioning, hodgetwins, Work, Big, Muscle, Iron, Pump, Protein, Workout, Curls, Bench, Squat, Split, Jerk, Incline, Massive, Huge" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=8mTmvj_j-g8&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/8mTmvj_j-g8/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:25.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/8mTmvj_j-g8/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/8mTmvj_j-g8/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/8mTmvj_j-g8/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:42.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/8mTmvj_j-g8/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:25.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/8mTmvj_j-g8/3.jpg", - "height": 90, - "width": 120, - "time": "00:02:08.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "SBU Football Grind Time Season.", - "type": "plain" - }, - "yt$duration": { - "seconds": "171" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:30:08.000Z" - }, - "yt$videoid": { - "$t": "8mTmvj_j-g8" - } - }, - "gd$rating": { - "average": 5, - "max": 5, - "min": 1, - "numRaters": 1, - "rel": "http://schemas.google.com/g/2005#overall" - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "8" - }, - "yt$rating": { - "numDislikes": "0", - "numLikes": "1" - } - }, - { - "gd$etag": "W/\"CUMGRX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:GYQXHEMNrNs" - }, - "published": { - "$t": "2012-04-16T02:30:24.000Z" - }, - "updated": { - "$t": "2012-04-16T02:30:24.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Entertainment", - "label": "Entertainment" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "cosmos" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ranni" - } - ], - "title": { - "$t": "18th Cosmos Football Tournament Ranni" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/GYQXHEMNrNs?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=GYQXHEMNrNs&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/GYQXHEMNrNs/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/GYQXHEMNrNs/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=GYQXHEMNrNs" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/GYQXHEMNrNs?v=2" - } - ], - "author": [ - { - "name": { - "$t": "nibis000" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/nibis000" - }, - "yt$userId": { - "$t": "bRZsdMalHparLXLqGO7FjA" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/GYQXHEMNrNs/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Entertainment", - "label": "Entertainment", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/GYQXHEMNrNs?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 54, - "yt$format": 5 - }, - { - "url": "rtsp://v4.cache7.c.youtube.com/CiILENy73wIaGQnbrA1DHBeEGRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 54, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache7.c.youtube.com/CiILENy73wIaGQnbrA1DHBeEGRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 54, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "nibis000", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "nibis000" - } - ], - "media$description": { - "$t": "www.cosmosranni.com Video By : Sibin Thomas n Lijo Varghese", - "type": "plain" - }, - "media$keywords": { - "$t": "cosmos, ranni" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=GYQXHEMNrNs&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/GYQXHEMNrNs/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:27", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/GYQXHEMNrNs/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/GYQXHEMNrNs/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/GYQXHEMNrNs/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:13.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/GYQXHEMNrNs/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:27", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/GYQXHEMNrNs/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:40.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "18th Cosmos Football Tournament Ranni", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "54" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:30:24.000Z" - }, - "yt$videoid": { - "$t": "GYQXHEMNrNs" - } - } - }, - { - "gd$etag": "W/\"CUcBQ347eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:BXEkcUrDT0w" - }, - "published": { - "$t": "2012-04-16T02:24:12.000Z" - }, - "updated": { - "$t": "2012-04-16T02:24:12.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Entertainment", - "label": "Entertainment" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ronaldo" - } - ], - "title": { - "$t": "Top five divers of world football" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/BXEkcUrDT0w?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=BXEkcUrDT0w&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/BXEkcUrDT0w/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/BXEkcUrDT0w/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=BXEkcUrDT0w" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/BXEkcUrDT0w?v=2" - } - ], - "author": [ - { - "name": { - "$t": "pnirajan" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/pnirajan" - }, - "yt$userId": { - "$t": "CzVunAaNES51pCtAp8pFdg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/BXEkcUrDT0w/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Entertainment", - "label": "Entertainment", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/BXEkcUrDT0w?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 56, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache3.c.youtube.com/CiILENy73wIaGQlMT8NKcSRxBRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 56, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache1.c.youtube.com/CiILENy73wIaGQlMT8NKcSRxBRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 56, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "pnirajan", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "pnirajan" - } - ], - "media$description": { - "$t": "ronaldo atlintop busquets", - "type": "plain" - }, - "media$keywords": { - "$t": "ronaldo" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=BXEkcUrDT0w&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/BXEkcUrDT0w/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:28", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/BXEkcUrDT0w/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/BXEkcUrDT0w/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/BXEkcUrDT0w/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:14", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/BXEkcUrDT0w/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:28", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/BXEkcUrDT0w/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:42", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Top five divers of world football", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "56" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:24:12.000Z" - }, - "yt$videoid": { - "$t": "BXEkcUrDT0w" - } - } - }, - { - "gd$etag": "W/\"CE4NQH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:s6uAgjYxL8w" - }, - "published": { - "$t": "2012-04-16T02:23:11.000Z" - }, - "updated": { - "$t": "2012-04-16T02:23:11.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Education", - "label": "Education" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "WPI" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Blimp" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Autonomous" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Flying" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "RC" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "RC Blimp" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "MQP" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Marcus Menghini" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Daniel Lanier" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Daniel Sarafconn" - } - ], - "title": { - "$t": "WPI Autonomous Blimp MQP Speed Test" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/s6uAgjYxL8w?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=s6uAgjYxL8w&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/s6uAgjYxL8w/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/s6uAgjYxL8w/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=s6uAgjYxL8w" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/s6uAgjYxL8w?v=2" - } - ], - "author": [ - { - "name": { - "$t": "MazonDel" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/MazonDel" - }, - "yt$userId": { - "$t": "7nVP6VVh0wA2HdJMzUwUww" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/s6uAgjYxL8w/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Education", - "label": "Education", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/s6uAgjYxL8w?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 32, - "yt$format": 5 - }, - { - "url": "rtsp://v3.cache1.c.youtube.com/CiILENy73wIaGQnMLzE2goCrsxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 32, - "yt$format": 1 - }, - { - "url": "rtsp://v5.cache5.c.youtube.com/CiILENy73wIaGQnMLzE2goCrsxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 32, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "mazondel", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "MazonDel" - } - ], - "media$description": { - "$t": "Marcus Menghini (pilot) and Daniel Lanier (tether operator) take the blimp down to the WPI football field and do a speed run from one end to the other with an amusing ending. Estimated speed is about 8.2 MPH and 7.1 Knots. The goals and requirements of the project stipulated that the blimp was able to beat 5 knot speeds for up to 90 minutes.", - "type": "plain" - }, - "media$keywords": { - "$t": "WPI, Blimp, Autonomous, Flying, RC, RC Blimp, MQP, Marcus Menghini, Daniel Lanier, Daniel Sarafconn" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=s6uAgjYxL8w&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/s6uAgjYxL8w/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:16", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/s6uAgjYxL8w/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/s6uAgjYxL8w/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/s6uAgjYxL8w/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:08", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/s6uAgjYxL8w/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:16", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/s6uAgjYxL8w/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:24", - "yt$name": "end" - } - ], - "media$title": { - "$t": "WPI Autonomous Blimp MQP Speed Test", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "32" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:23:11.000Z" - }, - "yt$videoid": { - "$t": "s6uAgjYxL8w" - } - } - }, - { - "gd$etag": "W/\"CE4MQH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:n9laM0U_It4" - }, - "published": { - "$t": "2012-04-16T02:23:01.000Z" - }, - "updated": { - "$t": "2012-04-16T02:23:01.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Piermario Morosini" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "collapses on pitch" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Pescara vs Livorno 14/04/2012" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Serie PIERMARIO MOROSINI" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "SI ACCASCIATO zaslabl" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "atak serca die dies smierc" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "ZAWAL SERCA DIE DIES DIED" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Piermario Morosini collapses" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "on pitch and DIE Pescara" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "vs livorno" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "collapsing during game" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "14 april 2012" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Piermario Morosini dead" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "after collapsing on pitch" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Piermario Morosini RIP" - } - ], - "title": { - "$t": "DEATH OF Italian Football Player \"Piermario Morosini" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/n9laM0U_It4?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=n9laM0U_It4&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/n9laM0U_It4/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/n9laM0U_It4/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=n9laM0U_It4" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/n9laM0U_It4?v=2" - } - ], - "author": [ - { - "name": { - "$t": "uisdui jkdfuji" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/u8AmWN8WK5om_0mDm1RwVg" - }, - "yt$userId": { - "$t": "u8AmWN8WK5om_0mDm1RwVg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/n9laM0U_It4/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/n9laM0U_It4?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 147, - "yt$format": 5 - }, - { - "url": "rtsp://v4.cache1.c.youtube.com/CiILENy73wIaGQneIj9FM1rZnxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 147, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache6.c.youtube.com/CiILENy73wIaGQneIj9FM1rZnxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 147, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "u8AmWN8WK5om_0mDm1RwVg", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "uisdui jkdfuji" - } - ], - "media$description": { - "$t": "tinyurl.com Piermario Morosini, collapses on pitch, Pescara vs Livorno 14/04/2012, Serie PIERMARIO MOROSINI, SI ACCASCIATO zaslabl, atak serca die dies smierc, ZAWAL SERCA DIE DIES DIED,Piermario Morosini collapses, on pitch and DIE Pescara, vs livorno, Piermario Morosini, collapsing during game, 14 april 2012,Piermario Morosini DEAD on the pitch,Piermario Morosini dead, after collapsing on pitch,Piermario Morosini RIP", - "type": "plain" - }, - "media$keywords": { - "$t": "Piermario Morosini, collapses on pitch, Pescara vs Livorno 14/04/2012, Serie PIERMARIO MOROSINI, SI ACCASCIATO zaslabl, atak serca die dies smierc, ZAWAL SERCA DIE DIES DIED, Piermario Morosini collapses, on pitch and DIE Pescara, vs livorno, collapsing during game, 14 april 2012, Piermario Morosini dead, after collapsing on pitch, Piermario Morosini RIP" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=n9laM0U_It4&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/n9laM0U_It4/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:13.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/n9laM0U_It4/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/n9laM0U_It4/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/n9laM0U_It4/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:36.750", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/n9laM0U_It4/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:13.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/n9laM0U_It4/3.jpg", - "height": 90, - "width": 120, - "time": "00:01:50.250", - "yt$name": "end" - } - ], - "media$title": { - "$t": "DEATH OF Italian Football Player \"Piermario Morosini", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "147" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:23:01.000Z" - }, - "yt$videoid": { - "$t": "n9laM0U_It4" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "43" - } - }, - { - "gd$etag": "W/\"C0QNQH47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:Y_9kP-Pduqk" - }, - "published": { - "$t": "2012-04-16T02:23:53.000Z" - }, - "updated": { - "$t": "2012-04-16T04:43:11.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Richmond#Tigers#MCG#AFL#" - } - ], - "title": { - "$t": "RichmondTigers2012 'Hear the Tigers Raw' Membership Promo unauthorised" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/Y_9kP-Pduqk?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=Y_9kP-Pduqk&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Y_9kP-Pduqk/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Y_9kP-Pduqk/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=Y_9kP-Pduqk" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/Y_9kP-Pduqk?v=2" - } - ], - "author": [ - { - "name": { - "$t": "RichmondTigers2012" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/RichmondTigers2012" - }, - "yt$userId": { - "$t": "o8ndLvRQsNNnxkfO2KsKew" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/Y_9kP-Pduqk/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/Y_9kP-Pduqk?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 36, - "yt$format": 5 - }, - { - "url": "rtsp://v1.cache8.c.youtube.com/CiILENy73wIaGQmput3jP2T_YxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 36, - "yt$format": 1 - }, - { - "url": "rtsp://v8.cache7.c.youtube.com/CiILENy73wIaGQmput3jP2T_YxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 36, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "richmondtigers2012", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "RichmondTigers2012" - } - ], - "media$description": { - "$t": "RichmondTigers2012 'Hear the Tigers Raw' Membership Promo unauthorised written, spoken & photographed by Pete Dowe. www.richmondfc.com.au www.youtube.com www.youtube.com www.youtube.com Richmond#Tigers#Membership#Promo#MCG#Punt#Rd#Oval#Melbourne#Cricket#Ground#AFL#Football#", - "type": "plain" - }, - "media$keywords": { - "$t": "Richmond#Tigers#MCG#AFL#" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=Y_9kP-Pduqk&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/Y_9kP-Pduqk/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:18", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/Y_9kP-Pduqk/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/Y_9kP-Pduqk/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/Y_9kP-Pduqk/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:09", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/Y_9kP-Pduqk/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:18", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/Y_9kP-Pduqk/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:27", - "yt$name": "end" - } - ], - "media$title": { - "$t": "RichmondTigers2012 'Hear the Tigers Raw' Membership Promo unauthorised", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "36" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:23:53.000Z" - }, - "yt$videoid": { - "$t": "Y_9kP-Pduqk" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "8" - } - }, - { - "gd$etag": "W/\"CUcHR347eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:G8WwszlH5bM" - }, - "published": { - "$t": "2012-04-16T02:23:56.000Z" - }, - "updated": { - "$t": "2012-04-16T02:23:56.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "topps" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "amazon" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "baseball cards" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "sportdeals4u" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Wowzzer" - } - ], - "title": { - "$t": "amazon order from wowzzer" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/G8WwszlH5bM?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=G8WwszlH5bM&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/G8WwszlH5bM/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/G8WwszlH5bM/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=G8WwszlH5bM" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/G8WwszlH5bM?v=2" - } - ], - "author": [ - { - "name": { - "$t": "DingerzDarwin" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/DingerzDarwin" - }, - "yt$userId": { - "$t": "WfKIyLDZKDAdnJDLZT4a3g" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/G8WwszlH5bM/comments?v=2", - "countHint": 0 - } - }, - "yt$hd": {}, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/G8WwszlH5bM?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 169, - "yt$format": 5 - }, - { - "url": "rtsp://v7.cache2.c.youtube.com/CiILENy73wIaGQmz5Uc5s7DFGxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 169, - "yt$format": 1 - }, - { - "url": "rtsp://v2.cache5.c.youtube.com/CiILENy73wIaGQmz5Uc5s7DFGxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 169, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "dingerzdarwin", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "DingerzDarwin" - } - ], - "media$description": { - "$t": "Amazon/wowzzer sent football cards instead of baseball cards.", - "type": "plain" - }, - "media$keywords": { - "$t": "topps, amazon, baseball cards, sportdeals4u, Wowzzer" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=G8WwszlH5bM&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/G8WwszlH5bM/default.jpg", - "height": 90, - "width": 120, - "time": "00:01:24.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/G8WwszlH5bM/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/G8WwszlH5bM/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/G8WwszlH5bM/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:42.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/G8WwszlH5bM/2.jpg", - "height": 90, - "width": 120, - "time": "00:01:24.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/G8WwszlH5bM/3.jpg", - "height": 90, - "width": 120, - "time": "00:02:06.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "amazon order from wowzzer", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "169" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:23:56.000Z" - }, - "yt$videoid": { - "$t": "G8WwszlH5bM" - } - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "13" - } - }, - { - "gd$etag": "W/\"CE4GSX47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:fr3ik4pxgs8" - }, - "published": { - "$t": "2012-04-16T02:22:08.000Z" - }, - "updated": { - "$t": "2012-04-16T02:22:08.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Howto", - "label": "Howto & Style" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "moi" - } - ], - "title": { - "$t": "FootConnect_Ver1" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/fr3ik4pxgs8?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=fr3ik4pxgs8&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/fr3ik4pxgs8/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/fr3ik4pxgs8/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=fr3ik4pxgs8" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/fr3ik4pxgs8?v=2" - } - ], - "author": [ - { - "name": { - "$t": "trinhvandien82" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/trinhvandien82" - }, - "yt$userId": { - "$t": "sFieUQ5yo-6wQxO4JsTlJg" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/fr3ik4pxgs8/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Howto", - "label": "Howto & Style", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/fr3ik4pxgs8?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 430, - "yt$format": 5 - }, - { - "url": "rtsp://v8.cache8.c.youtube.com/CiILENy73wIaGQnPgnGKk-K9fhMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 430, - "yt$format": 1 - }, - { - "url": "rtsp://v6.cache2.c.youtube.com/CiILENy73wIaGQnPgnGKk-K9fhMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 430, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "trinhvandien82", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "trinhvandien82" - } - ], - "media$description": { - "$t": "Football Connection App", - "type": "plain" - }, - "media$keywords": { - "$t": "video, moi" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=fr3ik4pxgs8&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/fr3ik4pxgs8/default.jpg", - "height": 90, - "width": 120, - "time": "00:03:35", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/fr3ik4pxgs8/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/fr3ik4pxgs8/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/fr3ik4pxgs8/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:47.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/fr3ik4pxgs8/2.jpg", - "height": 90, - "width": 120, - "time": "00:03:35", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/fr3ik4pxgs8/3.jpg", - "height": 90, - "width": 120, - "time": "00:05:22.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "FootConnect_Ver1", - "type": "plain" - }, - "yt$duration": { - "seconds": "430" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:22:08.000Z" - }, - "yt$videoid": { - "$t": "fr3ik4pxgs8" - } - } - }, - { - "gd$etag": "W/\"CkUNQn47eCp7I2A9WhVXFUg.\"", - "id": { - "$t": "tag:youtube.com,2008:video:V8G4q3AiMfw" - }, - "published": { - "$t": "2012-04-16T02:18:04.000Z" - }, - "updated": { - "$t": "2012-04-16T04:24:53.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Sports", - "label": "Sports" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "jv" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "football" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "highlights" - } - ], - "title": { - "$t": "Tejon Anthony Sophomore Football Highlight" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/V8G4q3AiMfw?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=V8G4q3AiMfw&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/V8G4q3AiMfw/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/V8G4q3AiMfw/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=V8G4q3AiMfw" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/V8G4q3AiMfw?v=2" - } - ], - "author": [ - { - "name": { - "$t": "McJagger13" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/McJagger13" - }, - "yt$userId": { - "$t": "-mzo8fl_pEwzoMzlYsIwYQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/V8G4q3AiMfw/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Sports", - "label": "Sports", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/V8G4q3AiMfw?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 330, - "yt$format": 5 - }, - { - "url": "rtsp://v2.cache6.c.youtube.com/CiILENy73wIaGQn8MSJwq7jBVxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 330, - "yt$format": 1 - }, - { - "url": "rtsp://v7.cache3.c.youtube.com/CiILENy73wIaGQn8MSJwq7jBVxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 330, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "mcjagger13", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "McJagger13" - } - ], - "media$description": { - "$t": "half of my football season", - "type": "plain" - }, - "media$keywords": { - "$t": "jv, football, highlights" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=V8G4q3AiMfw&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/V8G4q3AiMfw/default.jpg", - "height": 90, - "width": 120, - "time": "00:02:45", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/V8G4q3AiMfw/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/V8G4q3AiMfw/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/V8G4q3AiMfw/1.jpg", - "height": 90, - "width": 120, - "time": "00:01:22.500", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/V8G4q3AiMfw/2.jpg", - "height": 90, - "width": 120, - "time": "00:02:45", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/V8G4q3AiMfw/3.jpg", - "height": 90, - "width": 120, - "time": "00:04:07.500", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Tejon Anthony Sophomore Football Highlight", - "type": "plain" - }, - "yt$aspectRatio": { - "$t": "widescreen" - }, - "yt$duration": { - "seconds": "330" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:18:04.000Z" - }, - "yt$videoid": { - "$t": "V8G4q3AiMfw" - } - }, - "gd$rating": { - "average": 5, - "max": 5, - "min": 1, - "numRaters": 2, - "rel": "http://schemas.google.com/g/2005#overall" - }, - "yt$statistics": { - "favoriteCount": "0", - "viewCount": "25" - }, - "yt$rating": { - "numDislikes": "0", - "numLikes": "2" - } - }, - { - "gd$etag": "W/\"CEMERH47eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:kJhXN-rHX2Q" - }, - "published": { - "$t": "2012-04-16T02:13:25.000Z" - }, - "updated": { - "$t": "2012-04-16T02:13:25.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "Entertainment", - "label": "Entertainment" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "R5" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Love" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Story" - } - ], - "title": { - "$t": "Love Me R5 Love Story Episode 10" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/kJhXN-rHX2Q?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=kJhXN-rHX2Q&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/kJhXN-rHX2Q/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/kJhXN-rHX2Q/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=kJhXN-rHX2Q" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/kJhXN-rHX2Q?v=2" - } - ], - "author": [ - { - "name": { - "$t": "BrookieBoo867" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/BrookieBoo867" - }, - "yt$userId": { - "$t": "ze3g9dgUy02MbcqwKkscaQ" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/kJhXN-rHX2Q/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "Entertainment", - "label": "Entertainment", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/kJhXN-rHX2Q?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 40, - "yt$format": 5 - }, - { - "url": "rtsp://v7.cache5.c.youtube.com/CiILENy73wIaGQlkX8fqN1eYkBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 40, - "yt$format": 1 - }, - { - "url": "rtsp://v7.cache5.c.youtube.com/CiILENy73wIaGQlkX8fqN1eYkBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 40, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "brookieboo867", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "BrookieBoo867" - } - ], - "media$description": { - "$t": "***With the Boys*** Andy: So you live right next door to Mads? Ross: *nods* Yepp. ???: *runs out of the house* RIKER! PLEASE DON'T KILL ME!!!! Riker: *runs out behind ???* ROCKY YOU'RE DEAD!!! Andy: You're brothers? *points to Riker and Rocky running down the road* Ross: *nods his head* Unfortunately. Ryland: *walks out of the house* Hey bro. Whos that? *points to Andy* Ross: This is Maddy's friend Andy from Tennessee. *turns to Andy* This is my little brother Ryland. Andy: Nice to meet you. Ryland: You too. Ross: So what'd Rocky do to Riker? Ryland: Long story short, Rocky was being stupid again. Ross: *nods his head* I shouldv'e known. Andy: Hey have you ever seen Mads try to play football? Ross: Nah. *smiles* I bet its funny. She doesn't seem like the athletic type Andy: *laughs* Oh. she's not. Ryland: We should ask her to come play football. Us, Riker, Rocky, and Rydel Ross: And Madison and Bree. Ryland: Who? Andy: Mads other friends. Ryland: *smiles* Are they hot? Ross: *starts laughing* As Maddy's boyfriend, Im not authorized to say yes or no. Andy: They're hot. *laughs* Ryland: YES! ***the guys get everyone at the park to play football*** Rydel: Ok Me and Ratliff are captains. Rocky: Not fair. *crosses his arms and starts pouting* Madison: Oh come on. Don't get your panties in a knot. Rocky: Grrr. Fiesty. I like that *winks at Madison* Madison: *laughs* I think you have a twitch. Riker: I like this girl! *high fives Madison* Rocky: Me too. *smiles at Madison* Bree ...", - "type": "plain" - }, - "media$keywords": { - "$t": "R5, Love, Story" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=kJhXN-rHX2Q&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/kJhXN-rHX2Q/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:20", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/kJhXN-rHX2Q/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/kJhXN-rHX2Q/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/kJhXN-rHX2Q/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:10", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/kJhXN-rHX2Q/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:20", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/kJhXN-rHX2Q/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:30", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Love Me R5 Love Story Episode 10", - "type": "plain" - }, - "yt$duration": { - "seconds": "40" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:13:25.000Z" - }, - "yt$videoid": { - "$t": "kJhXN-rHX2Q" - } - } - }, - { - "gd$etag": "W/\"CEMHR347eCp7I2A9WhVXFUk.\"", - "id": { - "$t": "tag:youtube.com,2008:video:hNdMghxKYeg" - }, - "published": { - "$t": "2012-04-16T02:13:56.000Z" - }, - "updated": { - "$t": "2012-04-16T02:13:56.000Z" - }, - "category": [ - { - "scheme": "http://schemas.google.com/g/2005#kind", - "term": "http://gdata.youtube.com/schemas/2007#video" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat", - "term": "People", - "label": "People & Blogs" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Rubén" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Aguirre" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Gremio" - }, - { - "scheme": "http://gdata.youtube.com/schemas/2007/keywords.cat", - "term": "Giovani" - } - ], - "title": { - "$t": "Rubén Aguirre - Un saludo a Grêmio Football Club e Giovani Chambón!" - }, - "content": { - "type": "application/x-shockwave-flash", - "src": "https://www.youtube.com/v/hNdMghxKYeg?version=3&f=videos&app=youtube_gdata" - }, - "link": [ - { - "rel": "alternate", - "type": "text/html", - "href": "https://www.youtube.com/watch?v=hNdMghxKYeg&feature=youtube_gdata" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.responses", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/hNdMghxKYeg/responses?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#video.related", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/hNdMghxKYeg/related?v=2" - }, - { - "rel": "http://gdata.youtube.com/schemas/2007#mobile", - "type": "text/html", - "href": "https://m.youtube.com/details?v=hNdMghxKYeg" - }, - { - "rel": "self", - "type": "application/atom+xml", - "href": "https://gdata.youtube.com/feeds/api/videos/hNdMghxKYeg?v=2" - } - ], - "author": [ - { - "name": { - "$t": "Bblackjoe" - }, - "uri": { - "$t": "https://gdata.youtube.com/feeds/api/users/Bblackjoe" - }, - "yt$userId": { - "$t": "ONOyAdsF99aRKEnzxtdaag" - } - } - ], - "yt$accessControl": [ - { - "action": "comment", - "permission": "allowed" - }, - { - "action": "commentVote", - "permission": "allowed" - }, - { - "action": "videoRespond", - "permission": "moderated" - }, - { - "action": "rate", - "permission": "allowed" - }, - { - "action": "embed", - "permission": "allowed" - }, - { - "action": "list", - "permission": "allowed" - }, - { - "action": "autoPlay", - "permission": "allowed" - }, - { - "action": "syndicate", - "permission": "allowed" - } - ], - "gd$comments": { - "gd$feedLink": { - "rel": "http://gdata.youtube.com/schemas/2007#comments", - "href": "https://gdata.youtube.com/feeds/api/videos/hNdMghxKYeg/comments?v=2", - "countHint": 0 - } - }, - "media$group": { - "media$category": [ - { - "$t": "People", - "label": "People & Blogs", - "scheme": "http://gdata.youtube.com/schemas/2007/categories.cat" - } - ], - "media$content": [ - { - "url": "https://www.youtube.com/v/hNdMghxKYeg?version=3&f=videos&app=youtube_gdata", - "type": "application/x-shockwave-flash", - "medium": "video", - "isDefault": "true", - "expression": "full", - "duration": 25, - "yt$format": 5 - }, - { - "url": "rtsp://v7.cache4.c.youtube.com/CiILENy73wIaGQnoYUocgkzXhBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 25, - "yt$format": 1 - }, - { - "url": "rtsp://v5.cache8.c.youtube.com/CiILENy73wIaGQnoYUocgkzXhBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp", - "type": "video/3gpp", - "medium": "video", - "expression": "full", - "duration": 25, - "yt$format": 6 - } - ], - "media$credit": [ - { - "$t": "bblackjoe", - "role": "uploader", - "scheme": "urn:youtube", - "yt$display": "Bblackjoe" - } - ], - "media$description": { - "$t": "Rubén Aguirre em sua twitcam se dirigindo a minha pessoa =)", - "type": "plain" - }, - "media$keywords": { - "$t": "Rubén, Aguirre, Gremio, Giovani" - }, - "media$license": { - "$t": "youtube", - "type": "text/html", - "href": "http://www.youtube.com/t/terms" - }, - "media$player": { - "url": "https://www.youtube.com/watch?v=hNdMghxKYeg&feature=youtube_gdata_player" - }, - "media$thumbnail": [ - { - "url": "http://i.ytimg.com/vi/hNdMghxKYeg/default.jpg", - "height": 90, - "width": 120, - "time": "00:00:12.500", - "yt$name": "default" - }, - { - "url": "http://i.ytimg.com/vi/hNdMghxKYeg/mqdefault.jpg", - "height": 180, - "width": 320, - "yt$name": "mqdefault" - }, - { - "url": "http://i.ytimg.com/vi/hNdMghxKYeg/hqdefault.jpg", - "height": 360, - "width": 480, - "yt$name": "hqdefault" - }, - { - "url": "http://i.ytimg.com/vi/hNdMghxKYeg/1.jpg", - "height": 90, - "width": 120, - "time": "00:00:06.250", - "yt$name": "start" - }, - { - "url": "http://i.ytimg.com/vi/hNdMghxKYeg/2.jpg", - "height": 90, - "width": 120, - "time": "00:00:12.500", - "yt$name": "middle" - }, - { - "url": "http://i.ytimg.com/vi/hNdMghxKYeg/3.jpg", - "height": 90, - "width": 120, - "time": "00:00:18.750", - "yt$name": "end" - } - ], - "media$title": { - "$t": "Rubén Aguirre - Un saludo a Grêmio Football Club e Giovani Chambón!", - "type": "plain" - }, - "yt$duration": { - "seconds": "25" - }, - "yt$uploaded": { - "$t": "2012-04-16T02:13:56.000Z" - }, - "yt$videoid": { - "$t": "hNdMghxKYeg" - } - } - } - ] - } -} diff --git a/test/util.test.js b/test/util.test.js index 6f5299b..8736027 100644 --- a/test/util.test.js +++ b/test/util.test.js @@ -407,5 +407,16 @@ describe('util', function () { ]), 'b (copy 3)') }) + it('should format a document size in a human readable way', function () { + assert.strictEqual(util.formatSize(500), '500 B'); + assert.strictEqual(util.formatSize(900), '0.9 KiB'); + assert.strictEqual(util.formatSize(77.89 * 1024), '77.9 KiB'); + assert.strictEqual(util.formatSize(950 * 1024), '0.9 MiB'); + assert.strictEqual(util.formatSize(7.22 * 1024 * 1024), '7.2 MiB'); + assert.strictEqual(util.formatSize(955.4 * 1024 * 1024), '0.9 GiB'); + assert.strictEqual(util.formatSize(22.37 * 1024 * 1024 * 1024), '22.4 GiB'); + assert.strictEqual(util.formatSize(1024 * 1024 * 1024 * 1024), '1.0 TiB'); + }); + // TODO: thoroughly test all util methods }); \ No newline at end of file