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,862 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.3529",
|
3
|
+
"stat":"ok",
|
4
|
+
"members":{
|
5
|
+
"on_this_page":"25",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"418",
|
9
|
+
"member":[
|
10
|
+
{
|
11
|
+
"display_name":"cris",
|
12
|
+
"id":"2338154",
|
13
|
+
"is_plus":"0",
|
14
|
+
"is_staff":"0",
|
15
|
+
"profileurl":"http:\/\/vimeo.com\/user2338154",
|
16
|
+
"realname":"cris",
|
17
|
+
"username":"user2338154",
|
18
|
+
"videosurl":"http:\/\/vimeo.com\/user2338154\/videos",
|
19
|
+
"portraits":{
|
20
|
+
"portrait":[
|
21
|
+
{
|
22
|
+
"height":"30",
|
23
|
+
"width":"30",
|
24
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"height":"75",
|
28
|
+
"width":"75",
|
29
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"height":"100",
|
33
|
+
"width":"100",
|
34
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"height":"300",
|
38
|
+
"width":"300",
|
39
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
40
|
+
}
|
41
|
+
]
|
42
|
+
}
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"display_name":"Peter Hopwood",
|
46
|
+
"id":"1112531",
|
47
|
+
"is_plus":"0",
|
48
|
+
"is_staff":"0",
|
49
|
+
"profileurl":"http:\/\/vimeo.com\/user1112531",
|
50
|
+
"realname":"Peter Hopwood",
|
51
|
+
"username":"user1112531",
|
52
|
+
"videosurl":"http:\/\/vimeo.com\/user1112531\/videos",
|
53
|
+
"portraits":{
|
54
|
+
"portrait":[
|
55
|
+
{
|
56
|
+
"height":"30",
|
57
|
+
"width":"30",
|
58
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"height":"75",
|
62
|
+
"width":"75",
|
63
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"height":"100",
|
67
|
+
"width":"100",
|
68
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"height":"300",
|
72
|
+
"width":"300",
|
73
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
74
|
+
}
|
75
|
+
]
|
76
|
+
}
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"display_name":"bodyshotphoto",
|
80
|
+
"id":"1804181",
|
81
|
+
"is_plus":"1",
|
82
|
+
"is_staff":"0",
|
83
|
+
"profileurl":"http:\/\/vimeo.com\/bodyshotphoto",
|
84
|
+
"realname":"bodyshotphoto",
|
85
|
+
"username":"bodyshotphoto",
|
86
|
+
"videosurl":"http:\/\/vimeo.com\/bodyshotphoto\/videos",
|
87
|
+
"portraits":{
|
88
|
+
"portrait":[
|
89
|
+
{
|
90
|
+
"height":"30",
|
91
|
+
"width":"30",
|
92
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"height":"75",
|
96
|
+
"width":"75",
|
97
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"height":"100",
|
101
|
+
"width":"100",
|
102
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"height":"300",
|
106
|
+
"width":"300",
|
107
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
108
|
+
}
|
109
|
+
]
|
110
|
+
}
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"display_name":"danny marquis",
|
114
|
+
"id":"2327414",
|
115
|
+
"is_plus":"0",
|
116
|
+
"is_staff":"0",
|
117
|
+
"profileurl":"http:\/\/vimeo.com\/dannymarquis",
|
118
|
+
"realname":"danny marquis",
|
119
|
+
"username":"dannymarquis",
|
120
|
+
"videosurl":"http:\/\/vimeo.com\/dannymarquis\/videos",
|
121
|
+
"portraits":{
|
122
|
+
"portrait":[
|
123
|
+
{
|
124
|
+
"height":"30",
|
125
|
+
"width":"30",
|
126
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/578\/57849_30.jpg"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"height":"75",
|
130
|
+
"width":"75",
|
131
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/578\/57849_75.jpg"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"height":"100",
|
135
|
+
"width":"100",
|
136
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/578\/57849_100.jpg"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"height":"300",
|
140
|
+
"width":"300",
|
141
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/578\/57849_300.jpg"
|
142
|
+
}
|
143
|
+
]
|
144
|
+
}
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"display_name":"\u0386\u03ba\u03b7\u03c2 \u039c\u03c0\u03af-\u03a0\u03af.",
|
148
|
+
"id":"1857376",
|
149
|
+
"is_plus":"0",
|
150
|
+
"is_staff":"0",
|
151
|
+
"profileurl":"http:\/\/vimeo.com\/mvelveretro",
|
152
|
+
"realname":"\u0386\u03ba\u03b7\u03c2 \u039c\u03c0\u03af-\u03a0\u03af.",
|
153
|
+
"username":"mvelveretro",
|
154
|
+
"videosurl":"http:\/\/vimeo.com\/mvelveretro\/videos",
|
155
|
+
"portraits":{
|
156
|
+
"portrait":[
|
157
|
+
{
|
158
|
+
"height":"30",
|
159
|
+
"width":"30",
|
160
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/305\/30587_30.jpg"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"height":"75",
|
164
|
+
"width":"75",
|
165
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/305\/30587_75.jpg"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"height":"100",
|
169
|
+
"width":"100",
|
170
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/305\/30587_100.jpg"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"height":"300",
|
174
|
+
"width":"300",
|
175
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/305\/30587_300.jpg"
|
176
|
+
}
|
177
|
+
]
|
178
|
+
}
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"display_name":"mactive",
|
182
|
+
"id":"848748",
|
183
|
+
"is_plus":"0",
|
184
|
+
"is_staff":"0",
|
185
|
+
"profileurl":"http:\/\/vimeo.com\/mactive",
|
186
|
+
"realname":"mactive",
|
187
|
+
"username":"mactive",
|
188
|
+
"videosurl":"http:\/\/vimeo.com\/mactive\/videos",
|
189
|
+
"portraits":{
|
190
|
+
"portrait":[
|
191
|
+
{
|
192
|
+
"height":"30",
|
193
|
+
"width":"30",
|
194
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/286\/28674_30.jpg"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"height":"75",
|
198
|
+
"width":"75",
|
199
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/286\/28674_75.jpg"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"height":"100",
|
203
|
+
"width":"100",
|
204
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/286\/28674_100.jpg"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"height":"300",
|
208
|
+
"width":"300",
|
209
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/286\/28674_300.jpg"
|
210
|
+
}
|
211
|
+
]
|
212
|
+
}
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"display_name":"Vladislav Dmitrievich",
|
216
|
+
"id":"2285279",
|
217
|
+
"is_plus":"0",
|
218
|
+
"is_staff":"0",
|
219
|
+
"profileurl":"http:\/\/vimeo.com\/user2285279",
|
220
|
+
"realname":"Vladislav Dmitrievich",
|
221
|
+
"username":"user2285279",
|
222
|
+
"videosurl":"http:\/\/vimeo.com\/user2285279\/videos",
|
223
|
+
"portraits":{
|
224
|
+
"portrait":[
|
225
|
+
{
|
226
|
+
"height":"30",
|
227
|
+
"width":"30",
|
228
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/433\/43308_30.jpg"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"height":"75",
|
232
|
+
"width":"75",
|
233
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/433\/43308_75.jpg"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"height":"100",
|
237
|
+
"width":"100",
|
238
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/433\/43308_100.jpg"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"height":"300",
|
242
|
+
"width":"300",
|
243
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/433\/43308_300.jpg"
|
244
|
+
}
|
245
|
+
]
|
246
|
+
}
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"display_name":"Benjamin Kraatz",
|
250
|
+
"id":"2311234",
|
251
|
+
"is_plus":"0",
|
252
|
+
"is_staff":"0",
|
253
|
+
"profileurl":"http:\/\/vimeo.com\/user2311234",
|
254
|
+
"realname":"Benjamin Kraatz",
|
255
|
+
"username":"user2311234",
|
256
|
+
"videosurl":"http:\/\/vimeo.com\/user2311234\/videos",
|
257
|
+
"portraits":{
|
258
|
+
"portrait":[
|
259
|
+
{
|
260
|
+
"height":"30",
|
261
|
+
"width":"30",
|
262
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"height":"75",
|
266
|
+
"width":"75",
|
267
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"height":"100",
|
271
|
+
"width":"100",
|
272
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"height":"300",
|
276
|
+
"width":"300",
|
277
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
278
|
+
}
|
279
|
+
]
|
280
|
+
}
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"display_name":"Enforex",
|
284
|
+
"id":"1996140",
|
285
|
+
"is_plus":"0",
|
286
|
+
"is_staff":"0",
|
287
|
+
"profileurl":"http:\/\/vimeo.com\/user1996140",
|
288
|
+
"realname":"Enforex",
|
289
|
+
"username":"user1996140",
|
290
|
+
"videosurl":"http:\/\/vimeo.com\/user1996140\/videos",
|
291
|
+
"portraits":{
|
292
|
+
"portrait":[
|
293
|
+
{
|
294
|
+
"height":"30",
|
295
|
+
"width":"30",
|
296
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/114\/11446_30.jpg"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"height":"75",
|
300
|
+
"width":"75",
|
301
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/114\/11446_75.jpg"
|
302
|
+
},
|
303
|
+
{
|
304
|
+
"height":"100",
|
305
|
+
"width":"100",
|
306
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/114\/11446_100.jpg"
|
307
|
+
},
|
308
|
+
{
|
309
|
+
"height":"300",
|
310
|
+
"width":"300",
|
311
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/114\/11446_300.jpg"
|
312
|
+
}
|
313
|
+
]
|
314
|
+
}
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"display_name":"Steve Wood",
|
318
|
+
"id":"1577402",
|
319
|
+
"is_plus":"0",
|
320
|
+
"is_staff":"0",
|
321
|
+
"profileurl":"http:\/\/vimeo.com\/user1577402",
|
322
|
+
"realname":"Steve Wood",
|
323
|
+
"username":"user1577402",
|
324
|
+
"videosurl":"http:\/\/vimeo.com\/user1577402\/videos",
|
325
|
+
"portraits":{
|
326
|
+
"portrait":[
|
327
|
+
{
|
328
|
+
"height":"30",
|
329
|
+
"width":"30",
|
330
|
+
"_content":"http:\/\/images.vimeo.com\/11\/64\/62\/116462449\/116462449_30.jpg"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"height":"75",
|
334
|
+
"width":"75",
|
335
|
+
"_content":"http:\/\/images.vimeo.com\/11\/64\/62\/116462449\/116462449_75.jpg"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"height":"100",
|
339
|
+
"width":"100",
|
340
|
+
"_content":"http:\/\/images.vimeo.com\/11\/64\/62\/116462449\/116462449_100.jpg"
|
341
|
+
},
|
342
|
+
{
|
343
|
+
"height":"300",
|
344
|
+
"width":"300",
|
345
|
+
"_content":"http:\/\/images.vimeo.com\/11\/64\/62\/116462449\/116462449_300.jpg"
|
346
|
+
}
|
347
|
+
]
|
348
|
+
}
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"display_name":"zoiampatzi",
|
352
|
+
"id":"1154704",
|
353
|
+
"is_plus":"1",
|
354
|
+
"is_staff":"0",
|
355
|
+
"profileurl":"http:\/\/vimeo.com\/user1154704",
|
356
|
+
"realname":"zoiampatzi",
|
357
|
+
"username":"user1154704",
|
358
|
+
"videosurl":"http:\/\/vimeo.com\/user1154704\/videos",
|
359
|
+
"portraits":{
|
360
|
+
"portrait":[
|
361
|
+
{
|
362
|
+
"height":"30",
|
363
|
+
"width":"30",
|
364
|
+
"_content":"http:\/\/images.vimeo.com\/11\/67\/19\/116719596\/116719596_30.jpg"
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"height":"75",
|
368
|
+
"width":"75",
|
369
|
+
"_content":"http:\/\/images.vimeo.com\/11\/67\/19\/116719596\/116719596_75.jpg"
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"height":"100",
|
373
|
+
"width":"100",
|
374
|
+
"_content":"http:\/\/images.vimeo.com\/11\/67\/19\/116719596\/116719596_100.jpg"
|
375
|
+
},
|
376
|
+
{
|
377
|
+
"height":"300",
|
378
|
+
"width":"300",
|
379
|
+
"_content":"http:\/\/images.vimeo.com\/11\/67\/19\/116719596\/116719596_300.jpg"
|
380
|
+
}
|
381
|
+
]
|
382
|
+
}
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"display_name":"Jason Cox",
|
386
|
+
"id":"1877038",
|
387
|
+
"is_plus":"1",
|
388
|
+
"is_staff":"0",
|
389
|
+
"profileurl":"http:\/\/vimeo.com\/jerseydevil",
|
390
|
+
"realname":"Jason Cox",
|
391
|
+
"username":"jerseydevil",
|
392
|
+
"videosurl":"http:\/\/vimeo.com\/jerseydevil\/videos",
|
393
|
+
"portraits":{
|
394
|
+
"portrait":[
|
395
|
+
{
|
396
|
+
"height":"30",
|
397
|
+
"width":"30",
|
398
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/516\/51679_30.jpg"
|
399
|
+
},
|
400
|
+
{
|
401
|
+
"height":"75",
|
402
|
+
"width":"75",
|
403
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/516\/51679_75.jpg"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"height":"100",
|
407
|
+
"width":"100",
|
408
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/516\/51679_100.jpg"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"height":"300",
|
412
|
+
"width":"300",
|
413
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/516\/51679_300.jpg"
|
414
|
+
}
|
415
|
+
]
|
416
|
+
}
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"display_name":"Christoph Krainer",
|
420
|
+
"id":"2289632",
|
421
|
+
"is_plus":"0",
|
422
|
+
"is_staff":"0",
|
423
|
+
"profileurl":"http:\/\/vimeo.com\/user2289632",
|
424
|
+
"realname":"Christoph Krainer",
|
425
|
+
"username":"user2289632",
|
426
|
+
"videosurl":"http:\/\/vimeo.com\/user2289632\/videos",
|
427
|
+
"portraits":{
|
428
|
+
"portrait":[
|
429
|
+
{
|
430
|
+
"height":"30",
|
431
|
+
"width":"30",
|
432
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/448\/44840_30.jpg"
|
433
|
+
},
|
434
|
+
{
|
435
|
+
"height":"75",
|
436
|
+
"width":"75",
|
437
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/448\/44840_75.jpg"
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"height":"100",
|
441
|
+
"width":"100",
|
442
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/448\/44840_100.jpg"
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"height":"300",
|
446
|
+
"width":"300",
|
447
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/448\/44840_300.jpg"
|
448
|
+
}
|
449
|
+
]
|
450
|
+
}
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"display_name":"Juan Andr\u00e9s",
|
454
|
+
"id":"1717099",
|
455
|
+
"is_plus":"0",
|
456
|
+
"is_staff":"0",
|
457
|
+
"profileurl":"http:\/\/vimeo.com\/user1717099",
|
458
|
+
"realname":"Juan Andr\u00e9s",
|
459
|
+
"username":"user1717099",
|
460
|
+
"videosurl":"http:\/\/vimeo.com\/user1717099\/videos",
|
461
|
+
"portraits":{
|
462
|
+
"portrait":[
|
463
|
+
{
|
464
|
+
"height":"30",
|
465
|
+
"width":"30",
|
466
|
+
"_content":"http:\/\/images.vimeo.com\/11\/69\/60\/116960143\/116960143_30.jpg"
|
467
|
+
},
|
468
|
+
{
|
469
|
+
"height":"75",
|
470
|
+
"width":"75",
|
471
|
+
"_content":"http:\/\/images.vimeo.com\/11\/69\/60\/116960143\/116960143_75.jpg"
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"height":"100",
|
475
|
+
"width":"100",
|
476
|
+
"_content":"http:\/\/images.vimeo.com\/11\/69\/60\/116960143\/116960143_100.jpg"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"height":"300",
|
480
|
+
"width":"300",
|
481
|
+
"_content":"http:\/\/images.vimeo.com\/11\/69\/60\/116960143\/116960143_300.jpg"
|
482
|
+
}
|
483
|
+
]
|
484
|
+
}
|
485
|
+
},
|
486
|
+
{
|
487
|
+
"display_name":"plamen mirchev",
|
488
|
+
"id":"1982966",
|
489
|
+
"is_plus":"0",
|
490
|
+
"is_staff":"0",
|
491
|
+
"profileurl":"http:\/\/vimeo.com\/user1982966",
|
492
|
+
"realname":"plamen mirchev",
|
493
|
+
"username":"user1982966",
|
494
|
+
"videosurl":"http:\/\/vimeo.com\/user1982966\/videos",
|
495
|
+
"portraits":{
|
496
|
+
"portrait":[
|
497
|
+
{
|
498
|
+
"height":"30",
|
499
|
+
"width":"30",
|
500
|
+
"_content":"http:\/\/images.vimeo.com\/11\/81\/38\/118138574\/118138574_30.jpg"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"height":"75",
|
504
|
+
"width":"75",
|
505
|
+
"_content":"http:\/\/images.vimeo.com\/11\/81\/38\/118138574\/118138574_75.jpg"
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"height":"100",
|
509
|
+
"width":"100",
|
510
|
+
"_content":"http:\/\/images.vimeo.com\/11\/81\/38\/118138574\/118138574_100.jpg"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"height":"300",
|
514
|
+
"width":"300",
|
515
|
+
"_content":"http:\/\/images.vimeo.com\/11\/81\/38\/118138574\/118138574_300.jpg"
|
516
|
+
}
|
517
|
+
]
|
518
|
+
}
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"display_name":"Sam Abraham",
|
522
|
+
"id":"2280335",
|
523
|
+
"is_plus":"0",
|
524
|
+
"is_staff":"0",
|
525
|
+
"profileurl":"http:\/\/vimeo.com\/user2280335",
|
526
|
+
"realname":"Sam Abraham",
|
527
|
+
"username":"user2280335",
|
528
|
+
"videosurl":"http:\/\/vimeo.com\/user2280335\/videos",
|
529
|
+
"portraits":{
|
530
|
+
"portrait":[
|
531
|
+
{
|
532
|
+
"height":"30",
|
533
|
+
"width":"30",
|
534
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/417\/41721_30.jpg"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"height":"75",
|
538
|
+
"width":"75",
|
539
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/417\/41721_75.jpg"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"height":"100",
|
543
|
+
"width":"100",
|
544
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/417\/41721_100.jpg"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"height":"300",
|
548
|
+
"width":"300",
|
549
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/417\/41721_300.jpg"
|
550
|
+
}
|
551
|
+
]
|
552
|
+
}
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"display_name":"NoXstar",
|
556
|
+
"id":"1230586",
|
557
|
+
"is_plus":"0",
|
558
|
+
"is_staff":"0",
|
559
|
+
"profileurl":"http:\/\/vimeo.com\/bildevisjon",
|
560
|
+
"realname":"NoXstar",
|
561
|
+
"username":"bildevisjon",
|
562
|
+
"videosurl":"http:\/\/vimeo.com\/bildevisjon\/videos",
|
563
|
+
"portraits":{
|
564
|
+
"portrait":[
|
565
|
+
{
|
566
|
+
"height":"30",
|
567
|
+
"width":"30",
|
568
|
+
"_content":"http:\/\/images.vimeo.com\/11\/84\/84\/118484458\/118484458_30.jpg"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"height":"75",
|
572
|
+
"width":"75",
|
573
|
+
"_content":"http:\/\/images.vimeo.com\/11\/84\/84\/118484458\/118484458_75.jpg"
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"height":"100",
|
577
|
+
"width":"100",
|
578
|
+
"_content":"http:\/\/images.vimeo.com\/11\/84\/84\/118484458\/118484458_100.jpg"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"height":"300",
|
582
|
+
"width":"300",
|
583
|
+
"_content":"http:\/\/images.vimeo.com\/11\/84\/84\/118484458\/118484458_300.jpg"
|
584
|
+
}
|
585
|
+
]
|
586
|
+
}
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"display_name":"thetonydshow",
|
590
|
+
"id":"2276854",
|
591
|
+
"is_plus":"0",
|
592
|
+
"is_staff":"0",
|
593
|
+
"profileurl":"http:\/\/vimeo.com\/user2276854",
|
594
|
+
"realname":"thetonydshow",
|
595
|
+
"username":"user2276854",
|
596
|
+
"videosurl":"http:\/\/vimeo.com\/user2276854\/videos",
|
597
|
+
"portraits":{
|
598
|
+
"portrait":[
|
599
|
+
{
|
600
|
+
"height":"30",
|
601
|
+
"width":"30",
|
602
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/405\/40580_30.jpg"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"height":"75",
|
606
|
+
"width":"75",
|
607
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/405\/40580_75.jpg"
|
608
|
+
},
|
609
|
+
{
|
610
|
+
"height":"100",
|
611
|
+
"width":"100",
|
612
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/405\/40580_100.jpg"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"height":"300",
|
616
|
+
"width":"300",
|
617
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/405\/40580_300.jpg"
|
618
|
+
}
|
619
|
+
]
|
620
|
+
}
|
621
|
+
},
|
622
|
+
{
|
623
|
+
"display_name":"Rodrigo Pena",
|
624
|
+
"id":"547498",
|
625
|
+
"is_plus":"0",
|
626
|
+
"is_staff":"0",
|
627
|
+
"profileurl":"http:\/\/vimeo.com\/pena",
|
628
|
+
"realname":"Rodrigo Pena",
|
629
|
+
"username":"pena",
|
630
|
+
"videosurl":"http:\/\/vimeo.com\/pena\/videos",
|
631
|
+
"portraits":{
|
632
|
+
"portrait":[
|
633
|
+
{
|
634
|
+
"height":"30",
|
635
|
+
"width":"30",
|
636
|
+
"_content":"http:\/\/images.vimeo.com\/83\/05\/77\/83057711\/83057711_30.jpg"
|
637
|
+
},
|
638
|
+
{
|
639
|
+
"height":"75",
|
640
|
+
"width":"75",
|
641
|
+
"_content":"http:\/\/images.vimeo.com\/83\/05\/77\/83057711\/83057711_75.jpg"
|
642
|
+
},
|
643
|
+
{
|
644
|
+
"height":"100",
|
645
|
+
"width":"100",
|
646
|
+
"_content":"http:\/\/images.vimeo.com\/83\/05\/77\/83057711\/83057711_100.jpg"
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"height":"300",
|
650
|
+
"width":"300",
|
651
|
+
"_content":"http:\/\/images.vimeo.com\/83\/05\/77\/83057711\/83057711_300.jpg"
|
652
|
+
}
|
653
|
+
]
|
654
|
+
}
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"display_name":"Claudine",
|
658
|
+
"id":"137306",
|
659
|
+
"is_plus":"0",
|
660
|
+
"is_staff":"0",
|
661
|
+
"profileurl":"http:\/\/vimeo.com\/claudine",
|
662
|
+
"realname":"Claudine",
|
663
|
+
"username":"claudine",
|
664
|
+
"videosurl":"http:\/\/vimeo.com\/claudine\/videos",
|
665
|
+
"portraits":{
|
666
|
+
"portrait":[
|
667
|
+
{
|
668
|
+
"height":"30",
|
669
|
+
"width":"30",
|
670
|
+
"_content":"http:\/\/90.media.vimeo.com\/d1\/5\/33\/83\/73\/portrait-33837329.jpg"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"height":"75",
|
674
|
+
"width":"75",
|
675
|
+
"_content":"http:\/\/70.media.vimeo.com\/d1\/5\/33\/83\/73\/portrait-33837327.jpg"
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"height":"100",
|
679
|
+
"width":"100",
|
680
|
+
"_content":"http:\/\/00.media.vimeo.com\/d1\/5\/34\/30\/25\/portrait-34302580.jpg"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"height":"300",
|
684
|
+
"width":"300",
|
685
|
+
"_content":"http:\/\/20.media.vimeo.com\/d1\/5\/37\/46\/60\/portrait-37466002.jpg"
|
686
|
+
}
|
687
|
+
]
|
688
|
+
}
|
689
|
+
},
|
690
|
+
{
|
691
|
+
"display_name":"Kristen Borchardt",
|
692
|
+
"id":"215509",
|
693
|
+
"is_plus":"0",
|
694
|
+
"is_staff":"0",
|
695
|
+
"profileurl":"http:\/\/vimeo.com\/krstnb",
|
696
|
+
"realname":"Kristen Borchardt",
|
697
|
+
"username":"krstnb",
|
698
|
+
"videosurl":"http:\/\/vimeo.com\/krstnb\/videos",
|
699
|
+
"portraits":{
|
700
|
+
"portrait":[
|
701
|
+
{
|
702
|
+
"height":"30",
|
703
|
+
"width":"30",
|
704
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"height":"75",
|
708
|
+
"width":"75",
|
709
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
710
|
+
},
|
711
|
+
{
|
712
|
+
"height":"100",
|
713
|
+
"width":"100",
|
714
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"height":"300",
|
718
|
+
"width":"300",
|
719
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
720
|
+
}
|
721
|
+
]
|
722
|
+
}
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"display_name":"Jay Bria",
|
726
|
+
"id":"2274885",
|
727
|
+
"is_plus":"0",
|
728
|
+
"is_staff":"0",
|
729
|
+
"profileurl":"http:\/\/vimeo.com\/user2274885",
|
730
|
+
"realname":"Jay Bria",
|
731
|
+
"username":"user2274885",
|
732
|
+
"videosurl":"http:\/\/vimeo.com\/user2274885\/videos",
|
733
|
+
"portraits":{
|
734
|
+
"portrait":[
|
735
|
+
{
|
736
|
+
"height":"30",
|
737
|
+
"width":"30",
|
738
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/430\/43095_30.jpg"
|
739
|
+
},
|
740
|
+
{
|
741
|
+
"height":"75",
|
742
|
+
"width":"75",
|
743
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/430\/43095_75.jpg"
|
744
|
+
},
|
745
|
+
{
|
746
|
+
"height":"100",
|
747
|
+
"width":"100",
|
748
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/430\/43095_100.jpg"
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"height":"300",
|
752
|
+
"width":"300",
|
753
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/430\/43095_300.jpg"
|
754
|
+
}
|
755
|
+
]
|
756
|
+
}
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"display_name":"eliasee",
|
760
|
+
"id":"1007279",
|
761
|
+
"is_plus":"0",
|
762
|
+
"is_staff":"0",
|
763
|
+
"profileurl":"http:\/\/vimeo.com\/eliasee",
|
764
|
+
"realname":"eliasee",
|
765
|
+
"username":"eliasee",
|
766
|
+
"videosurl":"http:\/\/vimeo.com\/eliasee\/videos",
|
767
|
+
"portraits":{
|
768
|
+
"portrait":[
|
769
|
+
{
|
770
|
+
"height":"30",
|
771
|
+
"width":"30",
|
772
|
+
"_content":"http:\/\/images.vimeo.com\/11\/73\/06\/117306391\/117306391_30.jpg"
|
773
|
+
},
|
774
|
+
{
|
775
|
+
"height":"75",
|
776
|
+
"width":"75",
|
777
|
+
"_content":"http:\/\/images.vimeo.com\/11\/73\/06\/117306391\/117306391_75.jpg"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"height":"100",
|
781
|
+
"width":"100",
|
782
|
+
"_content":"http:\/\/images.vimeo.com\/11\/73\/06\/117306391\/117306391_100.jpg"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"height":"300",
|
786
|
+
"width":"300",
|
787
|
+
"_content":"http:\/\/images.vimeo.com\/11\/73\/06\/117306391\/117306391_300.jpg"
|
788
|
+
}
|
789
|
+
]
|
790
|
+
}
|
791
|
+
},
|
792
|
+
{
|
793
|
+
"display_name":"kayekilla",
|
794
|
+
"id":"76689",
|
795
|
+
"is_plus":"0",
|
796
|
+
"is_staff":"0",
|
797
|
+
"profileurl":"http:\/\/vimeo.com\/kayekilla",
|
798
|
+
"realname":"kayekilla",
|
799
|
+
"username":"kayekilla",
|
800
|
+
"videosurl":"http:\/\/vimeo.com\/kayekilla\/videos",
|
801
|
+
"portraits":{
|
802
|
+
"portrait":[
|
803
|
+
{
|
804
|
+
"height":"30",
|
805
|
+
"width":"30",
|
806
|
+
"_content":"http:\/\/60.media.vimeo.com\/d1\/5\/10\/56\/05\/10560582\/10560582_30.jpg"
|
807
|
+
},
|
808
|
+
{
|
809
|
+
"height":"75",
|
810
|
+
"width":"75",
|
811
|
+
"_content":"http:\/\/00.media.vimeo.com\/d1\/5\/10\/56\/05\/10560582\/10560582_75.jpg"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"height":"100",
|
815
|
+
"width":"100",
|
816
|
+
"_content":"http:\/\/10.media.vimeo.com\/d1\/5\/10\/56\/05\/10560582\/10560582_100.jpg"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"height":"300",
|
820
|
+
"width":"300",
|
821
|
+
"_content":"http:\/\/40.media.vimeo.com\/d1\/5\/10\/56\/05\/10560582\/10560582_300.jpg"
|
822
|
+
}
|
823
|
+
]
|
824
|
+
}
|
825
|
+
},
|
826
|
+
{
|
827
|
+
"display_name":"Mr Chibber",
|
828
|
+
"id":"2232246",
|
829
|
+
"is_plus":"0",
|
830
|
+
"is_staff":"0",
|
831
|
+
"profileurl":"http:\/\/vimeo.com\/chibber",
|
832
|
+
"realname":"Mr Chibber",
|
833
|
+
"username":"chibber",
|
834
|
+
"videosurl":"http:\/\/vimeo.com\/chibber\/videos",
|
835
|
+
"portraits":{
|
836
|
+
"portrait":[
|
837
|
+
{
|
838
|
+
"height":"30",
|
839
|
+
"width":"30",
|
840
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/254\/25401_30.jpg"
|
841
|
+
},
|
842
|
+
{
|
843
|
+
"height":"75",
|
844
|
+
"width":"75",
|
845
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/254\/25401_75.jpg"
|
846
|
+
},
|
847
|
+
{
|
848
|
+
"height":"100",
|
849
|
+
"width":"100",
|
850
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/254\/25401_100.jpg"
|
851
|
+
},
|
852
|
+
{
|
853
|
+
"height":"300",
|
854
|
+
"width":"300",
|
855
|
+
"_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/254\/25401_300.jpg"
|
856
|
+
}
|
857
|
+
]
|
858
|
+
}
|
859
|
+
}
|
860
|
+
]
|
861
|
+
}
|
862
|
+
}
|