brightcove-api 1.0.14 → 1.0.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzYzZDVkNDA5MmE4YmE0MDlmNDEyYTdiMWI5ZTg4NmIxYTQ0OWJhNg==
4
+ NTA3NmQwMmI4NjlkOTUzN2Q1ZTdjMTQzNGNiN2VkNDRkYTA2YTY4ZA==
5
5
  data.tar.gz: !binary |-
6
- MjIyYjE0NzU4MjA3ZGE3MWI1MWI4NmJmNzYzYzM0YjI4Mzg2ZmYyYQ==
6
+ OTA5Y2E4YjRkNTk1MTNmMzZhMDQ4OWY5ZDEyZjk0OWM4MGZkZGUyMg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NDJkZGE5MGZlYWExNzczYTk4ZTAyYjFkMzJkNTcwNTg3MGZiOTNjYTRjMDRi
10
- NjQ1YzMyZTk5MTM1YmMzODg3OTViMjgxYjZiNTYyZmE0NjU2YWRhMmVhMDNh
11
- ODBjNjhmOGM2MTcwZjgzMDFmMTlmODQzODg2ZDIzNWIwMWFiODM=
9
+ NzYzODI1MDBlNjkxOWU0NjA0MDdhY2U4OTBkYjRmMDU3NjI3MzZmM2U0ZDll
10
+ NTkwMWI3YTkzNGUwNmVkZjA3OTU4YzljODRkOWI2MmI1ZmJmMzY4NTUxN2Iz
11
+ ZTgwZGVjY2I4NGQzYzA2NDVkOTczMmFkM2ZhMmY5Yzk1ZDBlZjU=
12
12
  data.tar.gz: !binary |-
13
- NjcxYTZmYTI2OTZmNDUxNWJmODA0YmIwZGZmNWJjYzM4NzhkYTk2NTU1OWU5
14
- Mzk0YTVjMTM4NTJmMzcwMTU3OTMyYTI3NWU5NGQ0YTdmNzg5ZmQ3MWQzMTdj
15
- NThlOWY2OWI0MmE3N2FmNmU0ODEyMjE1MGVjOWIxODA2ZWNhZmM=
13
+ YWY3MWU5YTc0MmVhNGIyYmJmYjQ1MWYxZjlkYzBhOTgwYWI5NGQwYjM4YWZm
14
+ ZGVlOGFkNjAyMmQ5ZTQwYWIxYmFlMGNlOTJkMmI5Mjg1YWM5NzlhMDY4ZTU1
15
+ YTAzOTU3NjVkNDU1ZWQwZDlkMmM4YTM5Y2ZmNjRkZDk5Y2Y2OGQ=
data/.rvmrc CHANGED
@@ -1,3 +1,2 @@
1
1
  rvm use --create 1.8.7@brightcove-api_gem
2
- rvm use --create 1.9.2@brightcove-api_gem
3
2
  rvm use --create 1.9.3@brightcove-api_gem
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.0.16 (2014-03-07)
4
+
5
+ * Use https URLs [#14](https://github.com/BrightcoveOS/Ruby-MAPI-Wrapper/pull/14)
6
+
7
+ ## 1.0.15 (2014-01-22)
8
+
9
+ * Make orderedhash dependency optional for non-Ruby 1.8.7 versions. [#12](https://github.com/BrightcoveOS/Ruby-MAPI-Wrapper/issues/12)
10
+
3
11
  ## 1.0.14 (2014-01-22)
4
12
 
5
13
  * Handle IO streams provided by open-uri in post_io_streaming. [#11](https://github.com/BrightcoveOS/Ruby-MAPI-Wrapper/pull/11). Thanks @robdiciuccio.
data/Rakefile CHANGED
@@ -11,5 +11,5 @@ end
11
11
  task :default => :spec
12
12
 
13
13
  task :test_rubies do
14
- system "rvm 1.8.7@brightcove-api_gem,1.9.2@brightcove-api_gem,1.9.3@brightcove-api_gem do rake spec"
14
+ system "rvm 1.8.7@brightcove-api_gem,1.9.3@brightcove-api_gem do rake spec"
15
15
  end
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.homepage = "http://github.com/BrightcoveOS/Ruby-MAPI-Wrapper"
12
12
  s.summary = %q{Ruby gem for interacting with the Brightcove media API}
13
13
  s.description = %q{Ruby gem for interacting with the Brightcove media API. http://docs.brightcove.com/en/media/}
14
+ s.license = 'MIT'
14
15
 
15
16
  s.rubyforge_project = "brightcove-api"
16
17
 
@@ -23,8 +24,11 @@ Gem::Specification.new do |s|
23
24
  s.add_dependency('json')
24
25
  s.add_dependency('rest-client')
25
26
  s.add_dependency('multipart-post')
26
- s.add_dependency('orderedhash')
27
-
27
+ if RUBY_VERSION < '1.9'
28
+ s.add_dependency('orderedhash')
29
+ end
30
+
31
+ s.add_development_dependency('multi_json')
28
32
  s.add_development_dependency('fakeweb')
29
33
  s.add_development_dependency('mocha')
30
34
  s.add_development_dependency('rake')
@@ -1,7 +1,9 @@
1
1
  require 'httparty'
2
2
  require 'json'
3
3
  require 'rest-client'
4
- require 'orderedhash'
4
+ if RUBY_VERSION < '1.9'
5
+ require 'orderedhash'
6
+ end
5
7
  require 'net/http/post/multipart'
6
8
  require 'brightcove-api/version'
7
9
 
@@ -16,13 +18,13 @@ module Brightcove
16
18
 
17
19
  headers(DEFAULT_HEADERS)
18
20
 
19
- READ_API_URL = 'http://api.brightcove.com/services/library'
20
- WRITE_API_URL = 'http://api.brightcove.com/services/post'
21
+ READ_API_URL = 'https://api.brightcove.com/services/library'
22
+ WRITE_API_URL = 'https://api.brightcove.com/services/post'
21
23
 
22
24
  attr_accessor :read_api_url
23
25
  attr_accessor :write_api_url
24
26
  attr_accessor :token
25
-
27
+
26
28
  # RestClient POST timeout for reading conection
27
29
  attr_accessor :timeout
28
30
  # RestClient POST timeout for opening connection
@@ -42,13 +44,13 @@ module Brightcove
42
44
  end
43
45
 
44
46
  # Set a location for debug HTTP output to be written to.
45
- #
47
+ #
46
48
  # @param location [Object] Defaults to +$stderr+.
47
49
  def debug(location = $stderr)
48
50
  self.class.debug_output(location)
49
51
  end
50
52
 
51
- # Set HTTP headers that should be used in API requests. The
53
+ # Set HTTP headers that should be used in API requests. The
52
54
  # +Brightcove::API::DEFAULT_HEADERS+ will be merged into the passed-in
53
55
  # hash.
54
56
  #
@@ -59,7 +61,7 @@ module Brightcove
59
61
  end
60
62
 
61
63
  # Set a timeout for HTTP requests.
62
- #
64
+ #
63
65
  # @param timeout [int] HTTP timeout value.
64
66
  def set_timeout(timeout)
65
67
  default_timeout(timeout)
@@ -68,7 +70,7 @@ module Brightcove
68
70
  # Make an HTTP GET call to the Brightcove API for a particular API method.
69
71
  #
70
72
  # @param api_method [String] Brightcove API method.
71
- # @param options [Hash] Optional hash containing parameter names and values. The options
73
+ # @param options [Hash] Optional hash containing parameter names and values. The options
72
74
  # parameter can be either a query string or a hash. If a query string, it will be
73
75
  # normalized to a hash via CGI.parse.
74
76
  def get(api_method, options = {})
@@ -76,7 +78,7 @@ module Brightcove
76
78
  end
77
79
 
78
80
  # Make an HTTP POST call to the Brightcove API for a particular API method.
79
- #
81
+ #
80
82
  # @param api_method [String] Brightcove API method.
81
83
  # @param parameters [Hash] Optional hash containing parameter names and values.
82
84
  def post(api_method, parameters = {})
@@ -89,7 +91,7 @@ module Brightcove
89
91
  self.class.post(@write_api_url, {:body => {:json => JSON.generate(body)}})
90
92
  end
91
93
 
92
- # Post a file to the Brightcove API, e.g. uploading video.
94
+ # Post a file to the Brightcove API, e.g. uploading video.
93
95
  #
94
96
  # @param api_method [String] Brightcove API method.
95
97
  # @param file [String] Full path of file to be uploaded.
@@ -111,16 +113,16 @@ module Brightcove
111
113
 
112
114
  payload[:json] = body.to_json
113
115
  payload[:file] = File.new(file, 'rb')
114
-
116
+
115
117
  execution_payload = {
116
118
  :method => :post,
117
119
  :url => @write_api_url,
118
120
  :payload => payload,
119
121
  :content_type => :json,
120
122
  :accept => :json,
121
- :multipart => true
123
+ :multipart => true
122
124
  }
123
-
125
+
124
126
  execution_payload[:timeout] = @timeout if @timeout
125
127
  execution_payload[:open_timeout] = @open_timeout if @open_timeout
126
128
 
@@ -128,8 +130,8 @@ module Brightcove
128
130
 
129
131
  JSON.parse(response)
130
132
  end
131
-
132
- # Post a file via HTTP streaming to the Brightcove API, e.g. uploading video.
133
+
134
+ # Post a file via HTTP streaming to the Brightcove API, e.g. uploading video.
133
135
  #
134
136
  # @param api_method [String] Brightcove API method.
135
137
  # @param upload_file [String] Full path of file to be uploaded.
@@ -137,8 +139,8 @@ module Brightcove
137
139
  def post_file_streaming(api_method, upload_file, content_type, parameters)
138
140
  File.open(upload_file) { |file| post_io_streaming(api_method, file, content_type, parameters) }
139
141
  end
140
-
141
- # Post a file IO object via HTTP streaming to the Brightcove API, e.g. uploading video.
142
+
143
+ # Post a file IO object via HTTP streaming to the Brightcove API, e.g. uploading video.
142
144
  #
143
145
  # @param api_method [String] Brightcove API method.
144
146
  # @param file [File handle] File handle of file to be uploaded.
@@ -157,10 +159,10 @@ module Brightcove
157
159
  else
158
160
  payload = OrderedHash.new
159
161
  end
160
-
162
+
161
163
  url = URI.parse(@write_api_url)
162
164
  response = nil
163
-
165
+
164
166
  payload[:json] = body.to_json
165
167
 
166
168
  if file.is_a?(UploadIO)
@@ -169,9 +171,9 @@ module Brightcove
169
171
  filename = file.respond_to?(:base_uri) ? File.basename(file.base_uri.to_s) : File.basename(file.path) rescue nil
170
172
  payload[:file] = UploadIO.new(file, content_type, filename)
171
173
  end
172
-
174
+
173
175
  request = Net::HTTP::Post::Multipart.new(url.path, payload)
174
-
176
+
175
177
  response = Net::HTTP.start(url.host, url.port) do |http|
176
178
  http.read_timeout = @timeout if @timeout
177
179
  http.open_timeout = @open_timeout if @open_timeout
@@ -184,7 +186,7 @@ module Brightcove
184
186
  private
185
187
 
186
188
  # Build an appropriate query for the Brightcove API given an +api_method+ and +options+.
187
- # This will also merge in your API token and set the +format+ to XML if +mrss+ has been
189
+ # This will also merge in your API token and set the +format+ to XML if +mrss+ has been
188
190
  # requested for the +:output+.
189
191
  #
190
192
  # @param api_method [String] Brightcove API method.
@@ -194,10 +196,10 @@ module Brightcove
194
196
  unless options.respond_to?(:merge!)
195
197
  options = CGI.parse(options)
196
198
  end
197
-
199
+
198
200
  options.merge!({:command => api_method, :token => @token})
199
201
  options.merge!({:format => :xml}) if options.key?(:output) && 'mrss'.eql?(options[:output])
200
202
  { :query => options }
201
- end
203
+ end
202
204
  end
203
205
  end
@@ -1,5 +1,5 @@
1
1
  module Brightcove
2
2
  class API
3
- VERSION = '1.0.14'.freeze
3
+ VERSION = '1.0.16'.freeze
4
4
  end
5
5
  end
@@ -3,7 +3,7 @@ require 'open-uri'
3
3
 
4
4
  describe Brightcove::API do
5
5
  it 'should be the correct version' do
6
- Brightcove::API::VERSION.should == '1.0.14'
6
+ Brightcove::API::VERSION.should == '1.0.16'
7
7
  end
8
8
 
9
9
  it 'should allow you to set new HTTP headers' do
@@ -1 +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"}
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://api.brightcove.com/services/library?all=football&all=chicago&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"}
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightcove.com/services/post
5
+ uri: https://api.brightcove.com/services/post
6
6
  body:
7
7
  encoding: US-ASCII
8
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
@@ -1 +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"}
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://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"}
@@ -1 +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&amp;output=mrss&amp;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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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"}
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://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&amp;output=mrss&amp;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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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"}
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightcove.com/services/post
5
+ uri: https://api.brightcove.com/services/post
6
6
  body:
7
7
  encoding: ASCII-8BIT
8
8
  string: !binary |-
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightcove.com/services/post
5
+ uri: http://api.brightcove.com:443/services/post
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -78,7 +78,7 @@ http_interactions:
78
78
  recorded_at: Wed, 22 Jan 2014 02:08:53 GMT
79
79
  - request:
80
80
  method: post
81
- uri: http://api.brightcove.com/services/post
81
+ uri: http://api.brightcove.com:443/services/post
82
82
  body:
83
83
  encoding: US-ASCII
84
84
  string: ''
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brightcove-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.14
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Czarnecki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-23 00:00:00.000000000 Z
11
+ date: 2014-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -67,13 +67,13 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: orderedhash
70
+ name: multi_json
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ! '>='
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
- type: :runtime
76
+ type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
@@ -179,7 +179,8 @@ files:
179
179
  - spec/vcr_cassettes/post_file_streaming.yml
180
180
  - spec/vcr_cassettes/post_io_streaming_http.yml
181
181
  homepage: http://github.com/BrightcoveOS/Ruby-MAPI-Wrapper
182
- licenses: []
182
+ licenses:
183
+ - MIT
183
184
  metadata: {}
184
185
  post_install_message:
185
186
  rdoc_options: []
@@ -197,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
197
198
  version: '0'
198
199
  requirements: []
199
200
  rubyforge_project: brightcove-api
200
- rubygems_version: 2.2.0
201
+ rubygems_version: 2.2.2
201
202
  signing_key:
202
203
  specification_version: 4
203
204
  summary: Ruby gem for interacting with the Brightcove media API