video_info 2.1.1 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +40 -14
- data/lib/video_info.rb +6 -1
- data/lib/video_info/providers/dailymotion.rb +85 -0
- data/lib/video_info/providers/youtube.rb +1 -1
- data/lib/video_info/providers/youtubeplaylist.rb +55 -0
- data/lib/video_info/version.rb +1 -1
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/_available_/with_This_video_does_not_exist_or_has_been_deleted_/available_/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/_available_/with_valid_video/available_/.yml +60 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/_available_/with_video_is_unavailable_video/available_/.yml +46 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/_available_/with_video_no_longer_available_due_to_a_copyright_claim_video/available_/.yml +46 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/date/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/description/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/duration/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/keywords/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/thumbnail_large/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/thumbnail_medium/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/thumbnail_small/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/title/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Dailymotion/with_video_x7lni3/view_count/.yml +63 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/description/.yml +305 -305
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/duration/.yml +1015 -1015
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/embed_code/.yml +305 -305
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/embed_url/.yml +305 -305
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/height/.yml +1015 -1015
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/keywords/.yml +1015 -1015
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/view_count/.yml +1015 -1015
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_Vkontakte/with_video_video39576223_108370515/width/.yml +1015 -1015
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/_available_/with_invalid_playlist/available_/.yml +46 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/_available_/with_valid_playlist/available_/.yml +56 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/.yml +98 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/date/.yml +98 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/description/.yml +98 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/duration/.yml +98 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/keywords/.yml +98 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/thumbnail_large/.yml +96 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/thumbnail_medium/.yml +96 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/thumbnail_small/.yml +98 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/title/.yml +98 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/videos/.yml +96 -0
- data/spec/fixtures/vcr_cassettes/VideoInfo_Providers_YoutubePlaylist/with_playlist_PL9hW1uS6HUftLdHI6RIsaf/view_count/.yml +98 -0
- data/spec/lib/video_info/providers/dailymotion_spec.rb +78 -0
- data/spec/lib/video_info/providers/youtube_playlist_spec.rb +66 -0
- data/spec/lib/video_info/providers/youtube_spec.rb +5 -0
- data/spec/lib/video_info_spec.rb +20 -0
- data/video_info.gemspec +4 -4
- metadata +64 -6
@@ -0,0 +1,46 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: head
|
5
|
+
uri: http://gdata.youtube.com/feeds/api/playlists/PLA575C81A1FBC04CF_invalid?alt=json&v=2
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- Ruby
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 404
|
17
|
+
message: Not Found
|
18
|
+
headers:
|
19
|
+
X-Gdata-User-Country:
|
20
|
+
- GB
|
21
|
+
Content-Type:
|
22
|
+
- application/vnd.google.gdata.error+xml
|
23
|
+
Content-Length:
|
24
|
+
- '184'
|
25
|
+
Date:
|
26
|
+
- Fri, 21 Feb 2014 12:12:19 GMT
|
27
|
+
Expires:
|
28
|
+
- Fri, 21 Feb 2014 12:12:19 GMT
|
29
|
+
Cache-Control:
|
30
|
+
- private, max-age=0
|
31
|
+
X-Content-Type-Options:
|
32
|
+
- nosniff
|
33
|
+
X-Frame-Options:
|
34
|
+
- SAMEORIGIN
|
35
|
+
X-Xss-Protection:
|
36
|
+
- 1; mode=block
|
37
|
+
Server:
|
38
|
+
- GSE
|
39
|
+
Alternate-Protocol:
|
40
|
+
- 80:quic
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: ''
|
44
|
+
http_version:
|
45
|
+
recorded_at: Fri, 21 Feb 2014 12:12:18 GMT
|
46
|
+
recorded_with: VCR 2.8.0
|
@@ -0,0 +1,56 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: head
|
5
|
+
uri: http://gdata.youtube.com/feeds/api/playlists/PLA575C81A1FBC04CF?alt=json&v=2
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- Ruby
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
X-Gdata-User-Country:
|
20
|
+
- GB
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=UTF-8
|
23
|
+
Access-Control-Allow-Origin:
|
24
|
+
- "*"
|
25
|
+
Expires:
|
26
|
+
- Fri, 21 Feb 2014 12:17:18 GMT
|
27
|
+
Date:
|
28
|
+
- Fri, 21 Feb 2014 12:12:18 GMT
|
29
|
+
Cache-Control:
|
30
|
+
- public, max-age=300, no-transform
|
31
|
+
Vary:
|
32
|
+
- Accept, X-GData-Authorization, GData-Version
|
33
|
+
Gdata-Version:
|
34
|
+
- '2.1'
|
35
|
+
Etag:
|
36
|
+
- W/"DE8ARH47eCp7I2A9WxBVE0o."
|
37
|
+
Last-Modified:
|
38
|
+
- Wed, 17 Feb 2010 03:20:45 GMT
|
39
|
+
Content-Length:
|
40
|
+
- '52996'
|
41
|
+
X-Content-Type-Options:
|
42
|
+
- nosniff
|
43
|
+
X-Frame-Options:
|
44
|
+
- SAMEORIGIN
|
45
|
+
X-Xss-Protection:
|
46
|
+
- 1; mode=block
|
47
|
+
Server:
|
48
|
+
- GSE
|
49
|
+
Alternate-Protocol:
|
50
|
+
- 80:quic
|
51
|
+
body:
|
52
|
+
encoding: UTF-8
|
53
|
+
string: ''
|
54
|
+
http_version:
|
55
|
+
recorded_at: Fri, 21 Feb 2014 12:12:17 GMT
|
56
|
+
recorded_with: VCR 2.8.0
|
@@ -0,0 +1,98 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&v=2
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- VideoInfo/2.1.1
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
X-Gdata-User-Country:
|
22
|
+
- GB
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=UTF-8
|
25
|
+
Access-Control-Allow-Origin:
|
26
|
+
- "*"
|
27
|
+
Expires:
|
28
|
+
- Fri, 21 Feb 2014 13:24:01 GMT
|
29
|
+
Date:
|
30
|
+
- Fri, 21 Feb 2014 13:19:01 GMT
|
31
|
+
Cache-Control:
|
32
|
+
- public, max-age=300, no-transform
|
33
|
+
Vary:
|
34
|
+
- Accept, X-GData-Authorization, GData-Version
|
35
|
+
Gdata-Version:
|
36
|
+
- '2.1'
|
37
|
+
Etag:
|
38
|
+
- W/"D0cDSX47eCp7I2A9Wh9SGUg."
|
39
|
+
Last-Modified:
|
40
|
+
- Sun, 09 Feb 2014 14:11:18 GMT
|
41
|
+
Transfer-Encoding:
|
42
|
+
- chunked
|
43
|
+
X-Content-Type-Options:
|
44
|
+
- nosniff
|
45
|
+
X-Frame-Options:
|
46
|
+
- SAMEORIGIN
|
47
|
+
X-Xss-Protection:
|
48
|
+
- 1; mode=block
|
49
|
+
Server:
|
50
|
+
- GSE
|
51
|
+
Alternate-Protocol:
|
52
|
+
- 80:quic
|
53
|
+
body:
|
54
|
+
encoding: UTF-8
|
55
|
+
string: "{\"version\":\"1.0\",\"encoding\":\"UTF-8\",\"feed\":{\"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$yt\":\"http://gdata.youtube.com/schemas/2007\",\"gd$etag\":\"W/\\\"D0cDSX47eCp7I2A9Wh9SGUg.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"updated\":{\"$t\":\"2014-02-09T14:11:18.000Z\"},\"category\":[{\"scheme\":\"http://schemas.google.com/g/2005#kind\",\"term\":\"http://gdata.youtube.com/schemas/2007#playlist\"}],\"title\":{\"$t\":\"YouTube
|
56
|
+
Policy and Copyright\"},\"subtitle\":{\"$t\":\"Learn more about copyright
|
57
|
+
basics, flagging, and the YouTube community.\"},\"logo\":{\"$t\":\"http://www.gstatic.com/youtube/img/logo.png\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/playlist?list=PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},{\"rel\":\"http://schemas.google.com/g/2005#feed\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?v=2\"},{\"rel\":\"http://schemas.google.com/g/2005#batch\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/batch?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&start-index=1&max-results=25&v=2\"},{\"rel\":\"service\",\"type\":\"application/atomsvc+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=atom-service&v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
58
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"generator\":{\"$t\":\"YouTube
|
59
|
+
data API\",\"version\":\"2.1\",\"uri\":\"http://gdata.youtube.com\"},\"openSearch$totalResults\":{\"$t\":5},\"openSearch$startIndex\":{\"$t\":1},\"openSearch$itemsPerPage\":{\"$t\":25},\"media$group\":{\"media$content\":[{\"url\":\"http://www.youtube.com/p/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\",\"type\":\"application/x-shockwave-flash\",\"yt$format\":5}],\"media$description\":{\"$t\":\"Learn
|
60
|
+
more about copyright basics, flagging, and the YouTube community.\",\"type\":\"plain\"},\"media$thumbnail\":[{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"yt$name\":\"default\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"}],\"media$title\":{\"$t\":\"YouTube
|
61
|
+
Policy and Copyright\",\"type\":\"plain\"}},\"yt$playlistId\":{\"$t\":\"PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"entry\":[{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY\"},\"published\":{\"$t\":\"2013-09-13T16:49:50.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
62
|
+
& Style\"}],\"title\":{\"$t\":\"Buying YouTube views through third-party services\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=_Bt3-WsHfB0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
63
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
64
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":62,\"yt$format\":5},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":1},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
65
|
+
Help\"}],\"media$description\":{\"$t\":\"Viewcounts serve as a way to recognize
|
66
|
+
and surface great content. Since views are so important, it's no surprise
|
67
|
+
that an ecosystem of businesses has evolved around artificially helping creators
|
68
|
+
get and create YouTube views, likes, and subscribers.\\n\\nHowever, paying
|
69
|
+
for views obtained through some of these companies could be a violation of
|
70
|
+
our terms, which exist, in part, to make sure the views on any YouTube video
|
71
|
+
come from real, genuine people.\\n\\nPlease visit our Help Center article
|
72
|
+
for more info!\\n\\nhttps://support.google.com/youtube/answer/3399767\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:15.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:46.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Buying
|
73
|
+
YouTube views through third-party services\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"62\"},\"yt$uploaded\":{\"$t\":\"2013-09-13T16:48:55.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"_Bt3-WsHfB0\"}},\"yt$position\":{\"$t\":1}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"YouTube
|
74
|
+
Content ID\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=9g2U12SsRns\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
75
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"action\":\"rate\",\"permission\":\"denied\"},{\"action\":\"embed\",\"permission\":\"allowed\"},{\"action\":\"list\",\"permission\":\"allowed\"},{\"action\":\"autoPlay\",\"permission\":\"allowed\"},{\"action\":\"syndicate\",\"permission\":\"allowed\"}],\"media$group\":{\"media$category\":[{\"$t\":\"Education\",\"label\":\"Education\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":132,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
76
|
+
Help\"}],\"media$description\":{\"$t\":\"Learn more about YouTube's Content
|
77
|
+
ID system.\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:33\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:39\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
78
|
+
Content ID\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"132\"},\"yt$uploaded\":{\"$t\":\"2010-09-28T18:21:56.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"9g2U12SsRns\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"599549\"},\"yt$position\":{\"$t\":2}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"Determining
|
79
|
+
What Happened to Your Video\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=8b0aEoxqqC0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
80
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":191,\"yt$format\":5},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":1},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
81
|
+
Help\"}],\"media$description\":{\"$t\":\"This video will show you how to determine
|
82
|
+
what happened to your video if it was removed from YouTube.\\n\\nTo learn
|
83
|
+
more about copyright on YouTube, please visit our Copyright Center at http://www.youtube.com/yt/copyright/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"cc\",\"type\":\"text/html\",\"href\":\"http://creativecommons.org/licenses/by/3.0/\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47.750\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:23.250\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Determining
|
84
|
+
What Happened to Your Video\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"191\"},\"yt$uploaded\":{\"$t\":\"2013-04-11T23:44:36.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"8b0aEoxqqC0\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"19161\"},\"yt$position\":{\"$t\":3}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Entertainment\",\"label\":\"Entertainment\"}],\"title\":{\"$t\":\"Reporting
|
85
|
+
and Policy Enforcement on YouTube\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=6c3mHikRz0I\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
86
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"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\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/comments?v=2\",\"countHint\":126}},\"yt$hd\":{},\"media$group\":{\"media$category\":[{\"$t\":\"Entertainment\",\"label\":\"Entertainment\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":94,\"yt$format\":5},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":1},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
87
|
+
Help\"}],\"media$description\":{\"$t\":\"This video explains the basics of
|
88
|
+
reporting on YouTube. \\n\\nTo learn more about reporting, policies and safety
|
89
|
+
please visit our Policy and Safety hub, http://www.youtube.com/yt/policyandsafety/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:23.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:10.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Reporting
|
90
|
+
and Policy Enforcement on YouTube\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"94\"},\"yt$uploaded\":{\"$t\":\"2013-04-04T23:31:32.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"6c3mHikRz0I\"}},\"gd$rating\":{\"average\":3.3589745,\"max\":5,\"min\":1,\"numRaters\":507,\"rel\":\"http://schemas.google.com/g/2005#overall\"},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"183084\"},\"yt$rating\":{\"numDislikes\":\"208\",\"numLikes\":\"299\"},\"yt$position\":{\"$t\":4}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4\"},\"published\":{\"$t\":\"2013-12-17T23:45:41.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
91
|
+
& Style\"}],\"title\":{\"$t\":\"YouTube Copyright Basics (Global)\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=OQVHWsTHcoc\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
92
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
93
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":342,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
94
|
+
Help\"}],\"media$description\":{\"$t\":\"\",\"type\":\"plain\"},\"media$keywords\":{\"$t\":\"yt:cc=on\"},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:25.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:04:16.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
95
|
+
Copyright Basics (Global)\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"342\"},\"yt$uploaded\":{\"$t\":\"2013-12-02T23:22:20.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"OQVHWsTHcoc\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"211035\"},\"yt$position\":{\"$t\":5}}]}}"
|
96
|
+
http_version:
|
97
|
+
recorded_at: Fri, 21 Feb 2014 13:19:00 GMT
|
98
|
+
recorded_with: VCR 2.8.0
|
@@ -0,0 +1,98 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&v=2
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- VideoInfo/2.1.1
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
X-Gdata-User-Country:
|
22
|
+
- GB
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=UTF-8
|
25
|
+
Access-Control-Allow-Origin:
|
26
|
+
- "*"
|
27
|
+
Expires:
|
28
|
+
- Fri, 21 Feb 2014 13:35:36 GMT
|
29
|
+
Date:
|
30
|
+
- Fri, 21 Feb 2014 13:30:36 GMT
|
31
|
+
Cache-Control:
|
32
|
+
- public, max-age=300, no-transform
|
33
|
+
Vary:
|
34
|
+
- Accept, X-GData-Authorization, GData-Version
|
35
|
+
Gdata-Version:
|
36
|
+
- '2.1'
|
37
|
+
Etag:
|
38
|
+
- W/"D0cDSX47eCp7I2A9Wh9SGUg."
|
39
|
+
Last-Modified:
|
40
|
+
- Sun, 09 Feb 2014 14:11:18 GMT
|
41
|
+
Transfer-Encoding:
|
42
|
+
- chunked
|
43
|
+
X-Content-Type-Options:
|
44
|
+
- nosniff
|
45
|
+
X-Frame-Options:
|
46
|
+
- SAMEORIGIN
|
47
|
+
X-Xss-Protection:
|
48
|
+
- 1; mode=block
|
49
|
+
Server:
|
50
|
+
- GSE
|
51
|
+
Alternate-Protocol:
|
52
|
+
- 80:quic
|
53
|
+
body:
|
54
|
+
encoding: UTF-8
|
55
|
+
string: "{\"version\":\"1.0\",\"encoding\":\"UTF-8\",\"feed\":{\"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$yt\":\"http://gdata.youtube.com/schemas/2007\",\"gd$etag\":\"W/\\\"D0cDSX47eCp7I2A9Wh9SGUg.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"updated\":{\"$t\":\"2014-02-09T14:11:18.000Z\"},\"category\":[{\"scheme\":\"http://schemas.google.com/g/2005#kind\",\"term\":\"http://gdata.youtube.com/schemas/2007#playlist\"}],\"title\":{\"$t\":\"YouTube
|
56
|
+
Policy and Copyright\"},\"subtitle\":{\"$t\":\"Learn more about copyright
|
57
|
+
basics, flagging, and the YouTube community.\"},\"logo\":{\"$t\":\"http://www.gstatic.com/youtube/img/logo.png\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/playlist?list=PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},{\"rel\":\"http://schemas.google.com/g/2005#feed\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?v=2\"},{\"rel\":\"http://schemas.google.com/g/2005#batch\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/batch?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&start-index=1&max-results=25&v=2\"},{\"rel\":\"service\",\"type\":\"application/atomsvc+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=atom-service&v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
58
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"generator\":{\"$t\":\"YouTube
|
59
|
+
data API\",\"version\":\"2.1\",\"uri\":\"http://gdata.youtube.com\"},\"openSearch$totalResults\":{\"$t\":5},\"openSearch$startIndex\":{\"$t\":1},\"openSearch$itemsPerPage\":{\"$t\":25},\"media$group\":{\"media$content\":[{\"url\":\"http://www.youtube.com/p/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\",\"type\":\"application/x-shockwave-flash\",\"yt$format\":5}],\"media$description\":{\"$t\":\"Learn
|
60
|
+
more about copyright basics, flagging, and the YouTube community.\",\"type\":\"plain\"},\"media$thumbnail\":[{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"yt$name\":\"default\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"}],\"media$title\":{\"$t\":\"YouTube
|
61
|
+
Policy and Copyright\",\"type\":\"plain\"}},\"yt$playlistId\":{\"$t\":\"PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"entry\":[{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY\"},\"published\":{\"$t\":\"2013-09-13T16:49:50.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
62
|
+
& Style\"}],\"title\":{\"$t\":\"Buying YouTube views through third-party services\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=_Bt3-WsHfB0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
63
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
64
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":62,\"yt$format\":5},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":1},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
65
|
+
Help\"}],\"media$description\":{\"$t\":\"Viewcounts serve as a way to recognize
|
66
|
+
and surface great content. Since views are so important, it's no surprise
|
67
|
+
that an ecosystem of businesses has evolved around artificially helping creators
|
68
|
+
get and create YouTube views, likes, and subscribers.\\n\\nHowever, paying
|
69
|
+
for views obtained through some of these companies could be a violation of
|
70
|
+
our terms, which exist, in part, to make sure the views on any YouTube video
|
71
|
+
come from real, genuine people.\\n\\nPlease visit our Help Center article
|
72
|
+
for more info!\\n\\nhttps://support.google.com/youtube/answer/3399767\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:15.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:46.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Buying
|
73
|
+
YouTube views through third-party services\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"62\"},\"yt$uploaded\":{\"$t\":\"2013-09-13T16:48:55.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"_Bt3-WsHfB0\"}},\"yt$position\":{\"$t\":1}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"YouTube
|
74
|
+
Content ID\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=9g2U12SsRns\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
75
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"action\":\"rate\",\"permission\":\"denied\"},{\"action\":\"embed\",\"permission\":\"allowed\"},{\"action\":\"list\",\"permission\":\"allowed\"},{\"action\":\"autoPlay\",\"permission\":\"allowed\"},{\"action\":\"syndicate\",\"permission\":\"allowed\"}],\"media$group\":{\"media$category\":[{\"$t\":\"Education\",\"label\":\"Education\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":132,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
76
|
+
Help\"}],\"media$description\":{\"$t\":\"Learn more about YouTube's Content
|
77
|
+
ID system.\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:33\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:39\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
78
|
+
Content ID\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"132\"},\"yt$uploaded\":{\"$t\":\"2010-09-28T18:21:56.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"9g2U12SsRns\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"599551\"},\"yt$position\":{\"$t\":2}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"Determining
|
79
|
+
What Happened to Your Video\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=8b0aEoxqqC0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
80
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":191,\"yt$format\":5},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":1},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
81
|
+
Help\"}],\"media$description\":{\"$t\":\"This video will show you how to determine
|
82
|
+
what happened to your video if it was removed from YouTube.\\n\\nTo learn
|
83
|
+
more about copyright on YouTube, please visit our Copyright Center at http://www.youtube.com/yt/copyright/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"cc\",\"type\":\"text/html\",\"href\":\"http://creativecommons.org/licenses/by/3.0/\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47.750\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:23.250\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Determining
|
84
|
+
What Happened to Your Video\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"191\"},\"yt$uploaded\":{\"$t\":\"2013-04-11T23:44:36.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"8b0aEoxqqC0\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"19161\"},\"yt$position\":{\"$t\":3}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Entertainment\",\"label\":\"Entertainment\"}],\"title\":{\"$t\":\"Reporting
|
85
|
+
and Policy Enforcement on YouTube\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=6c3mHikRz0I\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
86
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"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\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/comments?v=2\",\"countHint\":126}},\"yt$hd\":{},\"media$group\":{\"media$category\":[{\"$t\":\"Entertainment\",\"label\":\"Entertainment\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":94,\"yt$format\":5},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":1},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
87
|
+
Help\"}],\"media$description\":{\"$t\":\"This video explains the basics of
|
88
|
+
reporting on YouTube. \\n\\nTo learn more about reporting, policies and safety
|
89
|
+
please visit our Policy and Safety hub, http://www.youtube.com/yt/policyandsafety/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:23.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:10.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Reporting
|
90
|
+
and Policy Enforcement on YouTube\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"94\"},\"yt$uploaded\":{\"$t\":\"2013-04-04T23:31:32.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"6c3mHikRz0I\"}},\"gd$rating\":{\"average\":3.3589745,\"max\":5,\"min\":1,\"numRaters\":507,\"rel\":\"http://schemas.google.com/g/2005#overall\"},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"183084\"},\"yt$rating\":{\"numDislikes\":\"208\",\"numLikes\":\"299\"},\"yt$position\":{\"$t\":4}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4\"},\"published\":{\"$t\":\"2013-12-17T23:45:41.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
91
|
+
& Style\"}],\"title\":{\"$t\":\"YouTube Copyright Basics (Global)\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=OQVHWsTHcoc\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
92
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
93
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":342,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
94
|
+
Help\"}],\"media$description\":{\"$t\":\"\",\"type\":\"plain\"},\"media$keywords\":{\"$t\":\"yt:cc=on\"},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:25.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:04:16.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
95
|
+
Copyright Basics (Global)\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"342\"},\"yt$uploaded\":{\"$t\":\"2013-12-02T23:22:20.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"OQVHWsTHcoc\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"211038\"},\"yt$position\":{\"$t\":5}}]}}"
|
96
|
+
http_version:
|
97
|
+
recorded_at: Fri, 21 Feb 2014 13:30:38 GMT
|
98
|
+
recorded_with: VCR 2.8.0
|
@@ -0,0 +1,98 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&v=2
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- VideoInfo/2.1.1
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
X-Gdata-User-Country:
|
22
|
+
- GB
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=UTF-8
|
25
|
+
Access-Control-Allow-Origin:
|
26
|
+
- "*"
|
27
|
+
Expires:
|
28
|
+
- Fri, 21 Feb 2014 13:35:30 GMT
|
29
|
+
Date:
|
30
|
+
- Fri, 21 Feb 2014 13:30:30 GMT
|
31
|
+
Cache-Control:
|
32
|
+
- public, max-age=300, no-transform
|
33
|
+
Vary:
|
34
|
+
- Accept, X-GData-Authorization, GData-Version
|
35
|
+
Gdata-Version:
|
36
|
+
- '2.1'
|
37
|
+
Etag:
|
38
|
+
- W/"D0cDSX47eCp7I2A9Wh9SGUg."
|
39
|
+
Last-Modified:
|
40
|
+
- Sun, 09 Feb 2014 14:11:18 GMT
|
41
|
+
Transfer-Encoding:
|
42
|
+
- chunked
|
43
|
+
X-Content-Type-Options:
|
44
|
+
- nosniff
|
45
|
+
X-Frame-Options:
|
46
|
+
- SAMEORIGIN
|
47
|
+
X-Xss-Protection:
|
48
|
+
- 1; mode=block
|
49
|
+
Server:
|
50
|
+
- GSE
|
51
|
+
Alternate-Protocol:
|
52
|
+
- 80:quic
|
53
|
+
body:
|
54
|
+
encoding: UTF-8
|
55
|
+
string: "{\"version\":\"1.0\",\"encoding\":\"UTF-8\",\"feed\":{\"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$yt\":\"http://gdata.youtube.com/schemas/2007\",\"gd$etag\":\"W/\\\"D0cDSX47eCp7I2A9Wh9SGUg.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"updated\":{\"$t\":\"2014-02-09T14:11:18.000Z\"},\"category\":[{\"scheme\":\"http://schemas.google.com/g/2005#kind\",\"term\":\"http://gdata.youtube.com/schemas/2007#playlist\"}],\"title\":{\"$t\":\"YouTube
|
56
|
+
Policy and Copyright\"},\"subtitle\":{\"$t\":\"Learn more about copyright
|
57
|
+
basics, flagging, and the YouTube community.\"},\"logo\":{\"$t\":\"http://www.gstatic.com/youtube/img/logo.png\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/playlist?list=PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},{\"rel\":\"http://schemas.google.com/g/2005#feed\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?v=2\"},{\"rel\":\"http://schemas.google.com/g/2005#batch\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/batch?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&start-index=1&max-results=25&v=2\"},{\"rel\":\"service\",\"type\":\"application/atomsvc+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=atom-service&v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
58
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"generator\":{\"$t\":\"YouTube
|
59
|
+
data API\",\"version\":\"2.1\",\"uri\":\"http://gdata.youtube.com\"},\"openSearch$totalResults\":{\"$t\":5},\"openSearch$startIndex\":{\"$t\":1},\"openSearch$itemsPerPage\":{\"$t\":25},\"media$group\":{\"media$content\":[{\"url\":\"http://www.youtube.com/p/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\",\"type\":\"application/x-shockwave-flash\",\"yt$format\":5}],\"media$description\":{\"$t\":\"Learn
|
60
|
+
more about copyright basics, flagging, and the YouTube community.\",\"type\":\"plain\"},\"media$thumbnail\":[{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"yt$name\":\"default\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"}],\"media$title\":{\"$t\":\"YouTube
|
61
|
+
Policy and Copyright\",\"type\":\"plain\"}},\"yt$playlistId\":{\"$t\":\"PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"entry\":[{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY\"},\"published\":{\"$t\":\"2013-09-13T16:49:50.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
62
|
+
& Style\"}],\"title\":{\"$t\":\"Buying YouTube views through third-party services\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=_Bt3-WsHfB0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
63
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
64
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":62,\"yt$format\":5},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":1},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
65
|
+
Help\"}],\"media$description\":{\"$t\":\"Viewcounts serve as a way to recognize
|
66
|
+
and surface great content. Since views are so important, it's no surprise
|
67
|
+
that an ecosystem of businesses has evolved around artificially helping creators
|
68
|
+
get and create YouTube views, likes, and subscribers.\\n\\nHowever, paying
|
69
|
+
for views obtained through some of these companies could be a violation of
|
70
|
+
our terms, which exist, in part, to make sure the views on any YouTube video
|
71
|
+
come from real, genuine people.\\n\\nPlease visit our Help Center article
|
72
|
+
for more info!\\n\\nhttps://support.google.com/youtube/answer/3399767\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:15.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:46.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Buying
|
73
|
+
YouTube views through third-party services\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"62\"},\"yt$uploaded\":{\"$t\":\"2013-09-13T16:48:55.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"_Bt3-WsHfB0\"}},\"yt$position\":{\"$t\":1}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"YouTube
|
74
|
+
Content ID\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=9g2U12SsRns\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
75
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"action\":\"rate\",\"permission\":\"denied\"},{\"action\":\"embed\",\"permission\":\"allowed\"},{\"action\":\"list\",\"permission\":\"allowed\"},{\"action\":\"autoPlay\",\"permission\":\"allowed\"},{\"action\":\"syndicate\",\"permission\":\"allowed\"}],\"media$group\":{\"media$category\":[{\"$t\":\"Education\",\"label\":\"Education\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":132,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
76
|
+
Help\"}],\"media$description\":{\"$t\":\"Learn more about YouTube's Content
|
77
|
+
ID system.\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:33\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:39\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
78
|
+
Content ID\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"132\"},\"yt$uploaded\":{\"$t\":\"2010-09-28T18:21:56.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"9g2U12SsRns\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"599551\"},\"yt$position\":{\"$t\":2}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"Determining
|
79
|
+
What Happened to Your Video\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=8b0aEoxqqC0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
80
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":191,\"yt$format\":5},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":1},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
81
|
+
Help\"}],\"media$description\":{\"$t\":\"This video will show you how to determine
|
82
|
+
what happened to your video if it was removed from YouTube.\\n\\nTo learn
|
83
|
+
more about copyright on YouTube, please visit our Copyright Center at http://www.youtube.com/yt/copyright/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"cc\",\"type\":\"text/html\",\"href\":\"http://creativecommons.org/licenses/by/3.0/\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47.750\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:23.250\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Determining
|
84
|
+
What Happened to Your Video\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"191\"},\"yt$uploaded\":{\"$t\":\"2013-04-11T23:44:36.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"8b0aEoxqqC0\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"19161\"},\"yt$position\":{\"$t\":3}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Entertainment\",\"label\":\"Entertainment\"}],\"title\":{\"$t\":\"Reporting
|
85
|
+
and Policy Enforcement on YouTube\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=6c3mHikRz0I\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
86
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"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\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/comments?v=2\",\"countHint\":126}},\"yt$hd\":{},\"media$group\":{\"media$category\":[{\"$t\":\"Entertainment\",\"label\":\"Entertainment\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":94,\"yt$format\":5},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":1},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
87
|
+
Help\"}],\"media$description\":{\"$t\":\"This video explains the basics of
|
88
|
+
reporting on YouTube. \\n\\nTo learn more about reporting, policies and safety
|
89
|
+
please visit our Policy and Safety hub, http://www.youtube.com/yt/policyandsafety/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:23.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:10.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Reporting
|
90
|
+
and Policy Enforcement on YouTube\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"94\"},\"yt$uploaded\":{\"$t\":\"2013-04-04T23:31:32.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"6c3mHikRz0I\"}},\"gd$rating\":{\"average\":3.3589745,\"max\":5,\"min\":1,\"numRaters\":507,\"rel\":\"http://schemas.google.com/g/2005#overall\"},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"183084\"},\"yt$rating\":{\"numDislikes\":\"208\",\"numLikes\":\"299\"},\"yt$position\":{\"$t\":4}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4\"},\"published\":{\"$t\":\"2013-12-17T23:45:41.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
91
|
+
& Style\"}],\"title\":{\"$t\":\"YouTube Copyright Basics (Global)\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=OQVHWsTHcoc\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
92
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
93
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":342,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
94
|
+
Help\"}],\"media$description\":{\"$t\":\"\",\"type\":\"plain\"},\"media$keywords\":{\"$t\":\"yt:cc=on\"},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:25.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:04:16.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
95
|
+
Copyright Basics (Global)\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"342\"},\"yt$uploaded\":{\"$t\":\"2013-12-02T23:22:20.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"OQVHWsTHcoc\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"211038\"},\"yt$position\":{\"$t\":5}}]}}"
|
96
|
+
http_version:
|
97
|
+
recorded_at: Fri, 21 Feb 2014 13:30:30 GMT
|
98
|
+
recorded_with: VCR 2.8.0
|
@@ -0,0 +1,98 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&v=2
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- VideoInfo/2.1.1
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
X-Gdata-User-Country:
|
22
|
+
- GB
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=UTF-8
|
25
|
+
Access-Control-Allow-Origin:
|
26
|
+
- "*"
|
27
|
+
Expires:
|
28
|
+
- Fri, 21 Feb 2014 13:35:34 GMT
|
29
|
+
Date:
|
30
|
+
- Fri, 21 Feb 2014 13:30:34 GMT
|
31
|
+
Cache-Control:
|
32
|
+
- public, max-age=300, no-transform
|
33
|
+
Vary:
|
34
|
+
- Accept, X-GData-Authorization, GData-Version
|
35
|
+
Gdata-Version:
|
36
|
+
- '2.1'
|
37
|
+
Etag:
|
38
|
+
- W/"D0cDSX47eCp7I2A9Wh9SGUg."
|
39
|
+
Last-Modified:
|
40
|
+
- Sun, 09 Feb 2014 14:11:18 GMT
|
41
|
+
Transfer-Encoding:
|
42
|
+
- chunked
|
43
|
+
X-Content-Type-Options:
|
44
|
+
- nosniff
|
45
|
+
X-Frame-Options:
|
46
|
+
- SAMEORIGIN
|
47
|
+
X-Xss-Protection:
|
48
|
+
- 1; mode=block
|
49
|
+
Server:
|
50
|
+
- GSE
|
51
|
+
Alternate-Protocol:
|
52
|
+
- 80:quic
|
53
|
+
body:
|
54
|
+
encoding: UTF-8
|
55
|
+
string: "{\"version\":\"1.0\",\"encoding\":\"UTF-8\",\"feed\":{\"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$yt\":\"http://gdata.youtube.com/schemas/2007\",\"gd$etag\":\"W/\\\"D0cDSX47eCp7I2A9Wh9SGUg.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"updated\":{\"$t\":\"2014-02-09T14:11:18.000Z\"},\"category\":[{\"scheme\":\"http://schemas.google.com/g/2005#kind\",\"term\":\"http://gdata.youtube.com/schemas/2007#playlist\"}],\"title\":{\"$t\":\"YouTube
|
56
|
+
Policy and Copyright\"},\"subtitle\":{\"$t\":\"Learn more about copyright
|
57
|
+
basics, flagging, and the YouTube community.\"},\"logo\":{\"$t\":\"http://www.gstatic.com/youtube/img/logo.png\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/playlist?list=PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},{\"rel\":\"http://schemas.google.com/g/2005#feed\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?v=2\"},{\"rel\":\"http://schemas.google.com/g/2005#batch\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/batch?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=json&start-index=1&max-results=25&v=2\"},{\"rel\":\"service\",\"type\":\"application/atomsvc+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr?alt=atom-service&v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
58
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"generator\":{\"$t\":\"YouTube
|
59
|
+
data API\",\"version\":\"2.1\",\"uri\":\"http://gdata.youtube.com\"},\"openSearch$totalResults\":{\"$t\":5},\"openSearch$startIndex\":{\"$t\":1},\"openSearch$itemsPerPage\":{\"$t\":25},\"media$group\":{\"media$content\":[{\"url\":\"http://www.youtube.com/p/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\",\"type\":\"application/x-shockwave-flash\",\"yt$format\":5}],\"media$description\":{\"$t\":\"Learn
|
60
|
+
more about copyright basics, flagging, and the YouTube community.\",\"type\":\"plain\"},\"media$thumbnail\":[{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"yt$name\":\"default\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"}],\"media$title\":{\"$t\":\"YouTube
|
61
|
+
Policy and Copyright\",\"type\":\"plain\"}},\"yt$playlistId\":{\"$t\":\"PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr\"},\"entry\":[{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY\"},\"published\":{\"$t\":\"2013-09-13T16:49:50.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
62
|
+
& Style\"}],\"title\":{\"$t\":\"Buying YouTube views through third-party services\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=_Bt3-WsHfB0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/_Bt3-WsHfB0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxvzeL5__87gFCq75gAaFE6gY?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
63
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
64
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/_Bt3-WsHfB0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":62,\"yt$format\":5},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":1},{\"url\":\"rtsp://r6---sn-cg07lues.c.youtube.com/CiULENy73wIaHAkdfAdr-Xcb_BMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":62,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
65
|
+
Help\"}],\"media$description\":{\"$t\":\"Viewcounts serve as a way to recognize
|
66
|
+
and surface great content. Since views are so important, it's no surprise
|
67
|
+
that an ecosystem of businesses has evolved around artificially helping creators
|
68
|
+
get and create YouTube views, likes, and subscribers.\\n\\nHowever, paying
|
69
|
+
for views obtained through some of these companies could be a violation of
|
70
|
+
our terms, which exist, in part, to make sure the views on any YouTube video
|
71
|
+
come from real, genuine people.\\n\\nPlease visit our Help Center article
|
72
|
+
for more info!\\n\\nhttps://support.google.com/youtube/answer/3399767\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=_Bt3-WsHfB0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:15.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:31\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/_Bt3-WsHfB0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:46.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Buying
|
73
|
+
YouTube views through third-party services\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"62\"},\"yt$uploaded\":{\"$t\":\"2013-09-13T16:48:55.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"_Bt3-WsHfB0\"}},\"yt$position\":{\"$t\":1}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"YouTube
|
74
|
+
Content ID\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=9g2U12SsRns\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/9g2U12SsRns?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5JvZLgV8BItvSbpyhS9_p8?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
75
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"action\":\"rate\",\"permission\":\"denied\"},{\"action\":\"embed\",\"permission\":\"allowed\"},{\"action\":\"list\",\"permission\":\"allowed\"},{\"action\":\"autoPlay\",\"permission\":\"allowed\"},{\"action\":\"syndicate\",\"permission\":\"allowed\"}],\"media$group\":{\"media$category\":[{\"$t\":\"Education\",\"label\":\"Education\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/9g2U12SsRns?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":132,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07lues.c.youtube.com/CiULENy73wIaHAl7Rqxk15QN9hMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":132,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
76
|
+
Help\"}],\"media$description\":{\"$t\":\"Learn more about YouTube's Content
|
77
|
+
ID system.\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=9g2U12SsRns&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:33\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:06\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/9g2U12SsRns/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:39\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
78
|
+
Content ID\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"132\"},\"yt$uploaded\":{\"$t\":\"2010-09-28T18:21:56.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"9g2U12SsRns\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"599551\"},\"yt$position\":{\"$t\":2}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Education\",\"label\":\"Education\"}],\"title\":{\"$t\":\"Determining
|
79
|
+
What Happened to Your Video\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=8b0aEoxqqC0\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/8b0aEoxqqC0?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv5thSi6AaU9r_9hUpT_DLZE?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
80
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"http://www.youtube.com/v/8b0aEoxqqC0?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":191,\"yt$format\":5},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":1},{\"url\":\"rtsp://r2---sn-cg07luee.c.youtube.com/CiULENy73wIaHAktqGqMEhq98RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":191,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
81
|
+
Help\"}],\"media$description\":{\"$t\":\"This video will show you how to determine
|
82
|
+
what happened to your video if it was removed from YouTube.\\n\\nTo learn
|
83
|
+
more about copyright on YouTube, please visit our Copyright Center at http://www.youtube.com/yt/copyright/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"cc\",\"type\":\"text/html\",\"href\":\"http://creativecommons.org/licenses/by/3.0/\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=8b0aEoxqqC0&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47.750\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:35.500\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/8b0aEoxqqC0/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:23.250\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Determining
|
84
|
+
What Happened to Your Video\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"191\"},\"yt$uploaded\":{\"$t\":\"2013-04-11T23:44:36.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"8b0aEoxqqC0\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"19161\"},\"yt$position\":{\"$t\":3}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs\"},\"published\":{\"$t\":\"2013-08-09T05:09:51.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Entertainment\",\"label\":\"Entertainment\"}],\"title\":{\"$t\":\"Reporting
|
85
|
+
and Policy Enforcement on YouTube\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=6c3mHikRz0I\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv4Zz231WHvzzM2lBS3jjPZs?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
86
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"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\":\"http://gdata.youtube.com/feeds/api/videos/6c3mHikRz0I/comments?v=2\",\"countHint\":126}},\"yt$hd\":{},\"media$group\":{\"media$category\":[{\"$t\":\"Entertainment\",\"label\":\"Entertainment\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/6c3mHikRz0I?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":94,\"yt$format\":5},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":1},{\"url\":\"rtsp://r1---sn-cg07lues.c.youtube.com/CiULENy73wIaHAlCzxEpHubN6RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":94,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
87
|
+
Help\"}],\"media$description\":{\"$t\":\"This video explains the basics of
|
88
|
+
reporting on YouTube. \\n\\nTo learn more about reporting, policies and safety
|
89
|
+
please visit our Policy and Safety hub, http://www.youtube.com/yt/policyandsafety/\",\"type\":\"plain\"},\"media$keywords\":{},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=6c3mHikRz0I&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:23.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:00:47\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/6c3mHikRz0I/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:10.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"Reporting
|
90
|
+
and Policy Enforcement on YouTube\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"94\"},\"yt$uploaded\":{\"$t\":\"2013-04-04T23:31:32.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"6c3mHikRz0I\"}},\"gd$rating\":{\"average\":3.3589745,\"max\":5,\"min\":1,\"numRaters\":507,\"rel\":\"http://schemas.google.com/g/2005#overall\"},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"183084\"},\"yt$rating\":{\"numDislikes\":\"208\",\"numLikes\":\"299\"},\"yt$position\":{\"$t\":4}},{\"gd$etag\":\"W/\\\"YDwqeyM.\\\"\",\"id\":{\"$t\":\"tag:youtube.com,2008:playlist:PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr:PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4\"},\"published\":{\"$t\":\"2013-12-17T23:45:41.000Z\"},\"updated\":{\"$t\":\"1970-01-01T00:00: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\":\"Howto\",\"label\":\"Howto
|
91
|
+
& Style\"}],\"title\":{\"$t\":\"YouTube Copyright Basics (Global)\"},\"content\":{\"type\":\"application/x-shockwave-flash\",\"src\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\"},\"link\":[{\"rel\":\"alternate\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#video.related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc/related?v=2\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#mobile\",\"type\":\"text/html\",\"href\":\"http://m.youtube.com/details?v=OQVHWsTHcoc\"},{\"rel\":\"http://gdata.youtube.com/schemas/2007#uploader\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/users/MDQxm7cUx3yXkfeHa5zJIQ?v=2\"},{\"rel\":\"related\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/videos/OQVHWsTHcoc?v=2\"},{\"rel\":\"self\",\"type\":\"application/atom+xml\",\"href\":\"http://gdata.youtube.com/feeds/api/playlists/PL9hW1uS6HUftLdHI6RIsaf-iXTm09qnEr/PLa0L99Uc4VSCXhwLjoLzxv1hmeWhxMppADNQi_wSyGm4?v=2\"}],\"author\":[{\"name\":{\"$t\":\"YouTube
|
92
|
+
Help\"},\"uri\":{\"$t\":\"http://gdata.youtube.com/feeds/api/users/YouTubeHelp\"},\"yt$userId\":{\"$t\":\"MDQxm7cUx3yXkfeHa5zJIQ\"}}],\"yt$accessControl\":[{\"action\":\"comment\",\"permission\":\"denied\"},{\"action\":\"commentVote\",\"permission\":\"denied\"},{\"action\":\"videoRespond\",\"permission\":\"moderated\"},{\"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\":\"Howto\",\"label\":\"Howto
|
93
|
+
& Style\",\"scheme\":\"http://gdata.youtube.com/schemas/2007/categories.cat\"}],\"media$content\":[{\"url\":\"http://www.youtube.com/v/OQVHWsTHcoc?version=3&f=playlists&app=youtube_gdata\",\"type\":\"application/x-shockwave-flash\",\"medium\":\"video\",\"isDefault\":\"true\",\"expression\":\"full\",\"duration\":342,\"yt$format\":5},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":1},{\"url\":\"rtsp://r7---sn-cg07luel.c.youtube.com/CiULENy73wIaHAmHcsfEWkcFORMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp\",\"type\":\"video/3gpp\",\"medium\":\"video\",\"expression\":\"full\",\"duration\":342,\"yt$format\":6}],\"media$credit\":[{\"$t\":\"youtubehelp\",\"role\":\"uploader\",\"scheme\":\"urn:youtube\",\"yt$display\":\"YouTube
|
94
|
+
Help\"}],\"media$description\":{\"$t\":\"\",\"type\":\"plain\"},\"media$keywords\":{\"$t\":\"yt:cc=on\"},\"media$license\":{\"$t\":\"youtube\",\"type\":\"text/html\",\"href\":\"http://www.youtube.com/t/terms\"},\"media$player\":{\"url\":\"http://www.youtube.com/watch?v=OQVHWsTHcoc&feature=youtube_gdata_player\"},\"media$thumbnail\":[{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/default.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"default\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/mqdefault.jpg\",\"height\":180,\"width\":320,\"yt$name\":\"mqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/hqdefault.jpg\",\"height\":360,\"width\":480,\"yt$name\":\"hqdefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/sddefault.jpg\",\"height\":480,\"width\":640,\"yt$name\":\"sddefault\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/1.jpg\",\"height\":90,\"width\":120,\"time\":\"00:01:25.500\",\"yt$name\":\"start\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/2.jpg\",\"height\":90,\"width\":120,\"time\":\"00:02:51\",\"yt$name\":\"middle\"},{\"url\":\"http://i1.ytimg.com/vi/OQVHWsTHcoc/3.jpg\",\"height\":90,\"width\":120,\"time\":\"00:04:16.500\",\"yt$name\":\"end\"}],\"media$title\":{\"$t\":\"YouTube
|
95
|
+
Copyright Basics (Global)\",\"type\":\"plain\"},\"yt$aspectRatio\":{\"$t\":\"widescreen\"},\"yt$duration\":{\"seconds\":\"342\"},\"yt$uploaded\":{\"$t\":\"2013-12-02T23:22:20.000Z\"},\"yt$uploaderId\":{\"$t\":\"UCMDQxm7cUx3yXkfeHa5zJIQ\"},\"yt$videoid\":{\"$t\":\"OQVHWsTHcoc\"}},\"yt$statistics\":{\"favoriteCount\":\"0\",\"viewCount\":\"211038\"},\"yt$position\":{\"$t\":5}}]}}"
|
96
|
+
http_version:
|
97
|
+
recorded_at: Fri, 21 Feb 2014 13:30:34 GMT
|
98
|
+
recorded_with: VCR 2.8.0
|