brightcove-api 1.0.11 → 1.0.12
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.rvmrc +3 -2
- data/{CHANELOG.markdown → CHANGELOG.markdown} +4 -0
- data/Gemfile +1 -16
- data/LICENSE +1 -1
- data/README.md +52 -36
- data/Rakefile +9 -47
- data/brightcove-api.gemspec +26 -73
- data/lib/brightcove-api.rb +75 -30
- data/lib/brightcove-api/version.rb +5 -0
- data/{test/fakeweb → spec/assets}/movie.mov +0 -0
- data/spec/brightcove-api_spec.rb +137 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/vcr_cassettes/brightcove_media_api_example_query.json +1 -0
- data/spec/vcr_cassettes/delete_video.yml +32 -0
- data/spec/vcr_cassettes/find_all_videos.json +1 -0
- data/spec/vcr_cassettes/find_all_videos_mrss.json +1 -0
- data/spec/vcr_cassettes/post_file.yml +47 -0
- data/spec/vcr_cassettes/post_file_streaming.yml +36 -0
- metadata +186 -107
- data/VERSION +0 -1
- data/test/fakeweb/create_video_response.json +0 -1
- data/test/fakeweb/delete_video_response.json +0 -1
- data/test/fakeweb/find_all_videos_response.json +0 -108
- data/test/fakeweb/find_all_videos_response.xml +0 -1188
- data/test/helper.rb +0 -9
- data/test/test_brightcove-api.rb +0 -173
File without changes
|
@@ -0,0 +1,137 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Brightcove::API do
|
4
|
+
it 'should be the correct version' do
|
5
|
+
Brightcove::API::VERSION.should == '1.0.12'
|
6
|
+
end
|
7
|
+
|
8
|
+
it 'should allow you to set new HTTP headers' do
|
9
|
+
brightcove = Brightcove::API.new('apikeytoken')
|
10
|
+
brightcove.expects(:headers).at_least_once
|
11
|
+
|
12
|
+
brightcove.set_http_headers({'Accept' => 'application/json'})
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'should allow you to set a new default timeout' do
|
16
|
+
brightcove = Brightcove::API.new('apikeytoken')
|
17
|
+
brightcove.expects(:default_timeout).at_least_once
|
18
|
+
|
19
|
+
brightcove.set_timeout(5)
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should allow you to find all videos' do
|
23
|
+
VCR.use_cassette('find_all_videos') do
|
24
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
25
|
+
brightcove_response = brightcove.get('find_all_videos', {:page_size => 5})
|
26
|
+
|
27
|
+
brightcove_response['items'].size.should == 5
|
28
|
+
brightcove_response['page_number'].should == 0
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should allow you to find all videos using MRSS output' do
|
33
|
+
VCR.use_cassette('find_all_videos_mrss') do
|
34
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
35
|
+
brightcove_response = brightcove.get('find_all_videos', {:output => 'mrss'})
|
36
|
+
|
37
|
+
brightcove_response['rss']['channel']['item'].size.should == 85
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'should allow you to search with array parameters' do
|
42
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
43
|
+
brightcove.class.expects(:get).with(anything, has_entry(:query => {
|
44
|
+
:any => ['tag:foo', 'tag:bar'],
|
45
|
+
:command => 'search_videos',
|
46
|
+
:token => '0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.'
|
47
|
+
}))
|
48
|
+
|
49
|
+
brightcove_response = brightcove.get('search_videos', { :any => [ "tag:foo", "tag:bar" ] })
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'should allow you to search with string parameters' do
|
53
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
54
|
+
brightcove.class.expects(:get).with(anything, has_entry(:query => {
|
55
|
+
'any' => ['tag:bar', 'tag:foo'],
|
56
|
+
:command => 'search_videos',
|
57
|
+
:token => '0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.'
|
58
|
+
}))
|
59
|
+
|
60
|
+
brightcove_response = brightcove.get('search_videos', 'any=tag:bar&any=tag:foo' )
|
61
|
+
end
|
62
|
+
|
63
|
+
it 'should allow you to create a more complicated search query' do
|
64
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
65
|
+
brightcove.class.expects(:get).with(anything, has_entry(:query => {
|
66
|
+
:any => ['tag:foo', 'tag:bar'],
|
67
|
+
:all => "search_text:foo",
|
68
|
+
:command => 'search_videos',
|
69
|
+
:token => '0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.'
|
70
|
+
}))
|
71
|
+
|
72
|
+
brightcove_response = brightcove.get('search_videos', { :any => [ "tag:foo", "tag:bar" ], :all => "search_text:foo" })
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'should allow you to construct a query from the Brightcove Media API examples' do
|
76
|
+
VCR.use_cassette('brightcove_media_api_example_query') do
|
77
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
78
|
+
brightcove_response = brightcove.get('search_videos', {
|
79
|
+
:any => [ "tag:color", "tag:technicolor" ],
|
80
|
+
:all => ["football", "chicago", "tag:free"]
|
81
|
+
})
|
82
|
+
|
83
|
+
brightcove_response['items'].size.should == 0
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
it 'should allow you to delete a video' do
|
88
|
+
VCR.use_cassette('delete_video', :serialize_with => :yaml) do
|
89
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
90
|
+
brightcove_response = brightcove.post('delete_video', {:video_id => '595153261337'})
|
91
|
+
|
92
|
+
brightcove_response.should have_key('result')
|
93
|
+
brightcove_response['error'].should be_nil
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
it 'should allow you to create a video using #post_file' do
|
98
|
+
VCR.use_cassette('post_file', :serialize_with => :yaml) do
|
99
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
100
|
+
brightcove_response = brightcove.post_file('create_video',
|
101
|
+
File.join(File.dirname(__FILE__), 'assets', 'movie.mov'),
|
102
|
+
:video => {:shortDescription => "Short Description", :name => "Video"})
|
103
|
+
|
104
|
+
brightcove_response.should have_key('result')
|
105
|
+
brightcove_response['result'].should == 653155417001
|
106
|
+
brightcove_response['error'].should be_nil
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
it 'should allow you to create a video using #post_file_streaming' do
|
111
|
+
VCR.use_cassette('post_file_streaming', :serialize_with => :yaml) do
|
112
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
113
|
+
brightcove_response = brightcove.post_file_streaming('create_video',
|
114
|
+
File.join(File.dirname(__FILE__), 'assets', 'movie.mov'), 'video/quicktime',
|
115
|
+
:video => {:shortDescription => "Short Description", :name => "Video"})
|
116
|
+
|
117
|
+
brightcove_response.should have_key('result')
|
118
|
+
brightcove_response['result'].should == 653155417001
|
119
|
+
brightcove_response['error'].should be_nil
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
|
124
|
+
it 'should allow you to create a video using #post_io_streaming' do
|
125
|
+
VCR.use_cassette('post_file_streaming', :serialize_with => :yaml) do
|
126
|
+
brightcove = Brightcove::API.new('0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.')
|
127
|
+
brightcove_response = File.open(File.join(File.dirname(__FILE__), 'assets', 'movie.mov')) do |file|
|
128
|
+
brightcove.post_io_streaming('create_video', file, 'video/quicktime',
|
129
|
+
:video => {:shortDescription => "Short Description", :name => "Video"})
|
130
|
+
end
|
131
|
+
|
132
|
+
brightcove_response.should have_key('result')
|
133
|
+
brightcove_response['result'].should == 653155417001
|
134
|
+
brightcove_response['error'].should be_nil
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'mocha'
|
2
|
+
require 'rspec'
|
3
|
+
require 'vcr'
|
4
|
+
require 'brightcove-api'
|
5
|
+
|
6
|
+
VCR.configure do |c|
|
7
|
+
c.cassette_library_dir = 'spec/vcr_cassettes'
|
8
|
+
c.hook_into :fakeweb
|
9
|
+
c.default_cassette_options = { :serialize_with => :json }
|
10
|
+
end
|
11
|
+
|
12
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
13
|
+
|
14
|
+
RSpec.configure do |config|
|
15
|
+
config.extend VCR::RSpec::Macros
|
16
|
+
config.mock_framework = :mocha
|
17
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"http://api.brightcove.com/services/library?all=chicago&all=football&all=tag%3Afree&any=tag%3Acolor&any=tag%3Atechnicolor&command=search_videos&token=0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.","body":{"encoding":"US-ASCII","string":""},"headers":{"user-agent":["brightcove-api gem 1.0.11"],"connection":["close"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"x-bc-client-ip":["184.74.8.254"],"x-bc-connecting-ip":["184.74.8.254"],"last-modified":["Mon, 14 May 2012 12:42:27 GMT"],"cache-control":["must-revalidate,max-age=0"],"content-type":["application/json;charset=UTF-8"],"content-length":["61"],"date":["Mon, 14 May 2012 12:42:26 GMT"],"server":["brightcove"]},"body":{"encoding":"US-ASCII","string":"{\"items\":[],\"page_number\":0,\"page_size\":100,\"total_count\":-1}"},"http_version":"1.1"},"recorded_at":"Mon, 14 May 2012 12:42:27 GMT"}],"recorded_with":"VCR 2.1.1"}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://api.brightcove.com/services/post
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: json=%7B%22method%22%3A%22delete_video%22%2C%22params%22%3A%7B%22video_id%22%3A%22595153261337%22%2C%22token%22%3A%220Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.%22%7D%7D
|
9
|
+
headers:
|
10
|
+
user-agent:
|
11
|
+
- brightcove-api gem 1.0.11
|
12
|
+
connection:
|
13
|
+
- close
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
content-type:
|
20
|
+
- application/json;charset=UTF-8
|
21
|
+
content-length:
|
22
|
+
- '104'
|
23
|
+
date:
|
24
|
+
- Mon, 14 May 2012 12:47:30 GMT
|
25
|
+
server:
|
26
|
+
- !binary ""
|
27
|
+
body:
|
28
|
+
encoding: US-ASCII
|
29
|
+
string: ! '{"result":{}, "id":null, "error":null}'
|
30
|
+
http_version: '1.1'
|
31
|
+
recorded_at: Mon, 14 May 2012 12:47:30 GMT
|
32
|
+
recorded_with: VCR 2.1.1
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"http://api.brightcove.com/services/library?command=find_all_videos&page_size=5&token=0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.","body":{"encoding":"US-ASCII","string":""},"headers":{"user-agent":["brightcove-api gem 1.0.11"],"connection":["close"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"x-bc-client-ip":["184.74.8.254"],"x-bc-connecting-ip":["184.74.8.254"],"last-modified":["Mon, 14 May 2012 12:32:40 GMT"],"cache-control":["must-revalidate,max-age=0"],"content-type":["application/json;charset=UTF-8"],"content-length":["4102"],"date":["Mon, 14 May 2012 12:32:39 GMT"],"server":["brightcove"]},"body":{"encoding":"US-ASCII","string":"{\"items\":[{\"id\":496518762,\"name\":\"Documentarian Skydiving\",\"adKeys\":null,\"shortDescription\":\"Thrill seekers document their adventure, from the door of the plane all the way to the ground.\",\"longDescription\":null,\"creationDate\":\"1171267200000\",\"publishedDate\":\"1171324433253\",\"lastModifiedDate\":\"1263581295791\",\"linkURL\":null,\"linkText\":null,\"tags\":[\"adventure\",\"base jumping\"],\"videoStillURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_502534831_9c1e5fe9c3e95ca5009e7ceb68df2915ff669774.jpg?pubId=270881183\",\"thumbnailURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_502534822_86408e4e20580f7bf0b41c82be8ca9f4b95fb055.jpg?pubId=270881183\",\"referenceId\":\"title006\",\"length\":111077,\"economics\":\"FREE\",\"playsTotal\":1427,\"playsTrailingWeek\":3},{\"id\":496518763,\"name\":\"Surface Tricks\",\"adKeys\":null,\"shortDescription\":\"Instructions on how to do the most common snowboarding tricks that are performed on the ground.\",\"longDescription\":null,\"creationDate\":\"1171267200000\",\"publishedDate\":\"1225126643431\",\"lastModifiedDate\":\"1250624757582\",\"linkURL\":null,\"linkText\":null,\"tags\":[\"adventure\",\"snowboarding\"],\"videoStillURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_34465520001_asset-1250624757522.jpg?pubId=270881183\",\"thumbnailURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_34465519001_asset-1250624757285.jpg?pubId=270881183\",\"referenceId\":\"surface\",\"length\":70337,\"economics\":\"FREE\",\"playsTotal\":18947,\"playsTrailingWeek\":23},{\"id\":496518765,\"name\":\"Free Skiing\",\"adKeys\":null,\"shortDescription\":\"Hot dog skiing of the 1970s has begun a new life as Freeskiing. Often referred to as New School, Freeride, Park Skiing or Slopestyle, Freeskiing boasts of innovative young skiers who quest for something more extreme and radical than the norm.\",\"longDescription\":null,\"creationDate\":\"1171267200000\",\"publishedDate\":\"1171324434490\",\"lastModifiedDate\":\"1205689028256\",\"linkURL\":null,\"linkText\":null,\"tags\":[\"adventure\",\"snowboarding\"],\"videoStillURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_1459169542_55bfa4b674d1d31c469b91af71d8e81baad2ab32.jpg?pubId=270881183\",\"thumbnailURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_1459169541_b317544d5275ab9df2d3030da2f8cbefde8fbdea.jpg?pubId=270881183\",\"referenceId\":\"title009\",\"length\":11611,\"economics\":\"FREE\",\"playsTotal\":16795,\"playsTrailingWeek\":20},{\"id\":496518766,\"name\":\"Wild Slopes '06\",\"adKeys\":null,\"shortDescription\":\"A ski and snowboard movie that challenges the hype and dares you to see what freeskiing and snowboarding have become. Documenting the very best of this year's riding and culture.\",\"longDescription\":null,\"creationDate\":\"1171267200000\",\"publishedDate\":\"1171324434811\",\"lastModifiedDate\":\"1171324523307\",\"linkURL\":null,\"linkText\":null,\"tags\":[\"adventure\",\"snowboarding\"],\"videoStillURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_502534838_f80fe64f052328cd3b2e158d7234003a23091845.jpg?pubId=270881183\",\"thumbnailURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_502534829_94499905676eb7cd04a558da2adcf6a34f437b88.jpg?pubId=270881183\",\"referenceId\":\"title010\",\"length\":51251,\"economics\":\"FREE\",\"playsTotal\":21592,\"playsTrailingWeek\":45},{\"id\":1456328434,\"name\":\"Create Playlist & Edit Videos\",\"adKeys\":null,\"shortDescription\":\"In this video, we'll show you how to create manual and automatic playlists and how to edit video properties.\",\"longDescription\":null,\"creationDate\":\"1205391600000\",\"publishedDate\":\"1308673197293\",\"lastModifiedDate\":\"1308673197302\",\"linkURL\":null,\"linkText\":null,\"tags\":[\"media manager video tutorial\"],\"videoStillURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_1459078810_3d0167ab3a464f5ab9397a7bec886c0d2d7c2f11.jpg?pubId=270881183\",\"thumbnailURL\":\"http:\\/\\/brightcove.vo.llnwd.net\\/e1\\/pd\\/270881183\\/270881183_1457702988_51ed0c1dc7bc89c3e42a807a2b676c4778de6660.jpg?pubId=270881183\",\"referenceId\":null,\"length\":216466,\"economics\":\"FREE\",\"playsTotal\":97,\"playsTrailingWeek\":1}],\"page_number\":0,\"page_size\":5,\"total_count\":-1}"},"http_version":"1.1"},"recorded_at":"Mon, 14 May 2012 12:32:40 GMT"}],"recorded_with":"VCR 2.1.1"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"http://api.brightcove.com/services/library?command=find_all_videos&format=xml&output=mrss&token=0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.","body":{"encoding":"US-ASCII","string":""},"headers":{"user-agent":["brightcove-api gem 1.0.11"],"connection":["close"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"x-bc-client-ip":["184.74.8.254"],"x-bc-connecting-ip":["184.74.8.254"],"last-modified":["Mon, 14 May 2012 12:33:59 GMT"],"cache-control":["must-revalidate,max-age=0"],"content-type":["application/xml;charset=UTF-8"],"content-length":["73602"],"vary":["Accept-Encoding"],"date":["Mon, 14 May 2012 12:33:59 GMT"],"server":["brightcove"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<rss version=\"2.0\" xmlns:media=\"http://search.yahoo.com/mrss/\" xmlns:bc=\"http://www.brightcove.tv/link\" xmlns:dcterms=\"http://purl.org/dc/terms/\">\n <channel>\n <title>Find All Videos</title>\n <link>http://api.brightcove.com/services/library?command=find_all_videos&output=mrss&token=0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.</link>\n <description/>\n <copyright>Copyright 2012</copyright>\n <lastBuildDate>Mon, 14 May 2012 05:33:59 -0700</lastBuildDate>\n <generator>http://www.brightcove.com/?v=1.0</generator>\n <item>\n <title>Documentarian Skydiving</title>\n <link/>\n <description>Thrill seekers document their adventure, from the door of the plane all the way to the ground.</description>\n <guid>video496518762</guid>\n <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>\n <media:keywords>adventure,base jumping</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534822_86408e4e20580f7bf0b41c82be8ca9f4b95fb055.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534831_9c1e5fe9c3e95ca5009e7ceb68df2915ff669774.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518762</bc:titleid>\n <bc:duration>111</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Surface Tricks</title>\n <link/>\n <description>Instructions on how to do the most common snowboarding tricks that are performed on the ground.</description>\n <guid>video496518763</guid>\n <pubDate>Tue, 18 Aug 2009 12:45:57 -0700</pubDate>\n <media:keywords>adventure,snowboarding</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34465519001_asset-1250624757285.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34465520001_asset-1250624757522.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518763</bc:titleid>\n <bc:duration>70</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Free Skiing</title>\n <link/>\n <description>Hot dog skiing of the 1970s has begun a new life as Freeskiing. Often referred to as New School, Freeride, Park Skiing or Slopestyle, Freeskiing boasts of innovative young skiers who quest for something more extreme and radical than the norm.</description>\n <guid>video496518765</guid>\n <pubDate>Sun, 16 Mar 2008 10:37:08 -0700</pubDate>\n <media:keywords>adventure,snowboarding</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459169541_b317544d5275ab9df2d3030da2f8cbefde8fbdea.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459169542_55bfa4b674d1d31c469b91af71d8e81baad2ab32.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518765</bc:titleid>\n <bc:duration>11</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Wild Slopes '06</title>\n <link/>\n <description>A ski and snowboard movie that challenges the hype and dares you to see what freeskiing and snowboarding have become. Documenting the very best of this year's riding and culture.</description>\n <guid>video496518766</guid>\n <pubDate>Mon, 12 Feb 2007 15:55:23 -0800</pubDate>\n <media:keywords>snowboarding,adventure</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534829_94499905676eb7cd04a558da2adcf6a34f437b88.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534838_f80fe64f052328cd3b2e158d7234003a23091845.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518766</bc:titleid>\n <bc:duration>51</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Create Playlist & Edit Videos</title>\n <link/>\n <description>In this video, we'll show you how to create manual and automatic playlists and how to edit video properties.</description>\n <guid>video1456328434</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords>media manager video tutorial</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1457702988_51ed0c1dc7bc89c3e42a807a2b676c4778de6660.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078810_3d0167ab3a464f5ab9397a7bec886c0d2d7c2f11.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1456328434</bc:titleid>\n <bc:duration>216</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Upload & Organize Videos</title>\n <link/>\n <description>In this video, we'll show you how to launch the Media Manager, quickly upload a few new videos, and place them into an existing lineup.</description>\n <guid>video1457130040</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords>media manager video tutorial</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1457728820_141301bd936efc6128e5b1d121dba65bf7528f16.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078809_7a1fe91d3a0df4c232dbeb6e443f9a99f405985c.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1457130040</bc:titleid>\n <bc:duration>206</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Demo Title 2</title>\n <link/>\n <description>Short Description</description>\n <guid>video276024035</guid>\n <pubDate>Thu, 19 Oct 2006 00:00:00 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_275925069_d1f97c7f07f2a3f4de7b38eda3761f16f39d2a99.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_275943599_b7e2ca63c0311fa3f0b027304b41d252f12d2d66.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>276024035</bc:titleid>\n <bc:duration>418</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Hot Air Balloon Jump</title>\n <link/>\n <description>Hot air balloons serve as launch pads for professional BASE jumpers looking to perfect their aerial dance.</description>\n <guid>video496518757</guid>\n <pubDate>Mon, 12 Feb 2007 15:54:29 -0800</pubDate>\n <media:keywords>adventure,base jumping</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534821_cf1d73da5e3c837fffb14460c910bc8f547c4768.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534830_38f8ea9b79a6874b3688d7d21c1d95365c236b13.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518757</bc:titleid>\n <bc:duration>41</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Media Manager Introduction</title>\n <link/>\n <description>A brief introduction to the Media Manager, a new way to create and organize your media.</description>\n <guid>video1456303179</guid>\n <pubDate>Sun, 16 Mar 2008 10:56:56 -0700</pubDate>\n <media:keywords>media manager video tutorial</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1457728817_05277594d1532e7e468d042c9df0781892259336.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459096133_d809904b62354120ab28ffff60246997ecc2b1c0.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1456303179</bc:titleid>\n <bc:duration>118</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Skydiving Ballet</title>\n <link/>\n <description>Thrill seekers fly 12,000 feet above Abel Tasman National Park and practice their skydiving ballet.</description>\n <guid>video496518761</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>\n <media:keywords>base jumping,adventure</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534824_292fd5a37fc25201f7a8ae6f152e4bde82b902bd.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534833_c6aae4a710127d35eb28f031dd897a7fd40f94a3.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518761</bc:titleid>\n <bc:duration>90</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Flying Off Bridges</title>\n <link/>\n <description>Queens Town, often called the world's capital of Bungee Jumping, hosts thousands of tourists every year for the thrill of the jump.</description>\n <guid>video496518759</guid>\n <pubDate>Mon, 12 Feb 2007 15:55:15 -0800</pubDate>\n <media:keywords>adventure,base jumping</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534822_86408e4e20580f7bf0b41c82be8ca9f4b95fb055.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534831_9c1e5fe9c3e95ca5009e7ceb68df2915ff669774.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518759</bc:titleid>\n <bc:duration>70</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>White Water Adventure</title>\n <link/>\n <description>A quirky guide keeps the team moving through the rapids and staying above water.</description>\n <guid>video496518758</guid>\n <pubDate>Mon, 12 Feb 2007 15:54:51 -0800</pubDate>\n <media:keywords>adventure,white water rafting</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534827_03abe9599f83eb3ebf91f7411faa7bda3c59c32a.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534835_6504406086a360c48ca69dc4906e2a84ba4f398e.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518758</bc:titleid>\n <bc:duration>126</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Open Run Mountain</title>\n <link/>\n <description>Instructions on how to do the most common snowboarding tricks that are performed on the ground.</description>\n <guid>video496518764</guid>\n <pubDate>Mon, 27 Oct 2008 09:57:23 -0700</pubDate>\n <media:keywords>snowboarding,adventure</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459191288_23d31aad23006f975927ea89c404222b2c31aa49.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459191289_9076a70a0d842372f4bfef950dc3218433db1b78.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518764</bc:titleid>\n <bc:duration>70</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Demo Title 1</title>\n <link/>\n <description>Short Description</description>\n <guid>video276063117</guid>\n <pubDate>Thu, 19 Oct 2006 00:00:00 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_275925064_470bf5f5c8794ff7ec7092ceb4a8746c7efe909e.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_275943595_d18f85ff70509459c212b5dcfb6b6acb3fd1c877.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>276063117</bc:titleid>\n <bc:duration>526</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Jumping Off Cliffs in New Zealand</title>\n <link/>\n <description>Two adventurers in Queenstown, New Zealand, climb to the top of a cliff and BASE jump to the bottom of a mountain river gorge.</description>\n <guid>video496518760</guid>\n <pubDate>Mon, 12 Feb 2007 15:55:05 -0800</pubDate>\n <media:keywords>adventure,base jumping</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534822_86408e4e20580f7bf0b41c82be8ca9f4b95fb055.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_502534831_9c1e5fe9c3e95ca5009e7ceb68df2915ff669774.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>496518760</bc:titleid>\n <bc:duration>102</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Publishing Experiences in Flash</title>\n <link/>\n <description>Publishing Experiences in Flash</description>\n <guid>video1459156574</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords>tutorial</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183\" width=\"120\"/>\n <bc:titleid>1459156574</bc:titleid>\n <bc:duration>171</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Publishing Experiences in HTML</title>\n <link/>\n <description>Publishing experiences in HTML pages.</description>\n <guid>video1459160568</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords>tutorial</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183\" width=\"120\"/>\n <bc:titleid>1459160568</bc:titleid>\n <bc:duration>65</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Full-Screen in ActionScript</title>\n <link/>\n <description>Experience API in ActionScript</description>\n <guid>video1459158571</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords>tutorial</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1460801112_011b1dede803816310ace0d3371bd5093de52cf8.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1460801113_1ca5a2d5500930b3e80233c9c4d4d31e6ed2b108.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1459158571</bc:titleid>\n <bc:duration>147</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Library API Overview</title>\n <link/>\n <description>Library API Overview</description>\n <guid>video1459202649</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords>tutorial</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459096132_5b3c29c757adada8c2484eb39722ec2973bfed10.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459061577_0fd63632391e77b5d3ec4f572eb74e86bd2432ee.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1459202649</bc:titleid>\n <bc:duration>550</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Media Manager Overview - DO NOT DELETE</title>\n <link/>\n <description>DO NOT DELETE!!! beta site title</description>\n <guid>video1499645465</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1457728817_05277594d1532e7e468d042c9df0781892259336.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078809_7a1fe91d3a0df4c232dbeb6e443f9a99f405985c.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1499645465</bc:titleid>\n <bc:duration>206</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Advertising Manager Overview - DO NOT DELETE</title>\n <link/>\n <description>for beta site dashboard player. do not delete!!!</description>\n <guid>video1499645471</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <bc:titleid>1499645471</bc:titleid>\n <bc:duration>216</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Experience Manager Overview - DO NOT DELETE!</title>\n <link/>\n <description>DO NOT DELETE</description>\n <guid>video1499642493</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1499642493</bc:titleid>\n <bc:duration>155</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>BC 3 Quick Start Tour</title>\n <link/>\n <description>A guided tour of our new Beta modules and Help Center</description>\n <guid>video1551027534</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1552625948_1035b9f4de85f6fb9fa186434eb98a108cc1f47b.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1552625948_1035b9f4de85f6fb9fa186434eb98a108cc1f47b.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1551027534</bc:titleid>\n <bc:duration>206</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Welcome to Brightcove 3</title>\n <link/>\n <description>Jeremy Allaire welcomes you to the Beta and shares his vision for BC 3!</description>\n <guid>video1551027532</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1552625947_526f1f69db6fbbd46c18db614bb62f761f73f9b7.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1552635761_536a7c9a04a87365009b9de3a53b0144fe38b5ad.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1551027532</bc:titleid>\n <bc:duration>84</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>BC 3 Quick Start Tour</title>\n <link/>\n <description>A short guided tour of the BC 3 modules and Help Center.</description>\n <guid>video1608823237</guid>\n <pubDate>Sat, 04 Oct 2008 22:20:43 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1613832829_bc3.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1614019202_bc3.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1608823237</bc:titleid>\n <bc:duration>114</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Publishing Players in HTML</title>\n <link/>\n <description>How to publish single video and playlist players in an HTML webpage.</description>\n <guid>video1607328878</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1606886319_publishing-still.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1607328878</bc:titleid>\n <bc:duration>114</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>publishinghtml2</title>\n <link/>\n <description>publishinghtml2</description>\n <guid>video1608823304</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <bc:titleid>1608823304</bc:titleid>\n <bc:duration>114</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>J-Allaire</title>\n <link/>\n <description>J-Allaire</description>\n <guid>video1612710564</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1612793711_th-270881183-vid1612712254-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1612793710_vs-270881183-vid1612712254-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1612710564</bc:titleid>\n <bc:duration>84</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>helpvideo1</title>\n <link/>\n <description>helpvideo1</description>\n <guid>video1607328886</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords>test</media:keywords>\n <bc:titleid>1607328886</bc:titleid>\n <bc:duration>114</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Jeremy-Beta-App-v2</title>\n <link/>\n <description>Jeremy-Beta-App-v2</description>\n <guid>video1612584770</guid>\n <pubDate>Mon, 16 Jun 2008 14:57:19 -0700</pubDate>\n <media:keywords/>\n <bc:titleid>1612584770</bc:titleid>\n <bc:duration>84</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>helpvideo</title>\n <link/>\n <description>helpvideo</description>\n <guid>video1610678364</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <bc:titleid>1610678364</bc:titleid>\n <bc:duration>114</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>video name</title>\n <link/>\n <description>description</description>\n <guid>video1631470976</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1653695066_th-270881183-vid1631309161-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1653695065_vs-270881183-vid1631309161-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1631470976</bc:titleid>\n <bc:duration>3</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>video name</title>\n <link/>\n <description>description</description>\n <guid>video1631312170</guid>\n <pubDate>Mon, 07 Jul 2008 15:57:55 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1653695071_th-270881183-vid1631311670-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1653695070_vs-270881183-vid1631311670-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1631312170</bc:titleid>\n <bc:duration>3</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Brightcove 3 Intro Webinar</title>\n <link/>\n <description>In this webinar, Sr. Product Manager Bivha Singh gives a comprehensive tour of the Brightcove 3 Beta.</description>\n <guid>video1736992854</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1738720777_BC3-Intro-Webinar-Thumb.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1738753570_BC3-Intro-Webinar-Still.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1736992854</bc:titleid>\n <bc:duration>3240</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Welcome to Brightcove 3</title>\n <link/>\n <description>Tareef Kawaf, Brightcove's SVP of Engineering, welcomes you to Brightcove 3.</description>\n <guid>video1858922805</guid>\n <pubDate>Mon, 27 Oct 2008 12:04:21 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1858983740_brightcove3-thumb.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1858994782_vid-StudioDashboards.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1858922805</bc:titleid>\n <bc:duration>53</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Welcome to the Help Center</title>\n <link/>\n <description>Bob Mason, Brightcove's CTO, welcomes you to the Help & Community site.</description>\n <guid>video1858922804</guid>\n <pubDate>Mon, 27 Oct 2008 12:04:21 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1858994572_helpcenter-thumb.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1858994785_vid-HelpCenterDashboard.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1858922804</bc:titleid>\n <bc:duration>32</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Welcome to Brightcove 3</title>\n <link/>\n <description>Tareef Kawaf, Brightcove's SVP of Engineering, welcomes you to Brightcove 3 and the Brightcove Studio.</description>\n <guid>video1861199444</guid>\n <pubDate>Thu, 16 Oct 2008 12:29:10 -0700</pubDate>\n <media:keywords>help</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1861240567_brightcove3-thumb.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1861238594_brightcove3-still.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1861199444</bc:titleid>\n <bc:duration>53</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Welcome to the Help Center</title>\n <link/>\n <description>Bob Mason, Brightcove's CTO, introduces the Help & Community center.</description>\n <guid>video1861222060</guid>\n <pubDate>Thu, 16 Oct 2008 12:40:20 -0700</pubDate>\n <media:keywords>help</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1861202907_helpcenter-thumb.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1861240589_helpcenter-still.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1861222060</bc:titleid>\n <bc:duration>32</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>website 2</title>\n <link/>\n <description>website 2</description>\n <guid>video1887748257</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1887743441_th-270881183-vid1887795751-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_1887743440_vs-270881183-vid1887795751-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1887748257</bc:titleid>\n <bc:duration>81</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Testvideo 3-Tagewetter</title>\n <link/>\n <description>Lorem Ipsum</description>\n <guid>video3188423001</guid>\n <pubDate>Tue, 25 Nov 2008 02:11:45 -0800</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_3211755001_th-270881183-vid3212672001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_3211754001_vs-270881183-vid3212672001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>3188423001</bc:titleid>\n <bc:duration>19</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Developer Network - Subtitle Example Movie</title>\n <link/>\n <description>Developer Training - Subtitle Example Movie</description>\n <guid>video3905580001</guid>\n <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_3906244001_wowthumb.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_3906822001_wow.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>3905580001</bc:titleid>\n <bc:duration>206</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>DR080284_heartbeat_ep20_1_4_BC3SMALLMED</title>\n <link/>\n <description>DR080284_heartbeat_ep20_1_4_BC3SMALLMED</description>\n <guid>video4501142001</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_4528935001_th-270881183-vid4525445001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_4528934001_vs-270881183-vid4525445001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>4501142001</bc:titleid>\n <bc:duration>781</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Anthony Rother - Biomechanik</title>\n <link/>\n <description>Anthony Rother - Biomechanik</description>\n <guid>video8322910001</guid>\n <pubDate>Fri, 16 Jan 2009 06:36:49 -0800</pubDate>\n <media:keywords>music</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_8322864001_th-270881183-vid8321817001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_8322863001_vs-270881183-vid8321817001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>8322910001</bc:titleid>\n <bc:duration>177</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Introduction to Brightcove</title>\n <link/>\n <description>Brightcove is an on-demand online video platform. Designed for use with professional websites, Brightcove provides everything you need to publish and distribute online video.</description>\n <guid>video12061338001</guid>\n <pubDate>Fri, 13 Feb 2009 14:19:23 -0800</pubDate>\n <media:keywords>sales demo,flv</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064555001_th-270881183-vid12063042001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064554001_vs-270881183-vid12063042001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12061338001</bc:titleid>\n <bc:duration>43</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>lores-part4</title>\n <link/>\n <description>lores-part4</description>\n <guid>video12061350001</guid>\n <pubDate>Fri, 13 Feb 2009 10:53:48 -0800</pubDate>\n <media:keywords>flv,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064645001_th-270881183-vid12063066001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064644001_vs-270881183-vid12063066001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12061350001</bc:titleid>\n <bc:duration>114</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Uploading Videos to Brightcove</title>\n <link/>\n <description>Simultaneously upload multiple videos to Brightcove directly through your browser, or create a batch to easily upload entire libraries. Uploaded videos can be encoded automatically to Adobe Flash VP6 and H.264 video formats.</description>\n <guid>video12061364001</guid>\n <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>\n <media:keywords>sales demo,H264</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12184083001_paragraph1.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181176001_paragraph1.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12061364001</bc:titleid>\n <bc:duration>70</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>The Brightcove 3 Studio</title>\n <link/>\n <description>The Brightcove Studio is home to all of the Brightcove modules. It is designed to make your team as productive and efficient as possible. At the same time it is flexible enough to adapt to the unique needs of your workflow.</description>\n <guid>video12068198001</guid>\n <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>\n <media:keywords>H264,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12172363001_Untitled-3.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12172362001_Untitled-3.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12068198001</bc:titleid>\n <bc:duration>43</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>part10</title>\n <link/>\n <description>part10</description>\n <guid>video12068267001</guid>\n <pubDate>Fri, 13 Feb 2009 12:07:39 -0800</pubDate>\n <media:keywords>flv,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12082704001_th-270881183-vid12080362001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12082703001_vs-270881183-vid12080362001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12068267001</bc:titleid>\n <bc:duration>69</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Video Metadata and Policy Management</title>\n <link/>\n <description>Easily manage metadata and policies for your video content. Select multiple videos to edit shared settings all at once.</description>\n <guid>video12061391001</guid>\n <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>\n <media:keywords>sales demo,H264</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181161001_paragraph2.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12183554001_paragraph2.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12061391001</bc:titleid>\n <bc:duration>114</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Playlist Creation & Management</title>\n <link/>\n <description>Organize content into playlists that can be added to video players. Manually order content or create smart playlists that automatically add videos according to your own specifications.</description>\n <guid>video12061361001</guid>\n <pubDate>Fri, 13 Feb 2009 14:53:16 -0800</pubDate>\n <media:keywords>sales demo,H264</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12184068001_paragraph3.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12183557001_paragraph3.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12061361001</bc:titleid>\n <bc:duration>58</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Developer Tools & Technology Partners</title>\n <link/>\n <description>As an open platform, Brightcove provides core functionality and information that can be used to develop custom applications. From rich user experiences to deep technology integrations, Brightcove provides the resources your developers need.</description>\n <guid>video12068287001</guid>\n <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>\n <media:keywords>H264,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12170392001_Untitled-6.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181127001_Untitled-6.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12068287001</bc:titleid>\n <bc:duration>69</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Adding Content to your Players</title>\n <link/>\n <description>Once you've uploaded your video content and created players, you need to tie them together, so that the right player displays the right video content.</description>\n <guid>video12064397001</guid>\n <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>\n <media:keywords>H264,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181149001_Untitled-4.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181150001_Untitled-4.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12064397001</bc:titleid>\n <bc:duration>39</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Introduction to Brightcove</title>\n <link/>\n <description>Brightcove is an on-demand online video platform. Designed for use with professional websites, Brightcove provides everything you need to publish and distribute online video.</description>\n <guid>video12064382001</guid>\n <pubDate>Fri, 13 Feb 2009 15:03:10 -0800</pubDate>\n <media:keywords>H264,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12067674001_th-270881183-vid12063405001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12067673001_vs-270881183-vid12063405001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12064382001</bc:titleid>\n <bc:duration>43</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>part6</title>\n <link/>\n <description>part6</description>\n <guid>video12061357001</guid>\n <pubDate>Fri, 13 Feb 2009 10:54:44 -0800</pubDate>\n <media:keywords>sales demo,flv</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12067597001_th-270881183-vid12063075001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12067596001_vs-270881183-vid12063075001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12061357001</bc:titleid>\n <bc:duration>39</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Creating Player Templates and Publishing Players</title>\n <link/>\n <description>With Brightcove, you'll be able to deliver experiences that deeply integrate video with the rest of your content, adapt to a viewer's connection, and provide high-quality & long-form content that increases the time viewers spend on your site.</description>\n <guid>video12084670001</guid>\n <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>\n <media:keywords>H264,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12172374001_Untitled-5.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12166053001_Untitled-5.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12084670001</bc:titleid>\n <bc:duration>155</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>part3</title>\n <link/>\n <description>part3</description>\n <guid>video12053699001</guid>\n <pubDate>Fri, 13 Feb 2009 10:49:47 -0800</pubDate>\n <media:keywords>sales demo,flv</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064593001_th-270881183-vid12058035001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064592001_vs-270881183-vid12058035001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12053699001</bc:titleid>\n <bc:duration>70</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>part9</title>\n <link/>\n <description>part9</description>\n <guid>video12068273001</guid>\n <pubDate>Fri, 13 Feb 2009 12:12:03 -0800</pubDate>\n <media:keywords>sales demo,flv</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12082715001_th-270881183-vid12080372001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12082714001_vs-270881183-vid12080372001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12068273001</bc:titleid>\n <bc:duration>77</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>part5</title>\n <link/>\n <description>part5</description>\n <guid>video12061355001</guid>\n <pubDate>Fri, 13 Feb 2009 10:54:54 -0800</pubDate>\n <media:keywords>flv,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12067585001_th-270881183-vid12063074001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12067584001_vs-270881183-vid12063074001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12061355001</bc:titleid>\n <bc:duration>58</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>The Brightcove 3 Studio</title>\n <link/>\n <description>The Brightcove Studio is home to all of the Brightcove modules. It is designed to make your team as productive and efficient as possible. At the same time it is flexible enough to adapt to the unique needs of your workflow.</description>\n <guid>video12053705001</guid>\n <pubDate>Fri, 13 Feb 2009 14:20:41 -0800</pubDate>\n <media:keywords>sales demo,flv</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064571001_th-270881183-vid12058042001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12064570001_vs-270881183-vid12058042001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12053705001</bc:titleid>\n <bc:duration>43</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>part7and8</title>\n <link/>\n <description>part7and8</description>\n <guid>video12082368001</guid>\n <pubDate>Fri, 13 Feb 2009 12:22:20 -0800</pubDate>\n <media:keywords>flv,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12087221001_th-270881183-vid12084211001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12087220001_vs-270881183-vid12084211001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12082368001</bc:titleid>\n <bc:duration>155</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Online Video Advertising & Distribution</title>\n <link/>\n <description>Harness the full potential of your content through innovative and flexible online video advertising options. By integrating with leading ad servers and custom 3rd-party ad solutions, you can stay focused while we handle the technology.</description>\n <guid>video12082372001</guid>\n <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>\n <media:keywords>H264,sales demo</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181107001_Untitled-ad.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181105001_Untitled-ad.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>12082372001</bc:titleid>\n <bc:duration>77</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>do not delete! using image for studio promo</title>\n <link/>\n <description>do not delete this video ! emily - mar 09</description>\n <guid>video17184052001</guid>\n <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26425235001_maintenance-image.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>17184052001</bc:titleid>\n <bc:duration>29</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Ad Creatives: Review of SWF Guidelines</title>\n <link/>\n <description>Crystal West, Brightcove Software Engineer, reviews the Brightcove ad creative guidelines and documentation.</description>\n <guid>video22441804001</guid>\n <pubDate>Thu, 07 May 2009 15:35:04 -0700</pubDate>\n <media:keywords>engineer,creative,Ad,training,adops,crystal</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_12181107001_Untitled-ad.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_22460675001_adimage.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>22441804001</bc:titleid>\n <bc:duration>633</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>part2-troubleshooting</title>\n <link/>\n <description>part2-troubleshooting</description>\n <guid>video22480492001</guid>\n <pubDate>Thu, 07 May 2009 15:23:36 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_22483909001_th-270881183-vid22480613001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_22483908001_vs-270881183-vid22480613001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>22480492001</bc:titleid>\n <bc:duration>2256</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Dolphins</title>\n <link/>\n <description>Dolphins</description>\n <guid>video26511963001</guid>\n <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>\n <media:keywords>custom skins,sea</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26531197001_dolphins.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26519372001_vs-270881183-vid26510372001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26511963001</bc:titleid>\n <bc:duration>12</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Clown Fish</title>\n <link/>\n <description>Ah, the wonders of nature</description>\n <guid>video26512544001</guid>\n <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>\n <media:keywords>sea,custom skins</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26530719001_clownFish.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26518832001_vs-270881183-vid26510567001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26512544001</bc:titleid>\n <bc:duration>29</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Sea Horse</title>\n <link/>\n <description>Sea Horse</description>\n <guid>video26514904001</guid>\n <pubDate>Tue, 16 Jun 2009 12:31:23 -0700</pubDate>\n <media:keywords>sea,custom skins</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26525426001_seaHorse.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26522529001_vs-270881183-vid26514288001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26514904001</bc:titleid>\n <bc:duration>29</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Jellyfish</title>\n <link/>\n <description>Jellyfish</description>\n <guid>video26512561001</guid>\n <pubDate>Tue, 16 Jun 2009 12:41:40 -0700</pubDate>\n <media:keywords>custom skins,sea</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26530711001_jellyFish.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26519430001_vs-270881183-vid26513829001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26512561001</bc:titleid>\n <bc:duration>28</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Sea Turtle</title>\n <link/>\n <description>Sea Turtle</description>\n <guid>video26515315001</guid>\n <pubDate>Tue, 16 Jun 2009 12:10:26 -0700</pubDate>\n <media:keywords>sea,custom skins</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26522393001_th-270881183-vid26516502001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26522392001_vs-270881183-vid26516502001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26515315001</bc:titleid>\n <bc:duration>13</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Sea Crab</title>\n <link/>\n <description>Sea Crab</description>\n <guid>video26512546001</guid>\n <pubDate>Wed, 17 Jun 2009 08:02:32 -0700</pubDate>\n <media:keywords>custom skins,sea</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26518841001_th-270881183-vid26510570001-img0000.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26510535001_playerChrome-skin.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26512546001</bc:titleid>\n <bc:duration>29</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Lion Fish</title>\n <link/>\n <description>Lion Fish</description>\n <guid>video26515638001</guid>\n <pubDate>Tue, 16 Jun 2009 12:41:07 -0700</pubDate>\n <media:keywords>custom skins,sea</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26530685001_lionFish.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26521860001_vs-270881183-vid26513846001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26515638001</bc:titleid>\n <bc:duration>28</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Sea Anenome</title>\n <link/>\n <description>Sea Anenome</description>\n <guid>video26515322001</guid>\n <pubDate>Tue, 16 Jun 2009 12:29:09 -0700</pubDate>\n <media:keywords>custom skins,sea</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26528599001_anemone.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26524624001_vs-270881183-vid26516515001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26515322001</bc:titleid>\n <bc:duration>25</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Sea Turtle</title>\n <link/>\n <description>Sea Turtle</description>\n <guid>video26514920001</guid>\n <pubDate>Tue, 16 Jun 2009 12:29:48 -0700</pubDate>\n <media:keywords>sea,custom skins</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26525423001_seaTurtle.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_26522387001_vs-270881183-vid26514314001-img0000.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>26514920001</bc:titleid>\n <bc:duration>29</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Dragonfly</title>\n <link/>\n <description>Ah, the wonders of nature</description>\n <guid>video34442090001</guid>\n <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>\n <media:keywords>bugs</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34456853001_th-34452567001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34456852001_vs-34452567001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34442090001</bc:titleid>\n <bc:duration>17</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Butterfly</title>\n <link/>\n <description>Ah, the wonders of nature</description>\n <guid>video34441794001</guid>\n <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>\n <media:keywords>bugs</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34461777001_th-34452694001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34461776001_vs-34452694001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34441794001</bc:titleid>\n <bc:duration>27</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Satellite</title>\n <link/>\n <description>Satellite</description>\n <guid>video34442060001</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34453517001_th-34442202001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34453516001_vs-34442202001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34442060001</bc:titleid>\n <bc:duration>19</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Bee</title>\n <link/>\n <description>Ah, the wonders of nature</description>\n <guid>video34459290001</guid>\n <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>\n <media:keywords>bugs</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34461747001_th-34454703001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34461746001_vs-34454703001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34459290001</bc:titleid>\n <bc:duration>29</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Galaxy</title>\n <link/>\n <description>Galaxy</description>\n <guid>video34441770001</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34456350001_th-34452652001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34456349001_vs-34452652001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34441770001</bc:titleid>\n <bc:duration>19</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Common Redpoll</title>\n <link/>\n <description>Common Redpoll</description>\n <guid>video34464665001</guid>\n <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34474808001_th-34467914001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34474807001_vs-34467914001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34464665001</bc:titleid>\n <bc:duration>30</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Planets</title>\n <link/>\n <description>Planets</description>\n <guid>video34442072001</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34454589001_th-34452535001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34454588001_vs-34452535001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34442072001</bc:titleid>\n <bc:duration>26</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Space Station</title>\n <link/>\n <description>Space Station</description>\n <guid>video34466054001</guid>\n <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34471582001_th-34469892001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/e1/pd/270881183/270881183_34471581001_vs-34469892001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>34466054001</bc:titleid>\n <bc:duration>29</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>One Planet Screen Recording</title>\n <link/>\n <description>One Planet Screen Recording</description>\n <guid>video49721640001</guid>\n <pubDate>Wed, 11 Nov 2009 05:27:02 -0800</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_49728887001_asset-1257946022002.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_49728884001_asset-1257945932994.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>49721640001</bc:titleid>\n <bc:duration>96</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>iPhone Mobile Web application demo</title>\n <link/>\n <description>iPhone Mobile Web application demo</description>\n <guid>video50165448001</guid>\n <pubDate>Fri, 13 Nov 2009 12:30:16 -0800</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_50168810001_asset-1258144215640.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_50168811001_asset-1258144216088.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>50165448001</bc:titleid>\n <bc:duration>47</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Solar System</title>\n <link/>\n <description>Timothy Leary looks at our planetary neighborhood.</description>\n <guid>video1011558648001</guid>\n <pubDate>Fri, 04 Nov 2011 06:31:46 -0700</pubDate>\n <media:keywords>space,Current,music</media:keywords>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011569591001_th-1011563241001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011569590001_vs-1011563241001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1011558648001</bc:titleid>\n <bc:duration>1048</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n <item>\n <title>Timothy Leary On LSD</title>\n <link/>\n <description>Timothy Leary On LSD</description>\n <guid>video1011477051001</guid>\n <pubDate>Tue, 21 Jun 2011 09:40:31 -0700</pubDate>\n <media:keywords/>\n <media:thumbnail height=\"90\" url=\"http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011509847001_th-1011496938001.jpg?pubId=270881183\" width=\"120\"/>\n <media:thumbnail height=\"360\" url=\"http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011509846001_vs-1011496938001.jpg?pubId=270881183\" width=\"480\"/>\n <bc:titleid>1011477051001</bc:titleid>\n <bc:duration>3739</bc:duration>\n <dcterms:valid/>\n <bc:accountid>270881183</bc:accountid>\n </item>\n </channel>\n</rss>\n\n"},"http_version":"1.1"},"recorded_at":"Mon, 14 May 2012 12:34:00 GMT"}],"recorded_with":"VCR 2.1.1"}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://api.brightcove.com/services/post
|
6
|
+
body:
|
7
|
+
encoding: ASCII-8BIT
|
8
|
+
string: !binary |-
|
9
|
+
LS0zNzM0NjENCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFt
|
10
|
+
ZT0ianNvbiINCg0KeyJtZXRob2QiOiJjcmVhdGVfdmlkZW8iLCJwYXJhbXMi
|
11
|
+
OnsidmlkZW8iOnsic2hvcnREZXNjcmlwdGlvbiI6IlNob3J0IERlc2NyaXB0
|
12
|
+
aW9uIiwibmFtZSI6IlZpZGVvIn0sInRva2VuIjoiMFoyZHR4VGRKQXh0Ylot
|
13
|
+
ZDBVN0JoaW8yVjFSaHI1SWFmbDVGRnREUFk4RS4ifX0NCi0tMzczNDYxDQpD
|
14
|
+
b250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9ImZpbGUiOyBm
|
15
|
+
aWxlbmFtZT0ibW92aWUubW92Ig0KQ29udGVudC1UeXBlOiB2aWRlby9xdWlj
|
16
|
+
a3RpbWUNCg0KDQotLTM3MzQ2MS0tDQo=
|
17
|
+
headers:
|
18
|
+
accept:
|
19
|
+
- ! '*/*; q=0.5, application/xml'
|
20
|
+
accept-encoding:
|
21
|
+
- gzip, deflate
|
22
|
+
content-length:
|
23
|
+
- '338'
|
24
|
+
content-type:
|
25
|
+
- multipart/form-data; boundary=373461
|
26
|
+
user-agent:
|
27
|
+
- Ruby
|
28
|
+
response:
|
29
|
+
status:
|
30
|
+
code: 200
|
31
|
+
message: OK
|
32
|
+
headers:
|
33
|
+
content-type:
|
34
|
+
- application/json;charset=UTF-8
|
35
|
+
content-length:
|
36
|
+
- '104'
|
37
|
+
date:
|
38
|
+
- Mon, 14 May 2012 12:50:24 GMT
|
39
|
+
server:
|
40
|
+
- !binary ""
|
41
|
+
body:
|
42
|
+
encoding: US-ASCII
|
43
|
+
string: ! '{"result": 653155417001, "error": null, "id": null}
|
44
|
+
'
|
45
|
+
http_version: '1.1'
|
46
|
+
recorded_at: Mon, 14 May 2012 12:50:24 GMT
|
47
|
+
recorded_with: VCR 2.1.1
|
@@ -0,0 +1,36 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://api.brightcove.com/services/post
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
accept:
|
11
|
+
- ! '*/*'
|
12
|
+
user-agent:
|
13
|
+
- Ruby
|
14
|
+
content-type:
|
15
|
+
- multipart/form-data; boundary=-----------RubyMultipartPost
|
16
|
+
content-length:
|
17
|
+
- '460'
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
content-type:
|
24
|
+
- application/json;charset=UTF-8
|
25
|
+
content-length:
|
26
|
+
- '104'
|
27
|
+
date:
|
28
|
+
- Mon, 14 May 2012 12:53:09 GMT
|
29
|
+
server:
|
30
|
+
- !binary ""
|
31
|
+
body:
|
32
|
+
encoding: US-ASCII
|
33
|
+
string: ! '{"result": 653155417001, "error": null, "id": null}'
|
34
|
+
http_version: '1.1'
|
35
|
+
recorded_at: Mon, 14 May 2012 12:53:10 GMT
|
36
|
+
recorded_with: VCR 2.1.1
|
metadata
CHANGED
@@ -1,161 +1,240 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: brightcove-api
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.12
|
4
5
|
prerelease:
|
5
|
-
version: 1.0.11
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- David Czarnecki
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-06-12 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
16
15
|
name: httparty
|
17
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
18
17
|
none: false
|
19
|
-
requirements:
|
20
|
-
- -
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version:
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
|
-
version_requirements:
|
26
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
27
31
|
name: json
|
28
|
-
requirement:
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
29
33
|
none: false
|
30
|
-
requirements:
|
31
|
-
- -
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version:
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
34
38
|
type: :runtime
|
35
39
|
prerelease: false
|
36
|
-
version_requirements:
|
37
|
-
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
38
47
|
name: rest-client
|
39
|
-
requirement:
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
40
49
|
none: false
|
41
|
-
requirements:
|
42
|
-
- -
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
version:
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
45
54
|
type: :runtime
|
46
55
|
prerelease: false
|
47
|
-
version_requirements:
|
48
|
-
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
49
63
|
name: multipart-post
|
50
|
-
requirement:
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
51
65
|
none: false
|
52
|
-
requirements:
|
53
|
-
- -
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version:
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
56
70
|
type: :runtime
|
57
71
|
prerelease: false
|
58
|
-
version_requirements:
|
59
|
-
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
60
79
|
name: orderedhash
|
61
|
-
requirement:
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
62
81
|
none: false
|
63
|
-
requirements:
|
64
|
-
- -
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
version:
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
67
86
|
type: :runtime
|
68
87
|
prerelease: false
|
69
|
-
version_requirements:
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: fakeweb
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: mocha
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: rake
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ! '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
78
134
|
type: :development
|
79
135
|
prerelease: false
|
80
|
-
version_requirements:
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ! '>='
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0'
|
142
|
+
- !ruby/object:Gem::Dependency
|
143
|
+
name: rspec
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ! '>='
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
89
150
|
type: :development
|
90
151
|
prerelease: false
|
91
|
-
version_requirements:
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ! '>='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
- !ruby/object:Gem::Dependency
|
159
|
+
name: vcr
|
160
|
+
requirement: !ruby/object:Gem::Requirement
|
161
|
+
none: false
|
162
|
+
requirements:
|
163
|
+
- - ! '>='
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
100
166
|
type: :development
|
101
167
|
prerelease: false
|
102
|
-
version_requirements:
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
none: false
|
170
|
+
requirements:
|
171
|
+
- - ! '>='
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
103
174
|
description: Ruby gem for interacting with the Brightcove media API. http://docs.brightcove.com/en/media/
|
104
|
-
email:
|
175
|
+
email:
|
176
|
+
- dczarnecki@agoragames.com
|
105
177
|
executables: []
|
106
|
-
|
107
178
|
extensions: []
|
108
|
-
|
109
|
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
files:
|
179
|
+
extra_rdoc_files: []
|
180
|
+
files:
|
181
|
+
- .gitignore
|
182
|
+
- .rspec
|
113
183
|
- .rvmrc
|
114
|
-
-
|
184
|
+
- CHANGELOG.markdown
|
115
185
|
- Gemfile
|
116
186
|
- LICENSE
|
117
187
|
- README.md
|
118
188
|
- Rakefile
|
119
|
-
- VERSION
|
120
189
|
- brightcove-api.gemspec
|
121
190
|
- lib/brightcove-api.rb
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
191
|
+
- lib/brightcove-api/version.rb
|
192
|
+
- spec/assets/movie.mov
|
193
|
+
- spec/brightcove-api_spec.rb
|
194
|
+
- spec/spec_helper.rb
|
195
|
+
- spec/vcr_cassettes/brightcove_media_api_example_query.json
|
196
|
+
- spec/vcr_cassettes/delete_video.yml
|
197
|
+
- spec/vcr_cassettes/find_all_videos.json
|
198
|
+
- spec/vcr_cassettes/find_all_videos_mrss.json
|
199
|
+
- spec/vcr_cassettes/post_file.yml
|
200
|
+
- spec/vcr_cassettes/post_file_streaming.yml
|
129
201
|
homepage: http://github.com/BrightcoveOS/Ruby-MAPI-Wrapper
|
130
|
-
licenses:
|
131
|
-
- MIT
|
202
|
+
licenses: []
|
132
203
|
post_install_message:
|
133
204
|
rdoc_options: []
|
134
|
-
|
135
|
-
require_paths:
|
205
|
+
require_paths:
|
136
206
|
- lib
|
137
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
207
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
138
208
|
none: false
|
139
|
-
requirements:
|
140
|
-
- -
|
141
|
-
- !ruby/object:Gem::Version
|
142
|
-
|
143
|
-
segments:
|
209
|
+
requirements:
|
210
|
+
- - ! '>='
|
211
|
+
- !ruby/object:Gem::Version
|
212
|
+
version: '0'
|
213
|
+
segments:
|
144
214
|
- 0
|
145
|
-
|
146
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
215
|
+
hash: 3137406389883439482
|
216
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
217
|
none: false
|
148
|
-
requirements:
|
149
|
-
- -
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version:
|
218
|
+
requirements:
|
219
|
+
- - ! '>='
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: '0'
|
222
|
+
segments:
|
223
|
+
- 0
|
224
|
+
hash: 3137406389883439482
|
152
225
|
requirements: []
|
153
|
-
|
154
|
-
|
155
|
-
rubygems_version: 1.8.8
|
226
|
+
rubyforge_project: brightcove-api
|
227
|
+
rubygems_version: 1.8.24
|
156
228
|
signing_key:
|
157
229
|
specification_version: 3
|
158
230
|
summary: Ruby gem for interacting with the Brightcove media API
|
159
|
-
test_files:
|
160
|
-
-
|
161
|
-
-
|
231
|
+
test_files:
|
232
|
+
- spec/assets/movie.mov
|
233
|
+
- spec/brightcove-api_spec.rb
|
234
|
+
- spec/spec_helper.rb
|
235
|
+
- spec/vcr_cassettes/brightcove_media_api_example_query.json
|
236
|
+
- spec/vcr_cassettes/delete_video.yml
|
237
|
+
- spec/vcr_cassettes/find_all_videos.json
|
238
|
+
- spec/vcr_cassettes/find_all_videos_mrss.json
|
239
|
+
- spec/vcr_cassettes/post_file.yml
|
240
|
+
- spec/vcr_cassettes/post_file_streaming.yml
|