refinerycms-vimeo-videos 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +0 -1
- data/Gemfile.lock +33 -0
- data/README.markdown +8 -0
- data/TODO +2 -1
- data/app/controllers/admin/vimeo_account_controller.rb +30 -7
- data/app/controllers/admin/vimeo_videos_controller.rb +10 -9
- data/app/models/vimeo_embed_cache.rb +6 -1
- data/app/models/vimeo_meta_cache.rb +25 -24
- data/lib/refinerycms-vimeo-videos.rb +4 -1
- data/lib/refinerycms_vimeo_videos/account.rb +31 -0
- data/lib/refinerycms_vimeo_videos/version.rb +1 -1
- data/refinerycms-vimeo-videos.gemspec +146 -4
- data/spec/controllers/admin/vimeo_account_controller_spec.rb +0 -0
- data/spec/fixtures/advanced/album/add_video.json +4 -0
- data/spec/fixtures/advanced/album/create.json +7 -0
- data/spec/fixtures/advanced/album/delete.json +4 -0
- data/spec/fixtures/advanced/album/get_all.json +111 -0
- data/spec/fixtures/advanced/album/get_videos.json +30 -0
- data/spec/fixtures/advanced/album/remove_video.json +4 -0
- data/spec/fixtures/advanced/album/set_description.json +4 -0
- data/spec/fixtures/advanced/album/set_password.json +4 -0
- data/spec/fixtures/advanced/album/set_title.json +4 -0
- data/spec/fixtures/advanced/auth/access_token.txt +1 -0
- data/spec/fixtures/advanced/auth/check_access_token.json +9 -0
- data/spec/fixtures/advanced/auth/check_token.json +13 -0
- data/spec/fixtures/advanced/auth/get_frob.json +5 -0
- data/spec/fixtures/advanced/auth/get_token.json +13 -0
- data/spec/fixtures/advanced/auth/request_token.txt +1 -0
- data/spec/fixtures/advanced/channel/add_video.json +4 -0
- data/spec/fixtures/advanced/channel/get_all.json +1357 -0
- data/spec/fixtures/advanced/channel/get_info.json +55 -0
- data/spec/fixtures/advanced/channel/get_moderators.json +45 -0
- data/spec/fixtures/advanced/channel/get_subscribers.json +44 -0
- data/spec/fixtures/advanced/channel/get_videos.json +19 -0
- data/spec/fixtures/advanced/channel/remove_video.json +4 -0
- data/spec/fixtures/advanced/channel/subscribe.json +4 -0
- data/spec/fixtures/advanced/channel/unsubscribe.json +4 -0
- data/spec/fixtures/advanced/contact/get_all.json +117 -0
- data/spec/fixtures/advanced/contact/get_mutual.json +80 -0
- data/spec/fixtures/advanced/contact/get_online.json +47 -0
- data/spec/fixtures/advanced/contact/get_who_added.json +117 -0
- data/spec/fixtures/advanced/group/add_video.json +4 -0
- data/spec/fixtures/advanced/group/get_all.json +1532 -0
- data/spec/fixtures/advanced/group/get_files.json +255 -0
- data/spec/fixtures/advanced/group/get_info.json +72 -0
- data/spec/fixtures/advanced/group/get_members.json +862 -0
- data/spec/fixtures/advanced/group/get_moderators.json +44 -0
- data/spec/fixtures/advanced/group/get_video_comments.json +96 -0
- data/spec/fixtures/advanced/group/get_videos.json +102 -0
- data/spec/fixtures/advanced/group/join.json +4 -0
- data/spec/fixtures/advanced/group/leave.json +4 -0
- data/spec/fixtures/advanced/group_events/get_month.json +141 -0
- data/spec/fixtures/advanced/group_events/get_past.json +141 -0
- data/spec/fixtures/advanced/group_events/get_upcoming.json +141 -0
- data/spec/fixtures/advanced/group_forums/get_topic_comments.json +222 -0
- data/spec/fixtures/advanced/group_forums/get_topics.json +504 -0
- data/spec/fixtures/advanced/person/add_contact.json +4 -0
- data/spec/fixtures/advanced/person/add_subscription.json +4 -0
- data/spec/fixtures/advanced/person/find_by_email.json +9 -0
- data/spec/fixtures/advanced/person/get_hd_embeds.json +8 -0
- data/spec/fixtures/advanced/person/get_info.json +20 -0
- data/spec/fixtures/advanced/person/get_portrait_urls.json +28 -0
- data/spec/fixtures/advanced/person/remove_contact.json +4 -0
- data/spec/fixtures/advanced/person/remove_subscription.json +4 -0
- data/spec/fixtures/advanced/test/echo.json +8 -0
- data/spec/fixtures/advanced/test/login.json +8 -0
- data/spec/fixtures/advanced/test/null.json +4 -0
- data/spec/fixtures/advanced/upload/get_quota.json +16 -0
- data/spec/fixtures/advanced/upload/get_ticket.json +8 -0
- data/spec/fixtures/advanced/upload/sample_iTunes.mov +0 -0
- data/spec/fixtures/advanced/video/add_cast.json +4 -0
- data/spec/fixtures/advanced/video/add_comment.json +7 -0
- data/spec/fixtures/advanced/video/add_photos.json +4 -0
- data/spec/fixtures/advanced/video/add_tags.json +4 -0
- data/spec/fixtures/advanced/video/clear_tags.json +4 -0
- data/spec/fixtures/advanced/video/delete.json +4 -0
- data/spec/fixtures/advanced/video/delete_comment.json +4 -0
- data/spec/fixtures/advanced/video/edit_comment.json +4 -0
- data/spec/fixtures/advanced/video/get_all.json +30 -0
- data/spec/fixtures/advanced/video/get_appears_in.json +10 -0
- data/spec/fixtures/advanced/video/get_by_tag.json +237 -0
- data/spec/fixtures/advanced/video/get_cast.json +42 -0
- data/spec/fixtures/advanced/video/get_comments_list.json +52 -0
- data/spec/fixtures/advanced/video/get_contacts_liked.json +48 -0
- data/spec/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
- data/spec/fixtures/advanced/video/get_info.json +246 -0
- data/spec/fixtures/advanced/video/get_likes.json +32 -0
- data/spec/fixtures/advanced/video/get_subscriptions.json +237 -0
- data/spec/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
- data/spec/fixtures/advanced/video/get_uploaded.json +30 -0
- data/spec/fixtures/advanced/video/remove_cast.json +4 -0
- data/spec/fixtures/advanced/video/remove_tag.json +4 -0
- data/spec/fixtures/advanced/video/search.json +237 -0
- data/spec/fixtures/advanced/video/set_description.json +4 -0
- data/spec/fixtures/advanced/video/set_like.json +4 -0
- data/spec/fixtures/advanced/video/set_privacy.json +4 -0
- data/spec/fixtures/advanced/video/set_title.json +4 -0
- data/spec/fixtures/advanced/video_embed/get_presets.json +8 -0
- data/spec/fixtures/advanced/video_embed/set_preset.json +4 -0
- data/spec/fixtures/oembed/oembed.json +5 -0
- data/spec/fixtures/simple/activity/contacts_did.json +1 -0
- data/spec/fixtures/simple/activity/everyone_did.json +1 -0
- data/spec/fixtures/simple/activity/happened_to_contacts.json +1 -0
- data/spec/fixtures/simple/activity/happened_to_user.json +1 -0
- data/spec/fixtures/simple/activity/user_did.json +1 -0
- data/spec/fixtures/simple/album/info.json +1 -0
- data/spec/fixtures/simple/album/videos.json +1 -0
- data/spec/fixtures/simple/channel/info.json +1 -0
- data/spec/fixtures/simple/channel/videos.json +1 -0
- data/spec/fixtures/simple/group/info.json +1 -0
- data/spec/fixtures/simple/group/users.json +1 -0
- data/spec/fixtures/simple/group/videos.json +1 -0
- data/spec/fixtures/simple/user/albums.json +1 -0
- data/spec/fixtures/simple/user/all_videos.json +1 -0
- data/spec/fixtures/simple/user/appears_in.json +1 -0
- data/spec/fixtures/simple/user/channels.json +1 -0
- data/spec/fixtures/simple/user/contacts_like.json +1 -0
- data/spec/fixtures/simple/user/contacts_videos.json +1 -0
- data/spec/fixtures/simple/user/groups.json +1 -0
- data/spec/fixtures/simple/user/info.json +1 -0
- data/spec/fixtures/simple/user/likes.json +1 -0
- data/spec/fixtures/simple/user/subscriptions.json +1 -0
- data/spec/fixtures/simple/user/videos.json +1 -0
- data/spec/fixtures/simple/video/info.json +1 -0
- data/spec/models/vimeo_embed_cache_spec.rb +65 -0
- data/spec/models/vimeo_meta_cache_spec.rb +24 -0
- data/spec/models/vimeo_video_spec.rb +0 -8
- data/spec/vimeo_helper.rb +54 -0
- metadata +131 -3
- data/app/controllers/admin/vimeo_base_controller.rb +0 -40
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.3428",
|
3
|
+
"stat":"ok",
|
4
|
+
"videos":{
|
5
|
+
"on_this_page":"2",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"2",
|
9
|
+
"video":[
|
10
|
+
{
|
11
|
+
"embed_privacy":"anywhere",
|
12
|
+
"id":"6777401",
|
13
|
+
"is_hd":"0",
|
14
|
+
"owner":"888046",
|
15
|
+
"privacy":"nobody",
|
16
|
+
"title":"Untitled",
|
17
|
+
"upload_date":"2009-09-27 06:47:11"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"embed_privacy":"anywhere",
|
21
|
+
"id":"2529363",
|
22
|
+
"is_hd":"0",
|
23
|
+
"owner":"888046",
|
24
|
+
"privacy":"anybody",
|
25
|
+
"title":"Test Video",
|
26
|
+
"upload_date":"2008-12-14 23:57:19"
|
27
|
+
}
|
28
|
+
]
|
29
|
+
}
|
30
|
+
}
|
@@ -0,0 +1,237 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.3816",
|
3
|
+
"stat":"ok",
|
4
|
+
"videos":{
|
5
|
+
"on_this_page":"25",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"49",
|
9
|
+
"video":[
|
10
|
+
{
|
11
|
+
"embed_privacy":"anywhere",
|
12
|
+
"id":"6728067",
|
13
|
+
"is_hd":"1",
|
14
|
+
"owner":"1013446",
|
15
|
+
"privacy":"anybody",
|
16
|
+
"title":"MIXIN FEESTJE (PROMO) - 14 OKT 2009",
|
17
|
+
"upload_date":"2009-09-23 19:49:18"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"embed_privacy":"anywhere",
|
21
|
+
"id":"6352963",
|
22
|
+
"is_hd":"0",
|
23
|
+
"owner":"975861",
|
24
|
+
"privacy":"anybody",
|
25
|
+
"title":"Battle of the Imports 2009",
|
26
|
+
"upload_date":"2009-08-30 23:39:57"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"embed_privacy":"anywhere",
|
30
|
+
"id":"6258360",
|
31
|
+
"is_hd":"0",
|
32
|
+
"owner":"1445341",
|
33
|
+
"privacy":"anybody",
|
34
|
+
"title":"Top Notch video flyer. Funky Fresh Andres",
|
35
|
+
"upload_date":"2009-08-24 22:52:27"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"embed_privacy":"anywhere",
|
39
|
+
"id":"6065068",
|
40
|
+
"is_hd":"0",
|
41
|
+
"owner":"1195929",
|
42
|
+
"privacy":"anybody",
|
43
|
+
"title":"Videoclip Aux Raus",
|
44
|
+
"upload_date":"2009-08-12 07:10:52"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"embed_privacy":"anywhere",
|
48
|
+
"id":"5930915",
|
49
|
+
"is_hd":"0",
|
50
|
+
"owner":"2006795",
|
51
|
+
"privacy":"anybody",
|
52
|
+
"title":"Winne - Net Als Ik",
|
53
|
+
"upload_date":"2009-08-04 08:22:33"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"embed_privacy":"anywhere",
|
57
|
+
"id":"5726353",
|
58
|
+
"is_hd":"1",
|
59
|
+
"owner":"997051",
|
60
|
+
"privacy":"anybody",
|
61
|
+
"title":"GUILLOTINE TEASER - ZWART LICHT",
|
62
|
+
"upload_date":"2009-07-23 04:09:05"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"embed_privacy":"anywhere",
|
66
|
+
"id":"5721331",
|
67
|
+
"is_hd":"1",
|
68
|
+
"owner":"772609",
|
69
|
+
"privacy":"anybody",
|
70
|
+
"title":"Salah Edin feat. Sefyu - Tfoe!",
|
71
|
+
"upload_date":"2009-07-22 19:40:08"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"embed_privacy":"anywhere",
|
75
|
+
"id":"5683709",
|
76
|
+
"is_hd":"0",
|
77
|
+
"owner":"997051",
|
78
|
+
"privacy":"anybody",
|
79
|
+
"title":"Salah Edin \" World Tour V.2 \"",
|
80
|
+
"upload_date":"2009-07-20 15:07:44"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"embed_privacy":"anywhere",
|
84
|
+
"id":"5625704",
|
85
|
+
"is_hd":"0",
|
86
|
+
"owner":"1287709",
|
87
|
+
"privacy":"anybody",
|
88
|
+
"title":"Photoclub 5",
|
89
|
+
"upload_date":"2009-07-16 11:50:16"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"embed_privacy":"anywhere",
|
93
|
+
"id":"5552817",
|
94
|
+
"is_hd":"0",
|
95
|
+
"owner":"2019180",
|
96
|
+
"privacy":"anybody",
|
97
|
+
"title":"I Need A Hit Episode 1 : Directed By DiverSe",
|
98
|
+
"upload_date":"2009-07-11 13:24:40"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"embed_privacy":"anywhere",
|
102
|
+
"id":"5428546",
|
103
|
+
"is_hd":"0",
|
104
|
+
"owner":"1016547",
|
105
|
+
"privacy":"anybody",
|
106
|
+
"title":"Dio & The Madd - Baby",
|
107
|
+
"upload_date":"2009-07-02 15:40:52"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"embed_privacy":"anywhere",
|
111
|
+
"id":"5194466",
|
112
|
+
"is_hd":"1",
|
113
|
+
"owner":"710672",
|
114
|
+
"privacy":"anybody",
|
115
|
+
"title":"Superster Remix Ft. Winne",
|
116
|
+
"upload_date":"2009-06-16 21:31:26"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"embed_privacy":"anywhere",
|
120
|
+
"id":"5188077",
|
121
|
+
"is_hd":"0",
|
122
|
+
"owner":"1016547",
|
123
|
+
"privacy":"anybody",
|
124
|
+
"title":"Jayh feat. Willie Wartaal - Delilah",
|
125
|
+
"upload_date":"2009-06-16 14:04:59"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"embed_privacy":"anywhere",
|
129
|
+
"id":"5142951",
|
130
|
+
"is_hd":"0",
|
131
|
+
"owner":"997051",
|
132
|
+
"privacy":"anybody",
|
133
|
+
"title":"SALAH EDIN - TFOE TEASER",
|
134
|
+
"upload_date":"2009-06-13 15:11:42"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"embed_privacy":"anywhere",
|
138
|
+
"id":"4877913",
|
139
|
+
"is_hd":"1",
|
140
|
+
"owner":"1807895",
|
141
|
+
"privacy":"anybody",
|
142
|
+
"title":"A Day In The Life Of Top Notch: Welcome To Atlanta \"Day 1\"",
|
143
|
+
"upload_date":"2009-05-28 00:03:06"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"embed_privacy":"anywhere",
|
147
|
+
"id":"4792104",
|
148
|
+
"is_hd":"0",
|
149
|
+
"owner":"1445341",
|
150
|
+
"privacy":"anybody",
|
151
|
+
"title":"Top Notch Party Flyer",
|
152
|
+
"upload_date":"2009-05-22 20:11:11"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"embed_privacy":"anywhere",
|
156
|
+
"id":"4634969",
|
157
|
+
"is_hd":"0",
|
158
|
+
"owner":"1016547",
|
159
|
+
"privacy":"anybody",
|
160
|
+
"title":"Flinke Namen - Als Zij Langs Loopt",
|
161
|
+
"upload_date":"2009-05-13 16:04:39"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"embed_privacy":"anywhere",
|
165
|
+
"id":"4588871",
|
166
|
+
"is_hd":"0",
|
167
|
+
"owner":"802056",
|
168
|
+
"privacy":"anybody",
|
169
|
+
"title":"Winne - Lotgenoot",
|
170
|
+
"upload_date":"2009-05-11 06:34:58"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"embed_privacy":"anywhere",
|
174
|
+
"id":"4588737",
|
175
|
+
"is_hd":"0",
|
176
|
+
"owner":"802056",
|
177
|
+
"privacy":"anybody",
|
178
|
+
"title":"Winne - W.I.N.N.E",
|
179
|
+
"upload_date":"2009-05-11 06:21:51"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"embed_privacy":"anywhere",
|
183
|
+
"id":"4543126",
|
184
|
+
"is_hd":"0",
|
185
|
+
"owner":"695275",
|
186
|
+
"privacy":"anybody",
|
187
|
+
"title":"Top Notch\/Johnny Moog",
|
188
|
+
"upload_date":"2009-05-08 05:13:35"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"embed_privacy":"anywhere",
|
192
|
+
"id":"4313457",
|
193
|
+
"is_hd":"0",
|
194
|
+
"owner":"1645450",
|
195
|
+
"privacy":"anybody",
|
196
|
+
"title":"Teemong - Nashat",
|
197
|
+
"upload_date":"2009-04-24 12:30:16"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"embed_privacy":"anywhere",
|
201
|
+
"id":"4103059",
|
202
|
+
"is_hd":"0",
|
203
|
+
"owner":"1016547",
|
204
|
+
"privacy":"anybody",
|
205
|
+
"title":"Kempi feat. Willy - Hier Ver Vandaan",
|
206
|
+
"upload_date":"2009-04-11 07:50:13"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"embed_privacy":"anywhere",
|
210
|
+
"id":"4095217",
|
211
|
+
"is_hd":"1",
|
212
|
+
"owner":"1232497",
|
213
|
+
"privacy":"anybody",
|
214
|
+
"title":"Fresku - Twijfel",
|
215
|
+
"upload_date":"2009-04-10 15:34:23"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"embed_privacy":"anywhere",
|
219
|
+
"id":"4089698",
|
220
|
+
"is_hd":"0",
|
221
|
+
"owner":"1425268",
|
222
|
+
"privacy":"anybody",
|
223
|
+
"title":"Winne,\n Lotto,\n Crimson e.a. @ Vitamine E (Radioshow)",
|
224
|
+
"upload_date":"2009-04-10 07:33:04"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"embed_privacy":"anywhere",
|
228
|
+
"id":"4028425",
|
229
|
+
"is_hd":"1",
|
230
|
+
"owner":"1013446",
|
231
|
+
"privacy":"anybody",
|
232
|
+
"title":"ZWART LICHT - DUBTRIP (FS GREEN REMIX)",
|
233
|
+
"upload_date":"2009-04-06 09:38:06"
|
234
|
+
}
|
235
|
+
]
|
236
|
+
}
|
237
|
+
}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.0129",
|
3
|
+
"stat":"ok",
|
4
|
+
"cast":{
|
5
|
+
"total":"1",
|
6
|
+
"member":{
|
7
|
+
"display_name":"13thWitness\u2122",
|
8
|
+
"id":"580098",
|
9
|
+
"is_plus":"1",
|
10
|
+
"is_staff":"0",
|
11
|
+
"profileurl":"http:\/\/vimeo.com\/the13thwitness",
|
12
|
+
"realname":"13thWitness\u2122",
|
13
|
+
"role":"",
|
14
|
+
"username":"the13thwitness",
|
15
|
+
"videosurl":"http:\/\/vimeo.com\/the13thwitness\/videos",
|
16
|
+
"portraits":{
|
17
|
+
"portrait":[
|
18
|
+
{
|
19
|
+
"height":"30",
|
20
|
+
"width":"30",
|
21
|
+
"_content":"http:\/\/images.vimeo.com\/91\/61\/45\/91614528\/91614528_30.jpg"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"height":"75",
|
25
|
+
"width":"75",
|
26
|
+
"_content":"http:\/\/images.vimeo.com\/91\/61\/45\/91614528\/91614528_75.jpg"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"height":"100",
|
30
|
+
"width":"100",
|
31
|
+
"_content":"http:\/\/images.vimeo.com\/91\/61\/45\/91614528\/91614528_100.jpg"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"height":"300",
|
35
|
+
"width":"300",
|
36
|
+
"_content":"http:\/\/images.vimeo.com\/91\/61\/45\/91614528\/91614528_300.jpg"
|
37
|
+
}
|
38
|
+
]
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.0930",
|
3
|
+
"stat":"ok",
|
4
|
+
"comments":{
|
5
|
+
"on_this_page":"1",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"1",
|
9
|
+
"comment":{
|
10
|
+
"datecreate":"2009-09-28 19:14:48",
|
11
|
+
"id":"1976799",
|
12
|
+
"permalink":"http:\/\/vimeo.com\/6777401#comment_1976799",
|
13
|
+
"reply_to_comment_id":"1976799",
|
14
|
+
"type":"clip",
|
15
|
+
"text":"test",
|
16
|
+
"author":{
|
17
|
+
"display_name":"Matt Hooks",
|
18
|
+
"id":"888046",
|
19
|
+
"is_plus":"0",
|
20
|
+
"is_staff":"0",
|
21
|
+
"profileurl":"http:\/\/vimeo.com\/matthooks",
|
22
|
+
"realname":"Matt Hooks",
|
23
|
+
"username":"matthooks",
|
24
|
+
"videosurl":"http:\/\/vimeo.com\/matthooks\/videos",
|
25
|
+
"portraits":{
|
26
|
+
"portrait":[
|
27
|
+
{
|
28
|
+
"height":"30",
|
29
|
+
"width":"30",
|
30
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_30.jpg"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"height":"75",
|
34
|
+
"width":"75",
|
35
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_75.jpg"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"height":"100",
|
39
|
+
"width":"100",
|
40
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_100.jpg"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"height":"300",
|
44
|
+
"width":"300",
|
45
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_300.jpg"
|
46
|
+
}
|
47
|
+
]
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.3030",
|
3
|
+
"stat":"ok",
|
4
|
+
"videos":{
|
5
|
+
"on_this_page":"4",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"4",
|
9
|
+
"video":[
|
10
|
+
{
|
11
|
+
"embed_privacy":"anywhere",
|
12
|
+
"id":"5804418",
|
13
|
+
"is_hd":"0",
|
14
|
+
"owner":"1046853",
|
15
|
+
"privacy":"anybody",
|
16
|
+
"title":"Poems for Pictopia",
|
17
|
+
"upload_date":"2009-07-28 13:21:19"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"embed_privacy":"anywhere",
|
21
|
+
"id":"3830864",
|
22
|
+
"is_hd":"1",
|
23
|
+
"owner":"671138",
|
24
|
+
"privacy":"anybody",
|
25
|
+
"title":"I-Movix Sprintcam v3 sample shots",
|
26
|
+
"upload_date":"2009-03-24 05:17:59"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"embed_privacy":"anywhere",
|
30
|
+
"id":"4110034",
|
31
|
+
"is_hd":"0",
|
32
|
+
"owner":"576327",
|
33
|
+
"privacy":"anybody",
|
34
|
+
"title":"Nobuooo 1.09: The Perfect High ",
|
35
|
+
"upload_date":"2009-04-11 19:30:08"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"embed_privacy":"anywhere",
|
39
|
+
"id":"993998",
|
40
|
+
"is_hd":"0",
|
41
|
+
"owner":"314547",
|
42
|
+
"privacy":"anybody",
|
43
|
+
"title":"MUTO a wall-painted animation by BLU",
|
44
|
+
"upload_date":"2008-05-09 11:03:09"
|
45
|
+
}
|
46
|
+
]
|
47
|
+
}
|
48
|
+
}
|