vimeo 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/.gitignore +2 -1
  2. data/README.markdown +312 -0
  3. data/Rakefile +1 -1
  4. data/VERSION.yml +2 -1
  5. data/init.rb +2 -0
  6. data/lib/vimeo.rb +1 -0
  7. data/lib/vimeo/advanced.rb +0 -1
  8. data/lib/vimeo/advanced/album.rb +8 -10
  9. data/lib/vimeo/advanced/base.rb +56 -46
  10. data/lib/vimeo/advanced/channel.rb +6 -9
  11. data/lib/vimeo/advanced/contact.rb +2 -3
  12. data/lib/vimeo/advanced/group.rb +5 -11
  13. data/lib/vimeo/advanced/person.rb +5 -6
  14. data/lib/vimeo/advanced/test.rb +7 -24
  15. data/lib/vimeo/advanced/upload.rb +4 -9
  16. data/lib/vimeo/advanced/video.rb +14 -15
  17. data/lib/vimeo/advanced/video_embed.rb +1 -2
  18. data/test/fixtures/advanced/auth/check_access_token.json +9 -0
  19. data/test/fixtures/advanced/auth/request_token.txt +1 -0
  20. data/test/fixtures/advanced/channel/get_all.json +17 -55
  21. data/test/fixtures/advanced/group/get_all.json +5 -29
  22. data/test/fixtures/advanced/group/get_info.json +1 -2
  23. data/test/fixtures/advanced/group_events/get_month.json +3 -8
  24. data/test/fixtures/advanced/group_events/get_past.json +3 -8
  25. data/test/fixtures/advanced/group_events/get_upcoming.json +3 -8
  26. data/test/fixtures/advanced/group_forums/get_topic_comments.json +1 -3
  27. data/test/fixtures/advanced/person/get_info.json +1 -2
  28. data/test/fixtures/advanced/video/get_by_tag.json +1 -3
  29. data/test/fixtures/advanced/video/get_subscriptions.json +3 -7
  30. data/test/fixtures/advanced/video/search.json +1 -2
  31. data/test/test_helper.rb +17 -6
  32. data/test/vimeo/advanced/album_test.rb +54 -67
  33. data/test/vimeo/advanced/auth_test.rb +17 -25
  34. data/test/vimeo/advanced/base_test.rb +7 -9
  35. data/test/vimeo/advanced/channels_test.rb +5 -5
  36. data/test/vimeo/advanced/contacts_test.rb +1 -1
  37. data/test/vimeo/advanced/group_events_test.rb +1 -1
  38. data/test/vimeo/advanced/group_forums_test.rb +1 -1
  39. data/test/vimeo/advanced/groups_test.rb +4 -4
  40. data/test/vimeo/advanced/person_test.rb +9 -8
  41. data/test/vimeo/advanced/test_test.rb +3 -3
  42. data/test/vimeo/advanced/upload_test.rb +6 -6
  43. data/test/vimeo/advanced/videos_embed_test.rb +6 -5
  44. data/test/vimeo/advanced/videos_test.rb +15 -15
  45. data/vimeo.gemspec +13 -11
  46. metadata +10 -9
  47. data/README.rdoc +0 -322
  48. data/lib/vimeo/advanced/auth.rb +0 -22
@@ -5,19 +5,17 @@ module Vimeo
5
5
  # Adds a video to a channel.
6
6
  create_api_method :add_video,
7
7
  "vimeo.channels.addVideo",
8
- :required => [:auth_token, :channel_id, :video_id]
8
+ :required => [:channel_id, :video_id]
9
9
 
10
10
  # Returns a list of all channels.
11
11
  create_api_method :get_all,
12
12
  "vimeo.channels.getAll",
13
- :optional => [:page, :per_page, :sort]
13
+ :optional => [:page, :per_page, :sort, :user_id]
14
14
 
15
15
  # Returns information about a channel.
16
- # FIXME: Do we need page and per_page here?
17
16
  create_api_method :get_info,
18
17
  "vimeo.channels.getInfo",
19
- :required => [:channel_id],
20
- :optional => [:page, :per_page]
18
+ :required => [:channel_id]
21
19
 
22
20
  # Returns a list of the moderators of a channel.
23
21
  create_api_method :get_moderators,
@@ -32,7 +30,6 @@ module Vimeo
32
30
  :optional => [:page, :per_page]
33
31
 
34
32
  # Returns a list of the videos in a channel.
35
- # FIXME: Should there be a sort option here?
36
33
  create_api_method :get_videos,
37
34
  "vimeo.channels.getVideos",
38
35
  :required => [:channel_id],
@@ -41,17 +38,17 @@ module Vimeo
41
38
  # Removes a video from a channel.
42
39
  create_api_method :remove_video,
43
40
  "vimeo.channels.removeVideo",
44
- :required => [:auth_token, :channel_id, :video_id]
41
+ :required => [:channel_id, :video_id]
45
42
 
46
43
  # Subscribes to a channel
47
44
  create_api_method :subscribe,
48
45
  "vimeo.channels.subscribe",
49
- :required => [:auth_token, :channel_id]
46
+ :required => [:channel_id]
50
47
 
51
48
  # Unsubscribes from a channel
52
49
  create_api_method :unsubscribe,
53
50
  "vimeo.channels.unsubscribe",
54
- :required => [:auth_token, :channel_id]
51
+ :required => [:channel_id]
55
52
 
56
53
  end # Channel
57
54
  end # Advanced
@@ -12,13 +12,12 @@ module Vimeo
12
12
  create_api_method :get_mutual,
13
13
  "vimeo.contacts.getMutual",
14
14
  :required => [:user_id],
15
- :optional => [:page, :per_page, :sort]
15
+ :optional => [:page, :per_page]
16
16
 
17
17
  # Returns a list of your contacts who are online.
18
- # FIXME: Shouldn't this have optional params?
19
18
  create_api_method :get_online,
20
19
  "vimeo.contacts.getOnline",
21
- :optional => [:page, :per_page, :sort]
20
+ :optional => [:page, :per_page]
22
21
 
23
22
  # Returns a list of users who added a user as a contact.
24
23
  create_api_method :get_who_added,
@@ -5,26 +5,23 @@ module Vimeo
5
5
  # Adds a video to a group.
6
6
  create_api_method :add_video,
7
7
  "vimeo.groups.addVideo",
8
- :required => [:auth_token, :group_id, :video_id]
8
+ :required => [:group_id, :video_id]
9
9
 
10
10
  # Returns a list of all groups.
11
11
  create_api_method :get_all,
12
12
  "vimeo.groups.getAll",
13
- :optional => [:page, :per_page, :sort]
13
+ :optional => [:page, :per_page, :sort, :user_id]
14
14
 
15
15
  # Returns a list of a group's files.
16
- # FIXME: Sort optional param?
17
16
  create_api_method :get_files,
18
17
  "vimeo.groups.getFiles",
19
18
  :required => [:group_id],
20
19
  :optional => [:page, :per_page]
21
20
 
22
21
  # Returns information about a group.
23
- # FIXME: Does this need pagination options?
24
22
  create_api_method :get_info,
25
23
  "vimeo.groups.getInfo",
26
- :required => [:group_id],
27
- :optional => [:page, :per_page]
24
+ :required => [:group_id]
28
25
 
29
26
  # Returns a list of the members in a group.
30
27
  create_api_method :get_members,
@@ -33,21 +30,18 @@ module Vimeo
33
30
  :optional => [:page, :per_page, :sort]
34
31
 
35
32
  # Returns a list of the moderators of a group.
36
- # FIXME: Should this have sort?
37
33
  create_api_method :get_moderators,
38
34
  "vimeo.groups.getModerators",
39
35
  :required => [:group_id],
40
36
  :optional => [:page, :per_page]
41
37
 
42
38
  # Returns a list of the comments on a video in a group.
43
- # FIXME: Should this have sort?
44
39
  create_api_method :get_video_comments,
45
40
  "vimeo.groups.getVideoComments",
46
41
  :required => [:group_id, :video_id],
47
42
  :optional => [:page, :per_page]
48
43
 
49
44
  # Returns a list of the videos in a group.
50
- # FIXME: Should this have sort?
51
45
  create_api_method :get_videos,
52
46
  "vimeo.groups.getVideos",
53
47
  :required => [:group_id],
@@ -56,12 +50,12 @@ module Vimeo
56
50
  # Joins a group.
57
51
  create_api_method :join,
58
52
  "vimeo.groups.join",
59
- :required => [:auth_token, :group_id]
53
+ :required => [:group_id]
60
54
 
61
55
  # Leaves a group.
62
56
  create_api_method :leave,
63
57
  "vimeo.groups.leave",
64
- :required => [:auth_token, :group_id]
58
+ :required => [:group_id]
65
59
 
66
60
  end # Group
67
61
  end # Advanced
@@ -5,13 +5,13 @@ module Vimeo
5
5
  # Adds a user to your contact list.
6
6
  create_api_method :add_contact,
7
7
  "vimeo.people.addContact",
8
- :required => [:auth_token, :user_id]
8
+ :required => [:user_id]
9
9
 
10
10
  # Adds a subscription to your subscriptions.
11
11
  # Types is a comma-delimited string. Valid options: "likes", "appears", "uploads"
12
12
  create_api_method :add_subscription,
13
13
  "vimeo.people.addSubscription",
14
- :required => [:auth_token, :user_id, :types]
14
+ :required => [:user_id, :types]
15
15
 
16
16
  # Finds a user by their e-mail.
17
17
  create_api_method :find_by_email,
@@ -19,8 +19,7 @@ module Vimeo
19
19
  :required => [:user_id]
20
20
 
21
21
  create_api_method :get_hd_embeds,
22
- "vimeo.people.getHDEmbeds",
23
- :required => [:auth_token]
22
+ "vimeo.people.getHDEmbeds"
24
23
 
25
24
  # Returns a user's information
26
25
  create_api_method :get_info,
@@ -35,13 +34,13 @@ module Vimeo
35
34
  # Removes a user from your contact list.
36
35
  create_api_method :remove_contact,
37
36
  "vimeo.people.removeContact",
38
- :required => [:auth_token, :user_id]
37
+ :required => [:user_id]
39
38
 
40
39
  # Removes a subscription to your subscriptions.
41
40
  # Types is a comma-delimited string. Valid options: "likes", "appears", "uploads"
42
41
  create_api_method :remove_subscription,
43
42
  "vimeo.people.removeSubscription",
44
- :required => [:auth_token, :user_id, :types]
43
+ :required => [:user_id, :types]
45
44
 
46
45
  end # Person
47
46
  end # Advanced
@@ -1,36 +1,19 @@
1
1
  module Vimeo
2
2
  module Advanced
3
-
4
3
  class Test < Vimeo::Advanced::Base
5
-
6
- # An echo test. Echoes all parameters.
7
- # Options can be anything except method, api_key,
8
- # and api_sig -- if any of these options are
9
- # present they will be overwritten by the proper
10
- # values.
4
+
5
+ # http://vimeo.com/api/docs/methods/vimeo.test.echo
11
6
  create_api_method :echo,
12
7
  "vimeo.test.echo"
13
8
 
14
- # def echo(options={})
15
- # options.merge!(:method => "vimeo.test.echo")
16
- # api_sig = generate_api_sig options
17
- # options.merge!(:api_sig => api_sig)
18
- # self.class.post("/api/rest", :query => options)
19
- # end
20
-
21
- # Tests if the user associated to this token
22
- # is able to make authenticated calls.
9
+ # http://vimeo.com/api/docs/methods/vimeo.test.login
23
10
  create_api_method :login,
24
- "vimeo.test.login",
25
- :required => [:auth_token]
26
-
11
+ "vimeo.test.login"
27
12
 
28
- # A simple ping test.
13
+ # http://vimeo.com/api/docs/methods/vimeo.test.null
29
14
  create_api_method :null,
30
- "vimeo.test.null",
31
- :required => [:auth_token]
32
-
33
- end
15
+ "vimeo.test.null"
34
16
 
17
+ end # Test
35
18
  end # Advanced
36
19
  end # Vimeo
@@ -10,20 +10,17 @@ module Vimeo
10
10
  # Confirms the upload process.
11
11
  create_api_method :confirm,
12
12
  "vimeo.videos.upload.confirm",
13
- :required => [:auth_token, :ticket_id],
14
- :unsigned => [:json_manifest]
13
+ :required => [:ticket_id]
15
14
 
16
15
  # "{\"files\":[{\"md5\":\"731f09145a1ea9ec9dad689de6fa0358\"}]}"
17
16
 
18
17
  # Returns the space and HD uploads left for a user.
19
18
  create_api_method :get_quota,
20
- "vimeo.videos.upload.getQuota",
21
- :required => [:auth_token]
19
+ "vimeo.videos.upload.getQuota"
22
20
 
23
21
  # Returns an upload ticket.
24
22
  create_api_method :get_ticket,
25
- "vimeo.videos.upload.getTicket",
26
- :required => [:auth_token]
23
+ "vimeo.videos.upload.getTicket"
27
24
 
28
25
  # Upload +file+ to vimeo with +ticket_id+ and +auth_token+
29
26
  # Returns the json manifest necessary to confirm the upload.
@@ -48,9 +45,7 @@ module Vimeo
48
45
  # Verifies a file manifest.
49
46
  create_api_method :verify_manifest,
50
47
  "vimeo.videos.upload.verifyManifest",
51
- :required => [:auth_token, :ticket_id],
52
- :unsigned => [:json_manifest]
53
-
48
+ :required => [:auth_token, :ticket_id]
54
49
 
55
50
  # TODO: Make this more flexible for split uploads?
56
51
  def self.create_json_manifest(md5s)
@@ -4,24 +4,24 @@ module Vimeo
4
4
 
5
5
  create_api_method :add_cast,
6
6
  "vimeo.videos.addCast",
7
- :required => [:auth_token, :video_id, :user_id],
7
+ :required => [:video_id, :user_id],
8
8
  :optional => [:role]
9
9
 
10
10
  create_api_method :add_photos,
11
11
  "vimeo.videos.addPhotos",
12
- :required => [:auth_token, :video_id, :photo_urls]
12
+ :required => [:video_id, :photo_urls]
13
13
 
14
14
  create_api_method :add_tags,
15
15
  "vimeo.videos.addTags",
16
- :required => [:auth_token, :video_id, :tags]
16
+ :required => [:video_id, :tags]
17
17
 
18
18
  create_api_method :clear_tags,
19
19
  "vimeo.videos.clearTags",
20
- :required => [:auth_token, :video_id]
20
+ :required => [:video_id]
21
21
 
22
22
  create_api_method :delete,
23
23
  "vimeo.videos.delete",
24
- :required => [:auth_token, :video_id]
24
+ :required => [:video_id]
25
25
 
26
26
  create_api_method :get_all,
27
27
  "vimeo.videos.getAll",
@@ -78,11 +78,11 @@ module Vimeo
78
78
 
79
79
  create_api_method :remove_cast,
80
80
  "vimeo.videos.removeCast",
81
- :required => [:auth_token, :video_id, :user_id]
81
+ :required => [:video_id, :user_id]
82
82
 
83
83
  create_api_method :remove_tag,
84
84
  "vimeo.videos.removeTag",
85
- :required => [:auth_token, :video_id, :tag_id]
85
+ :required => [:video_id, :tag_id]
86
86
 
87
87
  create_api_method :search,
88
88
  "vimeo.videos.search",
@@ -91,35 +91,34 @@ module Vimeo
91
91
 
92
92
  create_api_method :set_description,
93
93
  "vimeo.videos.setDescription",
94
- :required => [:auth_token, :video_id, :description]
94
+ :required => [:video_id, :description]
95
95
 
96
96
  create_api_method :set_like,
97
97
  "vimeo.videos.setLike",
98
- :required => [:auth_token, :video_id, :like]
98
+ :required => [:video_id, :like]
99
99
 
100
100
  create_api_method :set_privacy,
101
101
  "vimeo.videos.setPrivacy",
102
- :required => [:auth_token, :video_id, :privacy],
102
+ :required => [:video_id, :privacy],
103
103
  :optional => [:users, :password]
104
104
 
105
105
  create_api_method :set_title,
106
106
  "vimeo.videos.setTitle",
107
- :required => [:auth_token, :video_id, :title]
108
-
107
+ :required => [:title, :video_id]
109
108
 
110
109
  # comments
111
110
  create_api_method :add_comment,
112
111
  "vimeo.videos.comments.addComment",
113
- :required => [:auth_token, :video_id, :comment_text],
112
+ :required => [:video_id, :comment_text],
114
113
  :optional => [:reply_to_comment_id]
115
114
 
116
115
  create_api_method :delete_comment,
117
116
  "vimeo.videos.comments.deleteComment",
118
- :required => [:auth_token, :video_id, :comment_id]
117
+ :required => [:video_id, :comment_id]
119
118
 
120
119
  create_api_method :edit_comment,
121
120
  "vimeo.videos.comments.editComment",
122
- :required => [:auth_token, :video_id, :comment_id, :comment_text]
121
+ :required => [:video_id, :comment_id, :comment_text]
123
122
 
124
123
  create_api_method :get_comments_list,
125
124
  "vimeo.videos.comments.getList",
@@ -3,7 +3,6 @@ module Vimeo
3
3
  class VideoEmbed < Vimeo::Advanced::Base
4
4
 
5
5
  # Returns a list of presets for a video embed.
6
- # FIXME: Needs a page optional as well...?
7
6
  create_api_method :get_presets,
8
7
  "vimeo.video.embed.getPresets",
9
8
  :required => [:auth_token],
@@ -12,7 +11,7 @@ module Vimeo
12
11
  # Sets a preset for a video embed.
13
12
  create_api_method :set_preset,
14
13
  "vimeo.video.embed.setPreset",
15
- :required => [:auth_token, :video_id, :preset_id]
14
+ :required => [:video_id, :preset_id]
16
15
 
17
16
  end # VideoEmbed
18
17
  end # Advanced
@@ -0,0 +1,9 @@
1
+ {
2
+ "token":"token",
3
+ "permission":"write",
4
+ "user":{
5
+ "display_name":"Brad Dougherty",
6
+ "id":"101193",
7
+ "username":"brad"
8
+ }
9
+ }
@@ -0,0 +1 @@
1
+ oauth_token=12345&oauth_token_secret=secret&oauth_callback_confirmed=true
@@ -12,9 +12,7 @@
12
12
  "is_featured":"1",
13
13
  "is_sponsored":"0",
14
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.",
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,\n 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,\n put a link in the shoutbox and we'll check it out.",
18
16
  "created_on":"2007-10-17 10:06:07",
19
17
  "modified_on":"2009-09-24 19:41:48",
20
18
  "total_videos":"1021",
@@ -26,8 +24,7 @@
26
24
  "theme":"vimeoland",
27
25
  "privacy":"anybody",
28
26
  "featured_description":{
29
- "short":"Vimeo,
30
- in HD",
27
+ "short":"Vimeo,\n in HD",
31
28
  "_content":"Bringing you the best HD videos on Vimeo."
32
29
  },
33
30
  "creator":{
@@ -287,11 +284,7 @@
287
284
  "is_featured":"1",
288
285
  "is_sponsored":"0",
289
286
  "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.",
287
+ "description":"Internet didn't kill the video star,\n 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,\n commercials,\n and films with Facebook integration. No need for a new username and password,\n 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
288
  "created_on":"2007-11-11 16:37:08",
296
289
  "modified_on":"2009-09-24 17:13:32",
297
290
  "total_videos":"179",
@@ -303,10 +296,8 @@
303
296
  "theme":"tuxedo",
304
297
  "privacy":"anybody",
305
298
  "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."
299
+ "short":"Internet didn't kill the video star,\n it creates them. Music videos on Vimeo. Please feel free to submit videos.",
300
+ "_content":"Internet didn't kill the video star,\n it creates them. Music videos on Vimeo. Please feel free to submit videos."
310
301
  },
311
302
  "creator":{
312
303
  "display_name":"Keith",
@@ -348,12 +339,7 @@
348
339
  "is_featured":"1",
349
340
  "is_sponsored":"0",
350
341
  "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!",
342
+ "description":"This is the free Film School of www.cinemacuteo.com which are published videos tutorials to make your film projects,\n from the special effects,\n to the steadycam,\n lights,\n cranes. Filmmaking demystifies. Also visit the free Film School Group at: http:\/\/www.vimeo.com\/groups\/filmschool\nSubscribe,\n you can do it!",
357
343
  "created_on":"2008-04-14 00:25:43",
358
344
  "modified_on":"2009-09-24 19:47:49",
359
345
  "total_videos":"393",
@@ -462,8 +448,7 @@
462
448
  "is_featured":"1",
463
449
  "is_sponsored":"0",
464
450
  "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",
451
+ "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,\n 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
452
  "created_on":"2007-10-14 19:39:44",
468
453
  "modified_on":"2009-09-24 19:12:31",
469
454
  "total_videos":"5550",
@@ -568,10 +553,7 @@
568
553
  "is_featured":"1",
569
554
  "is_sponsored":"0",
570
555
  "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.",
556
+ "description":"A place for Vimeo's documentaries including full documentaries,\single chapters,\n or extended trailers,\n over 3 minutes in length.",
575
557
  "created_on":"2008-02-18 00:09:21",
576
558
  "modified_on":"2009-09-24 14:27:46",
577
559
  "total_videos":"540",
@@ -583,14 +565,8 @@
583
565
  "theme":"standard",
584
566
  "privacy":"anybody",
585
567
  "featured_description":{
586
- "short":"Documentaries,
587
- Documentaries,
588
- Documentaries,
589
- Documentaries!",
590
- "_content":"Documentaries,
591
- Documentaries,
592
- Documentaries,
593
- Documentaries!"
568
+ "short":"Documentaries,\n Documentaries,\n Documentaries,\n Documentaries!",
569
+ "_content":"Documentaries,\n Documentaries,\n Documentaries,\n Documentaries!"
594
570
  },
595
571
  "creator":{
596
572
  "display_name":"Brian Van Peski",
@@ -631,12 +607,8 @@
631
607
  "id":"17068",
632
608
  "is_featured":"1",
633
609
  "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______________________________________",
610
+ "name":"01SHORTFILM ______ Only the best,\n international,\n award-winning,\n CINEMATIC shortfilms",
611
+ "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,\n and we'll review it!\n\n______________________________________\n______________________________________",
640
612
  "created_on":"2008-08-20 08:42:19",
641
613
  "modified_on":"2009-09-24 13:46:05",
642
614
  "total_videos":"240",
@@ -690,9 +662,7 @@
690
662
  "is_featured":"1",
691
663
  "is_sponsored":"0",
692
664
  "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!",
665
+ "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,\n email me at Doriancarlossensi(...)email.de,\n providing the links to your 5 videos!",
696
666
  "created_on":"2008-02-18 17:21:55",
697
667
  "modified_on":"2009-09-24 18:57:49",
698
668
  "total_videos":"255",
@@ -852,9 +822,7 @@
852
822
  "is_featured":"0",
853
823
  "is_sponsored":"0",
854
824
  "name":"Nice Type",
855
- "description":"Sturdy typography,
856
- motion and kinetic type explorations,
857
- and other animated typographical niceness on Vimeo.",
825
+ "description":"Sturdy typography,\n motion and kinetic type explorations,\n and other animated typographical niceness on Vimeo.",
858
826
  "created_on":"2008-03-06 20:47:59",
859
827
  "modified_on":"2009-09-24 18:58:10",
860
828
  "total_videos":"206",
@@ -960,9 +928,7 @@
960
928
  "is_featured":"1",
961
929
  "is_sponsored":"0",
962
930
  "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",
931
+ "description":"Designflux exists as a quarterly publication,\n bringing together interviews,\n 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
932
  "created_on":"2008-02-15 06:44:26",
967
933
  "modified_on":"2009-09-24 12:22:53",
968
934
  "total_videos":"986",
@@ -1071,10 +1037,7 @@
1071
1037
  "is_featured":"1",
1072
1038
  "is_sponsored":"0",
1073
1039
  "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 ;-)",
1040
+ "description":"if it's a time lapse and presented in High Definition video (1280 by 720 or better),\n 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,\n 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,\n 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
1041
  "created_on":"2008-04-08 15:58:51",
1079
1042
  "modified_on":"2009-09-24 14:50:05",
1080
1043
  "total_videos":"1983",
@@ -1233,8 +1196,7 @@
1233
1196
  "is_featured":"1",
1234
1197
  "is_sponsored":"0",
1235
1198
  "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",
1199
+ "description":"A Channel that represents the vimeo VJ Community....All are welcome...A place to share your Live Video Performances,\n 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
1200
  "created_on":"2007-09-25 18:03:48",
1239
1201
  "modified_on":"2009-09-24 11:09:48",
1240
1202
  "total_videos":"205",