vimeo 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (164) hide show
  1. data/.gitignore +3 -0
  2. data/CHANGELOG.rdoc +24 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +322 -0
  5. data/Rakefile +68 -0
  6. data/VERSION.yml +4 -0
  7. data/lib/vimeo/advanced/album.rb +57 -0
  8. data/lib/vimeo/advanced/auth.rb +22 -0
  9. data/lib/vimeo/advanced/base.rb +105 -0
  10. data/lib/vimeo/advanced/channel.rb +58 -0
  11. data/lib/vimeo/advanced/contact.rb +31 -0
  12. data/lib/vimeo/advanced/group.rb +68 -0
  13. data/lib/vimeo/advanced/group_events.rb +25 -0
  14. data/lib/vimeo/advanced/group_forums.rb +19 -0
  15. data/lib/vimeo/advanced/person.rb +48 -0
  16. data/lib/vimeo/advanced/test.rb +36 -0
  17. data/lib/vimeo/advanced/upload.rb +62 -0
  18. data/lib/vimeo/advanced/video.rb +131 -0
  19. data/lib/vimeo/advanced/video_embed.rb +19 -0
  20. data/lib/vimeo/advanced.rb +20 -0
  21. data/lib/vimeo/simple/activity.rb +42 -0
  22. data/lib/vimeo/simple/album.rb +21 -0
  23. data/lib/vimeo/simple/base.rb +10 -0
  24. data/lib/vimeo/simple/channel.rb +21 -0
  25. data/lib/vimeo/simple/group.rb +28 -0
  26. data/lib/vimeo/simple/user.rb +84 -0
  27. data/lib/vimeo/simple/video.rb +14 -0
  28. data/lib/vimeo/simple.rb +14 -0
  29. data/lib/vimeo.rb +10 -0
  30. data/test/fixtures/advanced/album/add_video.json +4 -0
  31. data/test/fixtures/advanced/album/create.json +7 -0
  32. data/test/fixtures/advanced/album/delete.json +4 -0
  33. data/test/fixtures/advanced/album/get_all.json +111 -0
  34. data/test/fixtures/advanced/album/get_videos.json +30 -0
  35. data/test/fixtures/advanced/album/remove_video.json +4 -0
  36. data/test/fixtures/advanced/album/set_description.json +4 -0
  37. data/test/fixtures/advanced/album/set_password.json +4 -0
  38. data/test/fixtures/advanced/album/set_title.json +4 -0
  39. data/test/fixtures/advanced/auth/check_token.json +13 -0
  40. data/test/fixtures/advanced/auth/get_frob.json +5 -0
  41. data/test/fixtures/advanced/auth/get_token.json +13 -0
  42. data/test/fixtures/advanced/channel/add_video.json +4 -0
  43. data/test/fixtures/advanced/channel/get_all.json +1395 -0
  44. data/test/fixtures/advanced/channel/get_info.json +55 -0
  45. data/test/fixtures/advanced/channel/get_moderators.json +45 -0
  46. data/test/fixtures/advanced/channel/get_subscribers.json +44 -0
  47. data/test/fixtures/advanced/channel/get_videos.json +19 -0
  48. data/test/fixtures/advanced/channel/remove_video.json +4 -0
  49. data/test/fixtures/advanced/channel/subscribe.json +4 -0
  50. data/test/fixtures/advanced/channel/unsubscribe.json +4 -0
  51. data/test/fixtures/advanced/contact/get_all.json +117 -0
  52. data/test/fixtures/advanced/contact/get_mutual.json +80 -0
  53. data/test/fixtures/advanced/contact/get_online.json +47 -0
  54. data/test/fixtures/advanced/contact/get_who_added.json +117 -0
  55. data/test/fixtures/advanced/group/add_video.json +4 -0
  56. data/test/fixtures/advanced/group/get_all.json +1556 -0
  57. data/test/fixtures/advanced/group/get_files.json +255 -0
  58. data/test/fixtures/advanced/group/get_info.json +73 -0
  59. data/test/fixtures/advanced/group/get_members.json +862 -0
  60. data/test/fixtures/advanced/group/get_moderators.json +44 -0
  61. data/test/fixtures/advanced/group/get_video_comments.json +96 -0
  62. data/test/fixtures/advanced/group/get_videos.json +102 -0
  63. data/test/fixtures/advanced/group/join.json +4 -0
  64. data/test/fixtures/advanced/group/leave.json +4 -0
  65. data/test/fixtures/advanced/group_events/get_month.json +146 -0
  66. data/test/fixtures/advanced/group_events/get_past.json +146 -0
  67. data/test/fixtures/advanced/group_events/get_upcoming.json +146 -0
  68. data/test/fixtures/advanced/group_forums/get_topic_comments.json +224 -0
  69. data/test/fixtures/advanced/group_forums/get_topics.json +504 -0
  70. data/test/fixtures/advanced/person/add_contact.json +4 -0
  71. data/test/fixtures/advanced/person/add_subscription.json +4 -0
  72. data/test/fixtures/advanced/person/find_by_email.json +9 -0
  73. data/test/fixtures/advanced/person/get_hd_embeds.json +8 -0
  74. data/test/fixtures/advanced/person/get_info.json +21 -0
  75. data/test/fixtures/advanced/person/get_portrait_urls.json +28 -0
  76. data/test/fixtures/advanced/person/remove_contact.json +4 -0
  77. data/test/fixtures/advanced/person/remove_subscription.json +4 -0
  78. data/test/fixtures/advanced/test/echo.json +8 -0
  79. data/test/fixtures/advanced/test/login.json +8 -0
  80. data/test/fixtures/advanced/test/null.json +4 -0
  81. data/test/fixtures/advanced/upload/confirm.json +9 -0
  82. data/test/fixtures/advanced/upload/get_quota.json +16 -0
  83. data/test/fixtures/advanced/upload/get_ticket.json +8 -0
  84. data/test/fixtures/advanced/upload/manifest_to_upload.json +6 -0
  85. data/test/fixtures/advanced/upload/sample_iTunes.mov +0 -0
  86. data/test/fixtures/advanced/upload/verify_manifest.json +11 -0
  87. data/test/fixtures/advanced/video/add_cast.json +4 -0
  88. data/test/fixtures/advanced/video/add_comment.json +7 -0
  89. data/test/fixtures/advanced/video/add_photos.json +4 -0
  90. data/test/fixtures/advanced/video/add_tags.json +4 -0
  91. data/test/fixtures/advanced/video/clear_tags.json +4 -0
  92. data/test/fixtures/advanced/video/delete.json +4 -0
  93. data/test/fixtures/advanced/video/delete_comment.json +4 -0
  94. data/test/fixtures/advanced/video/edit_comment.json +4 -0
  95. data/test/fixtures/advanced/video/get_all.json +30 -0
  96. data/test/fixtures/advanced/video/get_appears_in.json +10 -0
  97. data/test/fixtures/advanced/video/get_by_tag.json +239 -0
  98. data/test/fixtures/advanced/video/get_cast.json +42 -0
  99. data/test/fixtures/advanced/video/get_comments_list.json +52 -0
  100. data/test/fixtures/advanced/video/get_contacts_liked.json +48 -0
  101. data/test/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
  102. data/test/fixtures/advanced/video/get_info.json +246 -0
  103. data/test/fixtures/advanced/video/get_likes.json +32 -0
  104. data/test/fixtures/advanced/video/get_subscriptions.json +241 -0
  105. data/test/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
  106. data/test/fixtures/advanced/video/get_uploaded.json +30 -0
  107. data/test/fixtures/advanced/video/remove_cast.json +4 -0
  108. data/test/fixtures/advanced/video/remove_tag.json +4 -0
  109. data/test/fixtures/advanced/video/search.json +238 -0
  110. data/test/fixtures/advanced/video/set_description.json +4 -0
  111. data/test/fixtures/advanced/video/set_like.json +4 -0
  112. data/test/fixtures/advanced/video/set_privacy.json +4 -0
  113. data/test/fixtures/advanced/video/set_title.json +4 -0
  114. data/test/fixtures/advanced/video_embed/get_presets.json +8 -0
  115. data/test/fixtures/advanced/video_embed/set_preset.json +4 -0
  116. data/test/fixtures/simple/activity/contacts_did.json +1 -0
  117. data/test/fixtures/simple/activity/everyone_did.json +1 -0
  118. data/test/fixtures/simple/activity/happened_to_contacts.json +1 -0
  119. data/test/fixtures/simple/activity/happened_to_user.json +1 -0
  120. data/test/fixtures/simple/activity/user_did.json +1 -0
  121. data/test/fixtures/simple/album/info.json +1 -0
  122. data/test/fixtures/simple/album/videos.json +1 -0
  123. data/test/fixtures/simple/channel/info.json +1 -0
  124. data/test/fixtures/simple/channel/videos.json +1 -0
  125. data/test/fixtures/simple/group/info.json +1 -0
  126. data/test/fixtures/simple/group/users.json +1 -0
  127. data/test/fixtures/simple/group/videos.json +1 -0
  128. data/test/fixtures/simple/user/albums.json +1 -0
  129. data/test/fixtures/simple/user/all_videos.json +1 -0
  130. data/test/fixtures/simple/user/appears_in.json +1 -0
  131. data/test/fixtures/simple/user/channels.json +1 -0
  132. data/test/fixtures/simple/user/contacts_like.json +1 -0
  133. data/test/fixtures/simple/user/contacts_videos.json +1 -0
  134. data/test/fixtures/simple/user/groups.json +1 -0
  135. data/test/fixtures/simple/user/info.json +1 -0
  136. data/test/fixtures/simple/user/likes.json +1 -0
  137. data/test/fixtures/simple/user/subscriptions.json +1 -0
  138. data/test/fixtures/simple/user/videos.json +1 -0
  139. data/test/fixtures/simple/video/info.json +1 -0
  140. data/test/test_helper.rb +50 -0
  141. data/test/vimeo/advanced/album_test.rb +88 -0
  142. data/test/vimeo/advanced/auth_test.rb +37 -0
  143. data/test/vimeo/advanced/base_test.rb +24 -0
  144. data/test/vimeo/advanced/channels_test.rb +79 -0
  145. data/test/vimeo/advanced/contacts_test.rb +40 -0
  146. data/test/vimeo/advanced/group_events_test.rb +33 -0
  147. data/test/vimeo/advanced/group_forums_test.rb +26 -0
  148. data/test/vimeo/advanced/groups_test.rb +82 -0
  149. data/test/vimeo/advanced/person_test.rb +68 -0
  150. data/test/vimeo/advanced/test_test.rb +33 -0
  151. data/test/vimeo/advanced/upload_test.rb +50 -0
  152. data/test/vimeo/advanced/videos_embed_test.rb +26 -0
  153. data/test/vimeo/advanced/videos_test.rb +203 -0
  154. data/test/vimeo/advanced_test.rb +0 -0
  155. data/test/vimeo/simple/activity_test.rb +60 -0
  156. data/test/vimeo/simple/album_test.rb +31 -0
  157. data/test/vimeo/simple/channel_test.rb +31 -0
  158. data/test/vimeo/simple/group_test.rb +41 -0
  159. data/test/vimeo/simple/user_test.rb +112 -0
  160. data/test/vimeo/simple/video_test.rb +22 -0
  161. data/test/vimeo/simple_test.rb +0 -0
  162. data/test/vimeo_test.rb +0 -0
  163. data/vimeo.gemspec +244 -0
  164. metadata +303 -0
@@ -0,0 +1,1395 @@
1
+ {
2
+ "generated_in":"4.5267",
3
+ "stat":"ok",
4
+ "channels":{
5
+ "on_this_page":"25",
6
+ "page":"1",
7
+ "perpage":"25",
8
+ "total":"44624",
9
+ "channel":[
10
+ {
11
+ "id":"778",
12
+ "is_featured":"1",
13
+ "is_sponsored":"0",
14
+ "name":"The Vimeo HD Channel",
15
+ "description":"Vimeo now supports HD in 1280x720! To create: upload a 1280x720 video and it will automatically convert to High Definition. If you have an older computer,
16
+ let the video buffer before watching. Read the FAQ at http:\/\/vimeo.com\/help\/faq\/hd.\n\nThis channel is moderated by the Vimeo Staff. If you want your HD video added to this channel,
17
+ put a link in the shoutbox and we'll check it out.",
18
+ "created_on":"2007-10-17 10:06:07",
19
+ "modified_on":"2009-09-24 19:41:48",
20
+ "total_videos":"1021",
21
+ "total_subscribers":"14733",
22
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112957395.jpg",
23
+ "badge_url":"http:\/\/channelbadge.vimeo.com.s3.amazonaws.com\/000\/803_300.jpg",
24
+ "url":"http:\/\/vimeo.com\/channels\/hd",
25
+ "layout":"gallery",
26
+ "theme":"vimeoland",
27
+ "privacy":"anybody",
28
+ "featured_description":{
29
+ "short":"Vimeo,
30
+ in HD",
31
+ "_content":"Bringing you the best HD videos on Vimeo."
32
+ },
33
+ "creator":{
34
+ "display_name":"Blake Whitman",
35
+ "id":"151382",
36
+ "is_plus":"1",
37
+ "is_staff":"1",
38
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
39
+ "realname":"Blake Whitman",
40
+ "username":"blakewhitman",
41
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
42
+ "portraits":{
43
+ "portrait":[
44
+ {
45
+ "height":"30",
46
+ "width":"30",
47
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
48
+ },
49
+ {
50
+ "height":"75",
51
+ "width":"75",
52
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
53
+ },
54
+ {
55
+ "height":"100",
56
+ "width":"100",
57
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
58
+ },
59
+ {
60
+ "height":"300",
61
+ "width":"300",
62
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
63
+ }
64
+ ]
65
+ }
66
+ }
67
+ },
68
+ {
69
+ "id":"927",
70
+ "is_featured":"1",
71
+ "is_sponsored":"0",
72
+ "name":"Vimeo Staff Picks",
73
+ "description":"We are the Staff. These are the videos we like the bestest. Check em out!",
74
+ "created_on":"2007-10-23 13:00:43",
75
+ "modified_on":"2009-09-24 19:17:29",
76
+ "total_videos":"1259",
77
+ "total_subscribers":"5656",
78
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112957395.jpg",
79
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957409.jpg",
80
+ "url":"http:\/\/vimeo.com\/channels\/staffpicks",
81
+ "layout":"grid",
82
+ "theme":"vimeoland",
83
+ "privacy":"anybody",
84
+ "featured_description":{
85
+ "short":"Videos we like the bestest on Vimeo.",
86
+ "_content":"Videos we like the bestest on Vimeo."
87
+ },
88
+ "creator":{
89
+ "display_name":"Blake Whitman",
90
+ "id":"151382",
91
+ "is_plus":"1",
92
+ "is_staff":"1",
93
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
94
+ "realname":"Blake Whitman",
95
+ "username":"blakewhitman",
96
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
97
+ "portraits":{
98
+ "portrait":[
99
+ {
100
+ "height":"30",
101
+ "width":"30",
102
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
103
+ },
104
+ {
105
+ "height":"75",
106
+ "width":"75",
107
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
108
+ },
109
+ {
110
+ "height":"100",
111
+ "width":"100",
112
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
113
+ },
114
+ {
115
+ "height":"300",
116
+ "width":"300",
117
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
118
+ }
119
+ ]
120
+ }
121
+ }
122
+ },
123
+ {
124
+ "id":"2981",
125
+ "is_featured":"1",
126
+ "is_sponsored":"0",
127
+ "name":"Everything Animated",
128
+ "description":"A channel for the admirers of any kind of animation",
129
+ "created_on":"2007-12-09 04:09:54",
130
+ "modified_on":"2009-09-24 18:13:14",
131
+ "total_videos":"1134",
132
+ "total_subscribers":"3509",
133
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112958923.jpg",
134
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112962264.jpg",
135
+ "url":"http:\/\/vimeo.com\/channels\/everythinganimated",
136
+ "layout":"stream",
137
+ "theme":"vader",
138
+ "privacy":"anybody",
139
+ "featured_description":{
140
+ "short":""
141
+ },
142
+ "creator":{
143
+ "display_name":"Aziz K.",
144
+ "id":"221103",
145
+ "is_plus":"0",
146
+ "is_staff":"0",
147
+ "profileurl":"http:\/\/vimeo.com\/azizk",
148
+ "realname":"Aziz K.",
149
+ "username":"azizk",
150
+ "videosurl":"http:\/\/vimeo.com\/azizk\/videos",
151
+ "portraits":{
152
+ "portrait":[
153
+ {
154
+ "height":"30",
155
+ "width":"30",
156
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/18\/69\/11\/18691120\/18691120_30.jpg"
157
+ },
158
+ {
159
+ "height":"75",
160
+ "width":"75",
161
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/18\/69\/11\/18691120\/18691120_75.jpg"
162
+ },
163
+ {
164
+ "height":"100",
165
+ "width":"100",
166
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/18\/69\/11\/18691120\/18691120_100.jpg"
167
+ },
168
+ {
169
+ "height":"300",
170
+ "width":"300",
171
+ "_content":"http:\/\/40.media.vimeo.com\/d1\/5\/18\/69\/11\/18691120\/18691120_300.jpg"
172
+ }
173
+ ]
174
+ }
175
+ }
176
+ },
177
+ {
178
+ "id":"2518",
179
+ "is_featured":"1",
180
+ "is_sponsored":"0",
181
+ "name":"Shoot for the Edit",
182
+ "description":"This channel is for sharing editing and shooting techniques for beginning and advanced video producers.",
183
+ "created_on":"2007-12-01 12:22:53",
184
+ "modified_on":"2009-09-24 18:15:37",
185
+ "total_videos":"44",
186
+ "total_subscribers":"2574",
187
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112959562.png",
188
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957415.jpg",
189
+ "url":"http:\/\/vimeo.com\/channels\/theedit",
190
+ "layout":"grid",
191
+ "theme":"vader",
192
+ "privacy":"anybody",
193
+ "featured_description":{
194
+ "short":""
195
+ },
196
+ "creator":{
197
+ "display_name":"Charlie McCarthy",
198
+ "id":"153554",
199
+ "is_plus":"1",
200
+ "is_staff":"0",
201
+ "profileurl":"http:\/\/vimeo.com\/cmccarthy",
202
+ "realname":"Charlie McCarthy",
203
+ "username":"cmccarthy",
204
+ "videosurl":"http:\/\/vimeo.com\/cmccarthy\/videos",
205
+ "portraits":{
206
+ "portrait":[
207
+ {
208
+ "height":"30",
209
+ "width":"30",
210
+ "_content":"http:\/\/70.media.vimeo.com\/d1\/5\/34\/32\/portrait-3432837.jpg"
211
+ },
212
+ {
213
+ "height":"75",
214
+ "width":"75",
215
+ "_content":"http:\/\/30.media.vimeo.com\/d1\/5\/34\/32\/portrait-3432833.jpg"
216
+ },
217
+ {
218
+ "height":"100",
219
+ "width":"100",
220
+ "_content":"http:\/\/20.media.vimeo.com\/d1\/5\/34\/32\/portrait-3432832.jpg"
221
+ },
222
+ {
223
+ "height":"300",
224
+ "width":"300",
225
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/34\/32\/portrait-3432829.jpg"
226
+ }
227
+ ]
228
+ }
229
+ }
230
+ },
231
+ {
232
+ "id":"25080",
233
+ "is_featured":"1",
234
+ "is_sponsored":"0",
235
+ "name":"The White House",
236
+ "description":"This is the official White House channel on Vimeo.\u00a0 Comments posted on and messages received through official White House pages are subject to the Presidential Records Act and may be archived.\u00a0 Learn more at http:\/\/www.WhiteHouse.gov\/privacy.",
237
+ "created_on":"2008-12-09 16:49:29",
238
+ "modified_on":"2009-09-24 16:51:45",
239
+ "total_videos":"303",
240
+ "total_subscribers":"2554",
241
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112957451.jpg",
242
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957453.jpg",
243
+ "url":"http:\/\/vimeo.com\/channels\/whitehouse",
244
+ "layout":"stream",
245
+ "theme":"whitehouse",
246
+ "privacy":"anybody",
247
+ "featured_description":{
248
+ "short":""
249
+ },
250
+ "creator":{
251
+ "display_name":"White House",
252
+ "id":"1008238",
253
+ "is_plus":"1",
254
+ "is_staff":"0",
255
+ "profileurl":"http:\/\/vimeo.com\/whitehousevideos",
256
+ "realname":"White House",
257
+ "username":"whitehousevideos",
258
+ "videosurl":"http:\/\/vimeo.com\/whitehousevideos\/videos",
259
+ "portraits":{
260
+ "portrait":[
261
+ {
262
+ "height":"30",
263
+ "width":"30",
264
+ "_content":"http:\/\/images.vimeo.com\/11\/50\/13\/115013786\/115013786_30.jpg"
265
+ },
266
+ {
267
+ "height":"75",
268
+ "width":"75",
269
+ "_content":"http:\/\/images.vimeo.com\/11\/50\/13\/115013786\/115013786_75.jpg"
270
+ },
271
+ {
272
+ "height":"100",
273
+ "width":"100",
274
+ "_content":"http:\/\/images.vimeo.com\/11\/50\/13\/115013786\/115013786_100.jpg"
275
+ },
276
+ {
277
+ "height":"300",
278
+ "width":"300",
279
+ "_content":"http:\/\/images.vimeo.com\/11\/50\/13\/115013786\/115013786_300.jpg"
280
+ }
281
+ ]
282
+ }
283
+ }
284
+ },
285
+ {
286
+ "id":"1575",
287
+ "is_featured":"1",
288
+ "is_sponsored":"0",
289
+ "name":"Music Videos",
290
+ "description":"Internet didn't kill the video star,
291
+ it creates them. Music videos on Vimeo. \n\nIF YOU LIKE THIS CHANNEL please check out my other site - www.videomilitia.com - A new community-based blog and social network for music videos,
292
+ commercials,
293
+ and films with Facebook integration. No need for a new username and password,
294
+ simply use your Facebook to login right away. You can also add your videos to the community pool. CHECK IT OUT!\n\nNOTE: I don't ever look at the Shout Box so please contact me directy.",
295
+ "created_on":"2007-11-11 16:37:08",
296
+ "modified_on":"2009-09-24 17:13:32",
297
+ "total_videos":"179",
298
+ "total_subscribers":"2467",
299
+ "logo_url":"http:\/\/40.media.vimeo.com\/d1\/5\/23\/23\/82\/channellogo-23238204.png",
300
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957411.jpg",
301
+ "url":"http:\/\/vimeo.com\/channels\/musicvideos",
302
+ "layout":"stream",
303
+ "theme":"tuxedo",
304
+ "privacy":"anybody",
305
+ "featured_description":{
306
+ "short":"Internet didn't kill the video star,
307
+ it creates them. Music videos on Vimeo. Please feel free to submit videos.",
308
+ "_content":"Internet didn't kill the video star,
309
+ it creates them. Music videos on Vimeo. Please feel free to submit videos."
310
+ },
311
+ "creator":{
312
+ "display_name":"Keith",
313
+ "id":"290596",
314
+ "is_plus":"1",
315
+ "is_staff":"0",
316
+ "profileurl":"http:\/\/vimeo.com\/onelungfilms",
317
+ "realname":"Keith",
318
+ "username":"onelungfilms",
319
+ "videosurl":"http:\/\/vimeo.com\/onelungfilms\/videos",
320
+ "portraits":{
321
+ "portrait":[
322
+ {
323
+ "height":"30",
324
+ "width":"30",
325
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/17\/79\/69\/17796925\/17796925_30.jpg"
326
+ },
327
+ {
328
+ "height":"75",
329
+ "width":"75",
330
+ "_content":"http:\/\/20.media.vimeo.com\/d1\/5\/17\/79\/69\/17796925\/17796925_75.jpg"
331
+ },
332
+ {
333
+ "height":"100",
334
+ "width":"100",
335
+ "_content":"http:\/\/40.media.vimeo.com\/d1\/5\/17\/79\/69\/17796925\/17796925_100.jpg"
336
+ },
337
+ {
338
+ "height":"300",
339
+ "width":"300",
340
+ "_content":"http:\/\/70.media.vimeo.com\/d1\/5\/17\/79\/69\/17796925\/17796925_300.jpg"
341
+ }
342
+ ]
343
+ }
344
+ }
345
+ },
346
+ {
347
+ "id":"8237",
348
+ "is_featured":"1",
349
+ "is_sponsored":"0",
350
+ "name":"Film School - Filmmaking",
351
+ "description":"This is the free Film School of www.cinemacuteo.com which are published videos tutorials to make your film projects,
352
+ from the special effects,
353
+ to the steadycam,
354
+ lights,
355
+ cranes. Filmmaking demystifies. Also visit the free Film School Group at: http:\/\/www.vimeo.com\/groups\/filmschool\nSubscribe,
356
+ you can do it!",
357
+ "created_on":"2008-04-14 00:25:43",
358
+ "modified_on":"2009-09-24 19:47:49",
359
+ "total_videos":"393",
360
+ "total_subscribers":"2204",
361
+ "logo_url":"http:\/\/80.media.vimeo.com\/d1\/5\/83\/26\/39\/channellogo-83263958.png",
362
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112975412.png",
363
+ "url":"http:\/\/vimeo.com\/channels\/filmschool",
364
+ "layout":"stream",
365
+ "theme":"greenclean",
366
+ "privacy":"anybody",
367
+ "featured_description":{
368
+ "short":""
369
+ },
370
+ "creator":{
371
+ "display_name":"Tommy Rodriguez",
372
+ "id":"324433",
373
+ "is_plus":"0",
374
+ "is_staff":"0",
375
+ "profileurl":"http:\/\/vimeo.com\/tommyrodriguez",
376
+ "realname":"Tommy Rodriguez",
377
+ "username":"tommyrodriguez",
378
+ "videosurl":"http:\/\/vimeo.com\/tommyrodriguez\/videos",
379
+ "portraits":{
380
+ "portrait":[
381
+ {
382
+ "height":"30",
383
+ "width":"30",
384
+ "_content":"http:\/\/80.media.vimeo.com\/d1\/5\/21\/46\/95\/21469582\/21469582_30.jpg"
385
+ },
386
+ {
387
+ "height":"75",
388
+ "width":"75",
389
+ "_content":"http:\/\/40.media.vimeo.com\/d1\/5\/21\/46\/95\/21469582\/21469582_75.jpg"
390
+ },
391
+ {
392
+ "height":"100",
393
+ "width":"100",
394
+ "_content":"http:\/\/60.media.vimeo.com\/d1\/5\/21\/46\/95\/21469582\/21469582_100.jpg"
395
+ },
396
+ {
397
+ "height":"300",
398
+ "width":"300",
399
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/21\/46\/95\/21469582\/21469582_300.jpg"
400
+ }
401
+ ]
402
+ }
403
+ }
404
+ },
405
+ {
406
+ "id":"1341",
407
+ "is_featured":"1",
408
+ "is_sponsored":"0",
409
+ "name":"Slowmotion & Timelapse Theater",
410
+ "description":"A channel for Slowmotion & Timelapse videos.\nCheck out the time lapse message board http:\/\/www.timescapes.org\/phpBB3\/index.php\nSlowmo instructions for Vegas http:\/\/vimeo.com\/groups\/TLSM4Beginners\/forumthread:93",
411
+ "created_on":"2007-11-05 12:14:24",
412
+ "modified_on":"2009-09-24 18:58:33",
413
+ "total_videos":"2744",
414
+ "total_subscribers":"2149",
415
+ "logo_url":"http:\/\/00.media.vimeo.com\/d1\/5\/28\/19\/59\/channellogo-28195920.gif",
416
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957413.jpg",
417
+ "url":"http:\/\/vimeo.com\/channels\/1341",
418
+ "layout":"stream",
419
+ "theme":"standard",
420
+ "privacy":"anybody",
421
+ "featured_description":{
422
+ "short":"Awesome slowmotion and timelapse videos!",
423
+ "_content":"Awesome slowmotion and timelapse videos!"
424
+ },
425
+ "creator":{
426
+ "display_name":"Lucasberg (Joey)",
427
+ "id":"277672",
428
+ "is_plus":"1",
429
+ "is_staff":"0",
430
+ "profileurl":"http:\/\/vimeo.com\/lucasberg",
431
+ "realname":"Lucasberg (Joey)",
432
+ "username":"lucasberg",
433
+ "videosurl":"http:\/\/vimeo.com\/lucasberg\/videos",
434
+ "portraits":{
435
+ "portrait":[
436
+ {
437
+ "height":"30",
438
+ "width":"30",
439
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/11\/80\/45\/11804577\/11804577_30.jpg"
440
+ },
441
+ {
442
+ "height":"75",
443
+ "width":"75",
444
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/11\/80\/45\/11804577\/11804577_75.jpg"
445
+ },
446
+ {
447
+ "height":"100",
448
+ "width":"100",
449
+ "_content":"http:\/\/60.media.vimeo.com\/d1\/5\/11\/80\/45\/11804577\/11804577_100.jpg"
450
+ },
451
+ {
452
+ "height":"300",
453
+ "width":"300",
454
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/11\/80\/45\/11804577\/11804577_300.jpg"
455
+ }
456
+ ]
457
+ }
458
+ }
459
+ },
460
+ {
461
+ "id":"707",
462
+ "is_featured":"1",
463
+ "is_sponsored":"0",
464
+ "name":"Canon HV Channel",
465
+ "description":"You will find in the channel HD video created on the Canon HV20\/30\/40 cameras.\n\nYou want you video to be seen in this channel? Make sure you tag it properly: HV20,
466
+ HV30 or HV40 and HD are required tags for easy finding!\n\nPlease check the Vimeo CanonHV group for more video\/discussion: http:\/\/vimeo.com\/groups\/canonhv",
467
+ "created_on":"2007-10-14 19:39:44",
468
+ "modified_on":"2009-09-24 19:12:31",
469
+ "total_videos":"5550",
470
+ "total_subscribers":"2119",
471
+ "logo_url":"http:\/\/90.media.vimeo.com\/d1\/5\/53\/57\/88\/channellogo-53578859.gif",
472
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957467.jpg",
473
+ "url":"http:\/\/vimeo.com\/channels\/hv20",
474
+ "layout":"stream",
475
+ "theme":"standard",
476
+ "privacy":"anybody",
477
+ "featured_description":{
478
+ "short":""
479
+ },
480
+ "creator":{
481
+ "display_name":"Bernard Maltais",
482
+ "id":"274250",
483
+ "is_plus":"0",
484
+ "is_staff":"0",
485
+ "profileurl":"http:\/\/vimeo.com\/user274250",
486
+ "realname":"Bernard Maltais",
487
+ "username":"user274250",
488
+ "videosurl":"http:\/\/vimeo.com\/user274250\/videos",
489
+ "portraits":{
490
+ "portrait":[
491
+ {
492
+ "height":"30",
493
+ "width":"30",
494
+ "_content":"http:\/\/70.media.vimeo.com\/d1\/5\/10\/39\/70\/10397011\/10397011_30.jpg"
495
+ },
496
+ {
497
+ "height":"75",
498
+ "width":"75",
499
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/10\/39\/70\/10397011\/10397011_75.jpg"
500
+ },
501
+ {
502
+ "height":"100",
503
+ "width":"100",
504
+ "_content":"http:\/\/30.media.vimeo.com\/d1\/5\/10\/39\/70\/10397011\/10397011_100.jpg"
505
+ },
506
+ {
507
+ "height":"300",
508
+ "width":"300",
509
+ "_content":"http:\/\/60.media.vimeo.com\/d1\/5\/10\/39\/70\/10397011\/10397011_300.jpg"
510
+ }
511
+ ]
512
+ }
513
+ }
514
+ },
515
+ {
516
+ "id":"749",
517
+ "is_featured":"0",
518
+ "is_sponsored":"0",
519
+ "name":"Experimental Motion Graphics",
520
+ "description":"",
521
+ "created_on":"2007-10-16 09:05:50",
522
+ "modified_on":"2009-09-24 17:11:14",
523
+ "total_videos":"746",
524
+ "total_subscribers":"2072",
525
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112960449.jpg",
526
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112960443.jpg",
527
+ "url":"http:\/\/vimeo.com\/channels\/motiongraphics",
528
+ "layout":"stream",
529
+ "theme":"vader",
530
+ "privacy":"anybody",
531
+ "creator":{
532
+ "display_name":"Josue Iba\u00f1ez",
533
+ "id":"223121",
534
+ "is_plus":"0",
535
+ "is_staff":"0",
536
+ "profileurl":"http:\/\/vimeo.com\/joystickmedia",
537
+ "realname":"Josue Iba\u00f1ez",
538
+ "username":"joystickmedia",
539
+ "videosurl":"http:\/\/vimeo.com\/joystickmedia\/videos",
540
+ "portraits":{
541
+ "portrait":[
542
+ {
543
+ "height":"30",
544
+ "width":"30",
545
+ "_content":"http:\/\/40.media.vimeo.com\/d1\/5\/32\/89\/portrait-3289364.jpg"
546
+ },
547
+ {
548
+ "height":"75",
549
+ "width":"75",
550
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/32\/89\/portrait-3289359.jpg"
551
+ },
552
+ {
553
+ "height":"100",
554
+ "width":"100",
555
+ "_content":"http:\/\/70.media.vimeo.com\/d1\/5\/32\/89\/portrait-3289357.jpg"
556
+ },
557
+ {
558
+ "height":"300",
559
+ "width":"300",
560
+ "_content":"http:\/\/20.media.vimeo.com\/d1\/5\/32\/89\/portrait-3289352.jpg"
561
+ }
562
+ ]
563
+ }
564
+ }
565
+ },
566
+ {
567
+ "id":"5449",
568
+ "is_featured":"1",
569
+ "is_sponsored":"0",
570
+ "name":"Documentary Film",
571
+ "description":"A place for Vimeo's documentaries including full documentaries,
572
+ single chapters,
573
+ or extended trailers,
574
+ over 3 minutes in length.",
575
+ "created_on":"2008-02-18 00:09:21",
576
+ "modified_on":"2009-09-24 14:27:46",
577
+ "total_videos":"540",
578
+ "total_subscribers":"1999",
579
+ "logo_url":"http:\/\/90.media.vimeo.com\/d1\/5\/46\/80\/56\/channellogo-46805689.jpg",
580
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957445.jpg",
581
+ "url":"http:\/\/vimeo.com\/channels\/documentaryfilm",
582
+ "layout":"stream",
583
+ "theme":"standard",
584
+ "privacy":"anybody",
585
+ "featured_description":{
586
+ "short":"Documentaries,
587
+ Documentaries,
588
+ Documentaries,
589
+ Documentaries!",
590
+ "_content":"Documentaries,
591
+ Documentaries,
592
+ Documentaries,
593
+ Documentaries!"
594
+ },
595
+ "creator":{
596
+ "display_name":"Brian Van Peski",
597
+ "id":"324440",
598
+ "is_plus":"1",
599
+ "is_staff":"0",
600
+ "profileurl":"http:\/\/vimeo.com\/bvanpeski",
601
+ "realname":"Brian Van Peski",
602
+ "username":"bvanpeski",
603
+ "videosurl":"http:\/\/vimeo.com\/bvanpeski\/videos",
604
+ "portraits":{
605
+ "portrait":[
606
+ {
607
+ "height":"30",
608
+ "width":"30",
609
+ "_content":"http:\/\/30.media.vimeo.com\/d1\/5\/29\/40\/15\/portrait-29401523.jpg"
610
+ },
611
+ {
612
+ "height":"75",
613
+ "width":"75",
614
+ "_content":"http:\/\/60.media.vimeo.com\/d1\/5\/29\/39\/78\/portrait-29397886.jpg"
615
+ },
616
+ {
617
+ "height":"100",
618
+ "width":"100",
619
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/29\/72\/48\/portrait-29724809.jpg"
620
+ },
621
+ {
622
+ "height":"300",
623
+ "width":"300",
624
+ "_content":"http:\/\/60.media.vimeo.com\/d1\/5\/29\/77\/54\/portrait-29775406.jpg"
625
+ }
626
+ ]
627
+ }
628
+ }
629
+ },
630
+ {
631
+ "id":"17068",
632
+ "is_featured":"1",
633
+ "is_sponsored":"0",
634
+ "name":"01SHORTFILM ______ Only the best,
635
+ international,
636
+ award-winning,
637
+ CINEMATIC shortfilms",
638
+ "description":"______________________________________\n______________________________________\n\nLooking for more experimental short films? \n(((((( vimeo.com\/channels\/01shortfilmX ))))))\n\n______________________________________\n______________________________________\n\n\nIs your work suitable for this channel? PM the 01VideoLab the link to your short film on Vimeo,
639
+ and we'll review it!\n\n______________________________________\n______________________________________",
640
+ "created_on":"2008-08-20 08:42:19",
641
+ "modified_on":"2009-09-24 13:46:05",
642
+ "total_videos":"240",
643
+ "total_subscribers":"1682",
644
+ "logo_url":"http:\/\/bitcast.vimeo.com\/vimeo\/channellogos\/channellogo-112937043.jpg?e=1253839885&h=9f4d93436d45a5a5309acc88b9449ad0",
645
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957598.jpg",
646
+ "url":"http:\/\/vimeo.com\/channels\/01shortfilm",
647
+ "layout":"grid",
648
+ "theme":"tuxedo",
649
+ "privacy":"anybody",
650
+ "featured_description":{
651
+ "short":""
652
+ },
653
+ "creator":{
654
+ "display_name":"01VideoLab",
655
+ "id":"509063",
656
+ "is_plus":"0",
657
+ "is_staff":"0",
658
+ "profileurl":"http:\/\/vimeo.com\/the01videolab",
659
+ "realname":"01VideoLab",
660
+ "username":"the01videolab",
661
+ "videosurl":"http:\/\/vimeo.com\/the01videolab\/videos",
662
+ "portraits":{
663
+ "portrait":[
664
+ {
665
+ "height":"30",
666
+ "width":"30",
667
+ "_content":"http:\/\/images.vimeo.com\/11\/00\/99\/110099378\/110099378_30.jpg"
668
+ },
669
+ {
670
+ "height":"75",
671
+ "width":"75",
672
+ "_content":"http:\/\/images.vimeo.com\/11\/00\/99\/110099378\/110099378_75.jpg"
673
+ },
674
+ {
675
+ "height":"100",
676
+ "width":"100",
677
+ "_content":"http:\/\/images.vimeo.com\/11\/00\/99\/110099378\/110099378_100.jpg"
678
+ },
679
+ {
680
+ "height":"300",
681
+ "width":"300",
682
+ "_content":"http:\/\/images.vimeo.com\/11\/00\/99\/110099378\/110099378_300.jpg"
683
+ }
684
+ ]
685
+ }
686
+ }
687
+ },
688
+ {
689
+ "id":"5479",
690
+ "is_featured":"1",
691
+ "is_sponsored":"0",
692
+ "name":"VIDEO ART",
693
+ "description":"THE BEST OF:\n- VIDEO ART \n- DIGITAL ART \n- INTERACTIVE ART\n\nCurrrently featured artist: Sini Haapalinna!\n\n>>>>>>>>>>To be considered for this channel,
694
+ email me at Doriancarlossensi(...)email.de,
695
+ providing the links to your 5 videos!",
696
+ "created_on":"2008-02-18 17:21:55",
697
+ "modified_on":"2009-09-24 18:57:49",
698
+ "total_videos":"255",
699
+ "total_subscribers":"1580",
700
+ "logo_url":"http:\/\/40.media.vimeo.com\/d1\/5\/39\/46\/30\/channellogo-39463014.jpg",
701
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112959889.jpg",
702
+ "url":"http:\/\/vimeo.com\/channels\/videoart",
703
+ "layout":"stream",
704
+ "theme":"tuxedo",
705
+ "privacy":"anybody",
706
+ "featured_description":{
707
+ "short":""
708
+ },
709
+ "creator":{
710
+ "display_name":"Dorian Carlos Sensi",
711
+ "id":"304873",
712
+ "is_plus":"1",
713
+ "is_staff":"0",
714
+ "profileurl":"http:\/\/vimeo.com\/dorian",
715
+ "realname":"Dorian Carlos Sensi",
716
+ "username":"dorian",
717
+ "videosurl":"http:\/\/vimeo.com\/dorian\/videos",
718
+ "portraits":{
719
+ "portrait":[
720
+ {
721
+ "height":"30",
722
+ "width":"30",
723
+ "_content":"http:\/\/images.vimeo.com\/11\/83\/23\/118323827\/118323827_30.jpg"
724
+ },
725
+ {
726
+ "height":"75",
727
+ "width":"75",
728
+ "_content":"http:\/\/images.vimeo.com\/11\/83\/23\/118323827\/118323827_75.jpg"
729
+ },
730
+ {
731
+ "height":"100",
732
+ "width":"100",
733
+ "_content":"http:\/\/images.vimeo.com\/11\/83\/23\/118323827\/118323827_100.jpg"
734
+ },
735
+ {
736
+ "height":"300",
737
+ "width":"300",
738
+ "_content":"http:\/\/images.vimeo.com\/11\/83\/23\/118323827\/118323827_300.jpg"
739
+ }
740
+ ]
741
+ }
742
+ }
743
+ },
744
+ {
745
+ "id":"7963",
746
+ "is_featured":"0",
747
+ "is_sponsored":"0",
748
+ "name":"Vimeo Best AfterEffects Work",
749
+ "description":"A Channel where you can find the Best works Done in After Effects!\nIf you are into After Effects join this channel and contribute for it !",
750
+ "created_on":"2008-04-08 20:26:55",
751
+ "modified_on":"2009-09-24 16:32:37",
752
+ "total_videos":"212",
753
+ "total_subscribers":"1446",
754
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112957395.jpg",
755
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957438.jpg",
756
+ "url":"http:\/\/vimeo.com\/channels\/aework",
757
+ "layout":"stream",
758
+ "theme":"vimeoland",
759
+ "privacy":"anybody",
760
+ "creator":{
761
+ "display_name":"Tiago Pierotti",
762
+ "id":"309082",
763
+ "is_plus":"0",
764
+ "is_staff":"0",
765
+ "profileurl":"http:\/\/vimeo.com\/tiagop",
766
+ "realname":"Tiago Pierotti",
767
+ "username":"tiagop",
768
+ "videosurl":"http:\/\/vimeo.com\/tiagop\/videos",
769
+ "portraits":{
770
+ "portrait":[
771
+ {
772
+ "height":"30",
773
+ "width":"30",
774
+ "_content":"http:\/\/30.media.vimeo.com\/d1\/5\/29\/39\/20\/portrait-29392063.jpg"
775
+ },
776
+ {
777
+ "height":"75",
778
+ "width":"75",
779
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/39\/67\/portrait-29396790.jpg"
780
+ },
781
+ {
782
+ "height":"100",
783
+ "width":"100",
784
+ "_content":"http:\/\/20.media.vimeo.com\/d1\/5\/29\/97\/38\/portrait-29973822.jpg"
785
+ },
786
+ {
787
+ "height":"300",
788
+ "width":"300",
789
+ "_content":"http:\/\/60.media.vimeo.com\/d1\/5\/29\/50\/13\/portrait-29501306.jpg"
790
+ }
791
+ ]
792
+ }
793
+ }
794
+ },
795
+ {
796
+ "id":"216",
797
+ "is_featured":"1",
798
+ "is_sponsored":"0",
799
+ "name":"Photomotion",
800
+ "description":"photos in motion",
801
+ "created_on":"2007-09-25 18:27:57",
802
+ "modified_on":"2009-09-24 14:06:37",
803
+ "total_videos":"92",
804
+ "total_subscribers":"1332",
805
+ "logo_url":"http:\/\/20.media.vimeo.com\/d1\/5\/95\/31\/channellogo-9531502.jpg",
806
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112957465.jpg",
807
+ "url":"http:\/\/vimeo.com\/channels\/photomotion",
808
+ "layout":"stream",
809
+ "theme":"standard",
810
+ "privacy":"anybody",
811
+ "featured_description":{
812
+ "short":"Photos in motion. From a hot badass named Annatruus.",
813
+ "_content":"Photos in motion. From a hot badass named Annatruus."
814
+ },
815
+ "creator":{
816
+ "display_name":"annatruus",
817
+ "id":"248334",
818
+ "is_plus":"0",
819
+ "is_staff":"0",
820
+ "profileurl":"http:\/\/vimeo.com\/annatruus",
821
+ "realname":"annatruus",
822
+ "username":"annatruus",
823
+ "videosurl":"http:\/\/vimeo.com\/annatruus\/videos",
824
+ "portraits":{
825
+ "portrait":[
826
+ {
827
+ "height":"30",
828
+ "width":"30",
829
+ "_content":"http:\/\/images.vimeo.com\/11\/84\/70\/118470017\/118470017_30.jpg"
830
+ },
831
+ {
832
+ "height":"75",
833
+ "width":"75",
834
+ "_content":"http:\/\/images.vimeo.com\/11\/84\/70\/118470017\/118470017_75.jpg"
835
+ },
836
+ {
837
+ "height":"100",
838
+ "width":"100",
839
+ "_content":"http:\/\/images.vimeo.com\/11\/84\/70\/118470017\/118470017_100.jpg"
840
+ },
841
+ {
842
+ "height":"300",
843
+ "width":"300",
844
+ "_content":"http:\/\/images.vimeo.com\/11\/84\/70\/118470017\/118470017_300.jpg"
845
+ }
846
+ ]
847
+ }
848
+ }
849
+ },
850
+ {
851
+ "id":"6376",
852
+ "is_featured":"0",
853
+ "is_sponsored":"0",
854
+ "name":"Nice Type",
855
+ "description":"Sturdy typography,
856
+ motion and kinetic type explorations,
857
+ and other animated typographical niceness on Vimeo.",
858
+ "created_on":"2008-03-06 20:47:59",
859
+ "modified_on":"2009-09-24 18:58:10",
860
+ "total_videos":"206",
861
+ "total_subscribers":"1308",
862
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112960947.png",
863
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112958026.png",
864
+ "url":"http:\/\/vimeo.com\/channels\/nicetype",
865
+ "layout":"grid",
866
+ "theme":"bluesteel",
867
+ "privacy":"anybody",
868
+ "creator":{
869
+ "display_name":"Matthew Buchanan",
870
+ "id":"267502",
871
+ "is_plus":"1",
872
+ "is_staff":"0",
873
+ "profileurl":"http:\/\/vimeo.com\/matthewb",
874
+ "realname":"Matthew Buchanan",
875
+ "username":"matthewb",
876
+ "videosurl":"http:\/\/vimeo.com\/matthewb\/videos",
877
+ "portraits":{
878
+ "portrait":[
879
+ {
880
+ "height":"30",
881
+ "width":"30",
882
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/54\/118254437\/118254437_30.jpg"
883
+ },
884
+ {
885
+ "height":"75",
886
+ "width":"75",
887
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/54\/118254437\/118254437_75.jpg"
888
+ },
889
+ {
890
+ "height":"100",
891
+ "width":"100",
892
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/54\/118254437\/118254437_100.jpg"
893
+ },
894
+ {
895
+ "height":"300",
896
+ "width":"300",
897
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/54\/118254437\/118254437_300.jpg"
898
+ }
899
+ ]
900
+ }
901
+ }
902
+ },
903
+ {
904
+ "id":"3234",
905
+ "is_featured":"1",
906
+ "is_sponsored":"0",
907
+ "name":"'Film-Look'",
908
+ "description":"A collection of video works by users aiming for that 'film-look'.",
909
+ "created_on":"2007-12-17 21:16:53",
910
+ "modified_on":"2009-09-23 21:25:22",
911
+ "total_videos":"458",
912
+ "total_subscribers":"1220",
913
+ "logo_url":"http:\/\/70.media.vimeo.com\/d1\/5\/22\/25\/68\/channellogo-22256887.jpg",
914
+ "badge_url":"",
915
+ "url":"http:\/\/vimeo.com\/channels\/filmlook",
916
+ "layout":"stream",
917
+ "theme":"standard",
918
+ "privacy":"anybody",
919
+ "featured_description":{
920
+ "short":"A collection of video works by users aiming for that 'film-look'.",
921
+ "_content":"A collection of video works by users aiming for that 'film-look'."
922
+ },
923
+ "creator":{
924
+ "display_name":"Javed Ahmed",
925
+ "id":"318089",
926
+ "is_plus":"0",
927
+ "is_staff":"0",
928
+ "profileurl":"http:\/\/vimeo.com\/javedahmed",
929
+ "realname":"Javed Ahmed",
930
+ "username":"javedahmed",
931
+ "videosurl":"http:\/\/vimeo.com\/javedahmed\/videos",
932
+ "portraits":{
933
+ "portrait":[
934
+ {
935
+ "height":"30",
936
+ "width":"30",
937
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/43\/90\/17\/portrait-43901771.jpg"
938
+ },
939
+ {
940
+ "height":"75",
941
+ "width":"75",
942
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/43\/90\/17\/portrait-43901749.jpg"
943
+ },
944
+ {
945
+ "height":"100",
946
+ "width":"100",
947
+ "_content":"http:\/\/80.media.vimeo.com\/d1\/5\/44\/91\/09\/portrait-44910918.jpg"
948
+ },
949
+ {
950
+ "height":"300",
951
+ "width":"300",
952
+ "_content":"http:\/\/30.media.vimeo.com\/d1\/5\/43\/94\/43\/portrait-43944353.jpg"
953
+ }
954
+ ]
955
+ }
956
+ }
957
+ },
958
+ {
959
+ "id":"5362",
960
+ "is_featured":"1",
961
+ "is_sponsored":"0",
962
+ "name":"Designflux",
963
+ "description":"Designflux exists as a quarterly publication,
964
+ bringing together interviews,
965
+ reviews and portfolios of the best in contemporary motion design. This channel acts as a means to showcase work we are watching at Designflux as well as to publish special information on up and coming issues. More info at www.designflux.com",
966
+ "created_on":"2008-02-15 06:44:26",
967
+ "modified_on":"2009-09-24 12:22:53",
968
+ "total_videos":"986",
969
+ "total_subscribers":"1193",
970
+ "logo_url":"http:\/\/90.media.vimeo.com\/d1\/5\/34\/67\/33\/channellogo-34673379.jpg",
971
+ "badge_url":"",
972
+ "url":"http:\/\/vimeo.com\/channels\/designflux",
973
+ "layout":"grid",
974
+ "theme":"tuxedo",
975
+ "privacy":"anybody",
976
+ "featured_description":{
977
+ "short":""
978
+ },
979
+ "creator":{
980
+ "display_name":"Designflux : Devoted to Motion",
981
+ "id":"371484",
982
+ "is_plus":"0",
983
+ "is_staff":"0",
984
+ "profileurl":"http:\/\/vimeo.com\/df",
985
+ "realname":"Designflux : Devoted to Motion",
986
+ "username":"df",
987
+ "videosurl":"http:\/\/vimeo.com\/df\/videos",
988
+ "portraits":{
989
+ "portrait":[
990
+ {
991
+ "height":"30",
992
+ "width":"30",
993
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/33\/90\/12\/portrait-33901255.jpg"
994
+ },
995
+ {
996
+ "height":"75",
997
+ "width":"75",
998
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/33\/86\/82\/portrait-33868299.jpg"
999
+ },
1000
+ {
1001
+ "height":"100",
1002
+ "width":"100",
1003
+ "_content":"http:\/\/80.media.vimeo.com\/d1\/5\/35\/55\/82\/portrait-35558288.jpg"
1004
+ },
1005
+ {
1006
+ "height":"300",
1007
+ "width":"300",
1008
+ "_content":"http:\/\/70.media.vimeo.com\/d1\/5\/33\/86\/99\/portrait-33869927.jpg"
1009
+ }
1010
+ ]
1011
+ }
1012
+ }
1013
+ },
1014
+ {
1015
+ "id":"135",
1016
+ "is_featured":"1",
1017
+ "is_sponsored":"0",
1018
+ "name":"Under the Influence",
1019
+ "description":"Aurally and visually stimulating videos that will pleasure your mind's mind. \n\nI'd like to turn these into a DVD one day to play in the background of a party or in my dreams.\n\nUse Tumblr.com? You can follow here: underinfluence.tumblr.com",
1020
+ "created_on":"2007-09-24 16:57:23",
1021
+ "modified_on":"2009-09-24 17:10:39",
1022
+ "total_videos":"149",
1023
+ "total_subscribers":"1031",
1024
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112957930.png",
1025
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112959311.jpg",
1026
+ "url":"http:\/\/vimeo.com\/channels\/influence",
1027
+ "layout":"grid",
1028
+ "theme":"greenclean",
1029
+ "privacy":"anybody",
1030
+ "featured_description":{
1031
+ "short":"\"These videos are something I'd like to turn into a DVD one day to play in the background of a party or in my dreams.\"",
1032
+ "_content":"\"These videos are something I'd like to turn into a DVD one day to play in the background of a party or in my dreams.\""
1033
+ },
1034
+ "creator":{
1035
+ "display_name":"Casey Pugh",
1036
+ "id":"147469",
1037
+ "is_plus":"1",
1038
+ "is_staff":"1",
1039
+ "profileurl":"http:\/\/vimeo.com\/casey",
1040
+ "realname":"Casey Pugh",
1041
+ "username":"casey",
1042
+ "videosurl":"http:\/\/vimeo.com\/casey\/videos",
1043
+ "portraits":{
1044
+ "portrait":[
1045
+ {
1046
+ "height":"30",
1047
+ "width":"30",
1048
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/219\/21903_30.jpg"
1049
+ },
1050
+ {
1051
+ "height":"75",
1052
+ "width":"75",
1053
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/219\/21903_75.jpg"
1054
+ },
1055
+ {
1056
+ "height":"100",
1057
+ "width":"100",
1058
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/219\/21903_100.jpg"
1059
+ },
1060
+ {
1061
+ "height":"300",
1062
+ "width":"300",
1063
+ "_content":"http:\/\/ps.vimeo.com.s3.amazonaws.com\/219\/21903_300.jpg"
1064
+ }
1065
+ ]
1066
+ }
1067
+ }
1068
+ },
1069
+ {
1070
+ "id":"7955",
1071
+ "is_featured":"1",
1072
+ "is_sponsored":"0",
1073
+ "name":"Time Lapse in HD",
1074
+ "description":"if it's a time lapse and presented in High Definition video (1280 by 720 or better),
1075
+ it will probably be shown here - thanks to all the great contributors out there :-)\n\nIf you have a time lapse video that you have created,
1076
+ and you would like to feature it on this channel? Then post a link to your video in the channel \"shout box\" and we will check it out.\n\nOh,
1077
+ and if you like a video then don't forget to leave a comment and maybe click the 'LIKE' button - our contributors rely on your feedback and support...\n\nbe well ;-)",
1078
+ "created_on":"2008-04-08 15:58:51",
1079
+ "modified_on":"2009-09-24 14:50:05",
1080
+ "total_videos":"1983",
1081
+ "total_subscribers":"1028",
1082
+ "logo_url":"http:\/\/channelheader.vimeo.com.s3.amazonaws.com\/547\/5471_980.jpg",
1083
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112963530.jpg",
1084
+ "url":"http:\/\/vimeo.com\/channels\/timelapseinhd",
1085
+ "layout":"gallery",
1086
+ "theme":"bluesteel",
1087
+ "privacy":"anybody",
1088
+ "featured_description":{
1089
+ "short":""
1090
+ },
1091
+ "creator":{
1092
+ "display_name":"\u00dfe \u03c9ell ;-)",
1093
+ "id":"384836",
1094
+ "is_plus":"1",
1095
+ "is_staff":"0",
1096
+ "profileurl":"http:\/\/vimeo.com\/bewell",
1097
+ "realname":"\u00dfe \u03c9ell ;-)",
1098
+ "username":"bewell",
1099
+ "videosurl":"http:\/\/vimeo.com\/bewell\/videos",
1100
+ "portraits":{
1101
+ "portrait":[
1102
+ {
1103
+ "height":"30",
1104
+ "width":"30",
1105
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/37\/32\/78\/portrait-37327835.jpg"
1106
+ },
1107
+ {
1108
+ "height":"75",
1109
+ "width":"75",
1110
+ "_content":"http:\/\/40.media.vimeo.com\/d1\/5\/37\/32\/78\/portrait-37327834.jpg"
1111
+ },
1112
+ {
1113
+ "height":"100",
1114
+ "width":"100",
1115
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/44\/98\/41\/portrait-44984171.jpg"
1116
+ },
1117
+ {
1118
+ "height":"300",
1119
+ "width":"300",
1120
+ "_content":"http:\/\/80.media.vimeo.com\/d1\/5\/37\/39\/98\/portrait-37399888.jpg"
1121
+ }
1122
+ ]
1123
+ }
1124
+ }
1125
+ },
1126
+ {
1127
+ "id":"18203",
1128
+ "is_featured":"1",
1129
+ "is_sponsored":"0",
1130
+ "name":"Nikon D90 footage",
1131
+ "description":"This channel is for footage shot on the Nikon D90 DSLR.",
1132
+ "created_on":"2008-09-06 01:24:52",
1133
+ "modified_on":"2009-09-24 17:26:23",
1134
+ "total_videos":"1279",
1135
+ "total_subscribers":"990",
1136
+ "logo_url":"",
1137
+ "badge_url":"",
1138
+ "url":"http:\/\/vimeo.com\/channels\/d90",
1139
+ "layout":"stream",
1140
+ "theme":"greenclean",
1141
+ "privacy":"anybody",
1142
+ "featured_description":{
1143
+ "short":""
1144
+ },
1145
+ "creator":{
1146
+ "display_name":"Christian",
1147
+ "id":"317516",
1148
+ "is_plus":"0",
1149
+ "is_staff":"0",
1150
+ "profileurl":"http:\/\/vimeo.com\/user317516",
1151
+ "realname":"Christian",
1152
+ "username":"user317516",
1153
+ "videosurl":"http:\/\/vimeo.com\/user317516\/videos",
1154
+ "portraits":{
1155
+ "portrait":[
1156
+ {
1157
+ "height":"30",
1158
+ "width":"30",
1159
+ "_content":"http:\/\/images.vimeo.com\/11\/30\/64\/113064785\/113064785_30.jpg"
1160
+ },
1161
+ {
1162
+ "height":"75",
1163
+ "width":"75",
1164
+ "_content":"http:\/\/images.vimeo.com\/11\/30\/64\/113064785\/113064785_75.jpg"
1165
+ },
1166
+ {
1167
+ "height":"100",
1168
+ "width":"100",
1169
+ "_content":"http:\/\/images.vimeo.com\/11\/30\/64\/113064785\/113064785_100.jpg"
1170
+ },
1171
+ {
1172
+ "height":"300",
1173
+ "width":"300",
1174
+ "_content":"http:\/\/images.vimeo.com\/11\/30\/64\/113064785\/113064785_300.jpg"
1175
+ }
1176
+ ]
1177
+ }
1178
+ }
1179
+ },
1180
+ {
1181
+ "id":"19024",
1182
+ "is_featured":"0",
1183
+ "is_sponsored":"0",
1184
+ "name":"Canon 5D Mark II",
1185
+ "description":"Please make your voice heard and let Canon know you want 24p\/25p and manual control on your 5D Mk II:\n\npetitiononline.com\/SW5DMK2\/petition.html\n\nipetitions.com\/petition\/uncripplethecanon5dmkii\/\n\n5dfix.com\/\n\nfacebook.com\/group.php?gid=120624885577\n\n----------------------------------------------------------\nGroup http:\/\/vimeo.com\/groups\/canon5dmark2",
1186
+ "created_on":"2008-09-17 15:29:22",
1187
+ "modified_on":"2009-09-24 19:46:55",
1188
+ "total_videos":"849",
1189
+ "total_subscribers":"975",
1190
+ "logo_url":"",
1191
+ "badge_url":"",
1192
+ "url":"http:\/\/vimeo.com\/channels\/canon5dmark2",
1193
+ "layout":"grid",
1194
+ "theme":"bluesteel",
1195
+ "privacy":"anybody",
1196
+ "creator":{
1197
+ "display_name":"ericlawrin",
1198
+ "id":"137871",
1199
+ "is_plus":"0",
1200
+ "is_staff":"0",
1201
+ "profileurl":"http:\/\/vimeo.com\/ericlawrin",
1202
+ "realname":"ericlawrin",
1203
+ "username":"ericlawrin",
1204
+ "videosurl":"http:\/\/vimeo.com\/ericlawrin\/videos",
1205
+ "portraits":{
1206
+ "portrait":[
1207
+ {
1208
+ "height":"30",
1209
+ "width":"30",
1210
+ "_content":"http:\/\/images.vimeo.com\/11\/29\/51\/112951551\/112951551_30.jpg"
1211
+ },
1212
+ {
1213
+ "height":"75",
1214
+ "width":"75",
1215
+ "_content":"http:\/\/images.vimeo.com\/11\/29\/51\/112951551\/112951551_75.jpg"
1216
+ },
1217
+ {
1218
+ "height":"100",
1219
+ "width":"100",
1220
+ "_content":"http:\/\/images.vimeo.com\/11\/29\/51\/112951551\/112951551_100.jpg"
1221
+ },
1222
+ {
1223
+ "height":"300",
1224
+ "width":"300",
1225
+ "_content":"http:\/\/images.vimeo.com\/11\/29\/51\/112951551\/112951551_300.jpg"
1226
+ }
1227
+ ]
1228
+ }
1229
+ }
1230
+ },
1231
+ {
1232
+ "id":"211",
1233
+ "is_featured":"1",
1234
+ "is_sponsored":"0",
1235
+ "name":"VJs Unite",
1236
+ "description":"A Channel that represents the vimeo VJ Community....All are welcome...A place to share your Live Video Performances,
1237
+ Audio-Visual Mixes and Showreels....Somewhere to discuss one anothers mixes and plan collaborations and swap ideas...Feel free to use the calender to list any gigs you have coming up\n\nWhat is a VJ? http:\/\/en.wikipedia.org\/wiki\/VJ_%28video_performance_artist%29",
1238
+ "created_on":"2007-09-25 18:03:48",
1239
+ "modified_on":"2009-09-24 11:09:48",
1240
+ "total_videos":"205",
1241
+ "total_subscribers":"953",
1242
+ "logo_url":"http:\/\/00.media.vimeo.com\/d1\/5\/79\/79\/channellogo-7979360.jpg",
1243
+ "badge_url":"http:\/\/images.vimeo.com\/channelbadge-112969042.jpg",
1244
+ "url":"http:\/\/vimeo.com\/channels\/vjs",
1245
+ "layout":"grid",
1246
+ "theme":"tuxedo",
1247
+ "privacy":"anybody",
1248
+ "featured_description":{
1249
+ "short":"Vimeo's Video DJs in action!",
1250
+ "_content":"Vimeo's Video DJs in action! Everything from live video performances to showreels and audio-visual mixes."
1251
+ },
1252
+ "creator":{
1253
+ "display_name":"use",
1254
+ "id":"152609",
1255
+ "is_plus":"0",
1256
+ "is_staff":"0",
1257
+ "profileurl":"http:\/\/vimeo.com\/use",
1258
+ "realname":"use",
1259
+ "username":"use",
1260
+ "videosurl":"http:\/\/vimeo.com\/use\/videos",
1261
+ "portraits":{
1262
+ "portrait":[
1263
+ {
1264
+ "height":"30",
1265
+ "width":"30",
1266
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/59\/87\/5987437\/5987437_30.jpg"
1267
+ },
1268
+ {
1269
+ "height":"75",
1270
+ "width":"75",
1271
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/59\/87\/5987437\/5987437_75.jpg"
1272
+ },
1273
+ {
1274
+ "height":"100",
1275
+ "width":"100",
1276
+ "_content":"http:\/\/60.media.vimeo.com\/d1\/5\/59\/87\/5987437\/5987437_100.jpg"
1277
+ },
1278
+ {
1279
+ "height":"300",
1280
+ "width":"300",
1281
+ "_content":"http:\/\/90.media.vimeo.com\/d1\/5\/59\/87\/5987437\/5987437_300.jpg"
1282
+ }
1283
+ ]
1284
+ }
1285
+ }
1286
+ },
1287
+ {
1288
+ "id":"6967",
1289
+ "is_featured":"0",
1290
+ "is_sponsored":"0",
1291
+ "name":"HD MUSIC VIDEOS",
1292
+ "description":"The Creative HD Music Video Channel.",
1293
+ "created_on":"2008-03-18 13:55:37",
1294
+ "modified_on":"2009-09-24 17:22:24",
1295
+ "total_videos":"292",
1296
+ "total_subscribers":"907",
1297
+ "logo_url":"http:\/\/70.media.vimeo.com\/d1\/5\/75\/87\/53\/channellogo-75875317.jpg",
1298
+ "badge_url":"",
1299
+ "url":"http:\/\/vimeo.com\/channels\/hdmusicvideos",
1300
+ "layout":"grid",
1301
+ "theme":"bluesteel",
1302
+ "privacy":"anybody",
1303
+ "creator":{
1304
+ "display_name":"CIKURA",
1305
+ "id":"403529",
1306
+ "is_plus":"1",
1307
+ "is_staff":"0",
1308
+ "profileurl":"http:\/\/vimeo.com\/cikura",
1309
+ "realname":"CIKURA",
1310
+ "username":"cikura",
1311
+ "videosurl":"http:\/\/vimeo.com\/cikura\/videos",
1312
+ "portraits":{
1313
+ "portrait":[
1314
+ {
1315
+ "height":"30",
1316
+ "width":"30",
1317
+ "_content":"http:\/\/images.vimeo.com\/84\/74\/27\/84742776\/84742776_30.jpg"
1318
+ },
1319
+ {
1320
+ "height":"75",
1321
+ "width":"75",
1322
+ "_content":"http:\/\/images.vimeo.com\/84\/74\/27\/84742776\/84742776_75.jpg"
1323
+ },
1324
+ {
1325
+ "height":"100",
1326
+ "width":"100",
1327
+ "_content":"http:\/\/images.vimeo.com\/84\/74\/27\/84742776\/84742776_100.jpg"
1328
+ },
1329
+ {
1330
+ "height":"300",
1331
+ "width":"300",
1332
+ "_content":"http:\/\/images.vimeo.com\/84\/74\/27\/84742776\/84742776_300.jpg"
1333
+ }
1334
+ ]
1335
+ }
1336
+ }
1337
+ },
1338
+ {
1339
+ "id":"4494",
1340
+ "is_featured":"1",
1341
+ "is_sponsored":"0",
1342
+ "name":"Demo Reels",
1343
+ "description":"This is a Channel dedicated to showcasing our talented Vimeo Users' Demo Reels.",
1344
+ "created_on":"2008-01-23 16:22:11",
1345
+ "modified_on":"2009-09-24 05:46:22",
1346
+ "total_videos":"574",
1347
+ "total_subscribers":"839",
1348
+ "logo_url":"http:\/\/images.vimeo.com\/channellogo-112958512.png",
1349
+ "badge_url":"",
1350
+ "url":"http:\/\/vimeo.com\/channels\/demoreels",
1351
+ "layout":"stream",
1352
+ "theme":"vader",
1353
+ "privacy":"anybody",
1354
+ "featured_description":{
1355
+ "short":"A Channel dedicated to Vimeo Users' Demo Reels.",
1356
+ "_content":"A Channel dedicated to Vimeo Users' Demo Reels."
1357
+ },
1358
+ "creator":{
1359
+ "display_name":"Karen Abad \u2665s Dinosaurs.",
1360
+ "id":"266269",
1361
+ "is_plus":"1",
1362
+ "is_staff":"1",
1363
+ "profileurl":"http:\/\/vimeo.com\/karenabad",
1364
+ "realname":"Karen Abad \u2665s Dinosaurs.",
1365
+ "username":"karenabad",
1366
+ "videosurl":"http:\/\/vimeo.com\/karenabad\/videos",
1367
+ "portraits":{
1368
+ "portrait":[
1369
+ {
1370
+ "height":"30",
1371
+ "width":"30",
1372
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/17\/portrait-29391761.jpg"
1373
+ },
1374
+ {
1375
+ "height":"75",
1376
+ "width":"75",
1377
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/23\/portrait-29392351.jpg"
1378
+ },
1379
+ {
1380
+ "height":"100",
1381
+ "width":"100",
1382
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/41\/82\/portrait-29418290.jpg"
1383
+ },
1384
+ {
1385
+ "height":"300",
1386
+ "width":"300",
1387
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/29\/41\/26\/portrait-29412655.jpg"
1388
+ }
1389
+ ]
1390
+ }
1391
+ }
1392
+ }
1393
+ ]
1394
+ }
1395
+ }