brightcove-api 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
data/CHANELOG.markdown CHANGED
@@ -1,3 +1,9 @@
1
+ # 1.0.11 (2011-09-13)
2
+
3
+ * Only set `timeout` and `open_timeout` in `post_file(...)` and `post_file_streaming(...)` if they are set
4
+ * Support output format in Media RSS for passing `:output => 'mrss'` in the options for the `get` method
5
+ * Remove explicit version dependencies from supporting libraries
6
+
1
7
  # 1.0.10 (2011-06-22)
2
8
 
3
9
  * Updated `post_file_streaming` method to support Ruby 1.8.7
data/Gemfile CHANGED
@@ -11,8 +11,8 @@ group :test do
11
11
  gem 'mocha'
12
12
  end
13
13
 
14
- gem 'httparty', '~> 0.7.7'
15
- gem 'json', '~> 1.4.6'
16
- gem 'rest-client', '~> 1.6.1'
17
- gem 'multipart-post', '~> 1.1.2'
18
- gem 'orderedhash', '~> 0.0.6'
14
+ gem 'httparty'
15
+ gem 'json'
16
+ gem 'rest-client'
17
+ gem 'multipart-post'
18
+ gem 'orderedhash'
data/README.md CHANGED
@@ -7,32 +7,19 @@ Requirements
7
7
  ============
8
8
 
9
9
  * HTTParty
10
- * JSON
11
- * FakeWeb (only for testing)
10
+
11
+ * JSON (for `post_file(...)` and `post_file_streaming(...) methods`)
12
+ * rest-client (for the `post_file(...)` method)
13
+ * multipart-post (for the `post_file_streaming(...) method`)
14
+ * orderedhash (only if you're using Ruby 1.8.7)
12
15
 
13
16
  Install
14
17
  =======
15
18
 
16
19
  * sudo gem install brightcove-api
17
20
 
18
- Searching
19
- =========
20
-
21
- To replicate one of the brightcove search API examples:
22
-
23
- > find all videos that have "football" and "Chicago" in the name, short description, or long
24
- > description, and which also have the tag "free", and also have either the tag "color" or the
25
- > tag "technicolor"
26
-
27
- >> brightcove = Brightcove::API.new(...)
28
- >> response = brightcove.get('search_videos', {
29
- :any => [ "tag:color", "tag:technicolor" ],
30
- :all => ["football", "chicago", "tag:free"]
31
- })
32
-
33
-
34
- Example
35
- =======
21
+ Examples
22
+ ========
36
23
 
37
24
  >> require 'brightcove-api'
38
25
  => true
@@ -55,6 +42,25 @@ If you want to perform a file upload using HTTP streaming, for example, to creat
55
42
  >> response = brightcove.post_file_streaming('create_video', '/path/to/video.mov', 'video/quicktime', :video => {:shortDescription => 'Short Description', :name => 'Video name'})
56
43
  => {"result"=>653155417001, "error=>nil, "id"=>nil}
57
44
 
45
+ You can now pass `{:output => 'mrss'}` in the __get(...)__ method to return output in Media RSS format. Example:
46
+
47
+ >> response = brightcove.get('find_all_videos', {:output => 'mrss'})
48
+
49
+ Searching
50
+ =========
51
+
52
+ To replicate one of the brightcove search API examples:
53
+
54
+ > find all videos that have "football" and "Chicago" in the name, short description, or long
55
+ > description, and which also have the tag "free", and also have either the tag "color" or the
56
+ > tag "technicolor"
57
+
58
+ >> brightcove = Brightcove::API.new(...)
59
+ >> response = brightcove.get('search_videos', {
60
+ :any => [ "tag:color", "tag:technicolor" ],
61
+ :all => ["football", "chicago", "tag:free"]
62
+ })
63
+
58
64
  Note on Patches/Pull Requests
59
65
  =============================
60
66
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.10
1
+ 1.0.11
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{brightcove-api}
8
- s.version = "1.0.10"
8
+ s.version = "1.0.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["David Czarnecki"]
12
- s.date = %q{2011-06-22}
11
+ s.authors = [%q{David Czarnecki}]
12
+ s.date = %q{2011-09-13}
13
13
  s.description = %q{Ruby gem for interacting with the Brightcove media API. http://docs.brightcove.com/en/media/}
14
14
  s.email = %q{dczarnecki@agoragames.com}
15
15
  s.extra_rdoc_files = [
@@ -29,14 +29,15 @@ Gem::Specification.new do |s|
29
29
  "test/fakeweb/create_video_response.json",
30
30
  "test/fakeweb/delete_video_response.json",
31
31
  "test/fakeweb/find_all_videos_response.json",
32
+ "test/fakeweb/find_all_videos_response.xml",
32
33
  "test/fakeweb/movie.mov",
33
34
  "test/helper.rb",
34
35
  "test/test_brightcove-api.rb"
35
36
  ]
36
37
  s.homepage = %q{http://github.com/BrightcoveOS/Ruby-MAPI-Wrapper}
37
- s.licenses = ["MIT"]
38
- s.require_paths = ["lib"]
39
- s.rubygems_version = %q{1.6.2}
38
+ s.licenses = [%q{MIT}]
39
+ s.require_paths = [%q{lib}]
40
+ s.rubygems_version = %q{1.8.8}
40
41
  s.summary = %q{Ruby gem for interacting with the Brightcove media API}
41
42
  s.test_files = [
42
43
  "test/helper.rb",
@@ -47,30 +48,30 @@ Gem::Specification.new do |s|
47
48
  s.specification_version = 3
48
49
 
49
50
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
50
- s.add_runtime_dependency(%q<httparty>, ["~> 0.7.7"])
51
- s.add_runtime_dependency(%q<json>, ["~> 1.4.6"])
52
- s.add_runtime_dependency(%q<rest-client>, ["~> 1.6.1"])
53
- s.add_runtime_dependency(%q<multipart-post>, ["~> 1.1.2"])
54
- s.add_runtime_dependency(%q<orderedhash>, ["~> 0.0.6"])
51
+ s.add_runtime_dependency(%q<httparty>, [">= 0"])
52
+ s.add_runtime_dependency(%q<json>, [">= 0"])
53
+ s.add_runtime_dependency(%q<rest-client>, [">= 0"])
54
+ s.add_runtime_dependency(%q<multipart-post>, [">= 0"])
55
+ s.add_runtime_dependency(%q<orderedhash>, [">= 0"])
55
56
  s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
56
57
  s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
57
58
  s.add_development_dependency(%q<rcov>, ["~> 0.9.9"])
58
59
  else
59
- s.add_dependency(%q<httparty>, ["~> 0.7.7"])
60
- s.add_dependency(%q<json>, ["~> 1.4.6"])
61
- s.add_dependency(%q<rest-client>, ["~> 1.6.1"])
62
- s.add_dependency(%q<multipart-post>, ["~> 1.1.2"])
63
- s.add_dependency(%q<orderedhash>, ["~> 0.0.6"])
60
+ s.add_dependency(%q<httparty>, [">= 0"])
61
+ s.add_dependency(%q<json>, [">= 0"])
62
+ s.add_dependency(%q<rest-client>, [">= 0"])
63
+ s.add_dependency(%q<multipart-post>, [">= 0"])
64
+ s.add_dependency(%q<orderedhash>, [">= 0"])
64
65
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
65
66
  s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
66
67
  s.add_dependency(%q<rcov>, ["~> 0.9.9"])
67
68
  end
68
69
  else
69
- s.add_dependency(%q<httparty>, ["~> 0.7.7"])
70
- s.add_dependency(%q<json>, ["~> 1.4.6"])
71
- s.add_dependency(%q<rest-client>, ["~> 1.6.1"])
72
- s.add_dependency(%q<multipart-post>, ["~> 1.1.2"])
73
- s.add_dependency(%q<orderedhash>, ["~> 0.0.6"])
70
+ s.add_dependency(%q<httparty>, [">= 0"])
71
+ s.add_dependency(%q<json>, [">= 0"])
72
+ s.add_dependency(%q<rest-client>, [">= 0"])
73
+ s.add_dependency(%q<multipart-post>, [">= 0"])
74
+ s.add_dependency(%q<orderedhash>, [">= 0"])
74
75
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
75
76
  s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
76
77
  s.add_dependency(%q<rcov>, ["~> 0.9.9"])
@@ -9,7 +9,7 @@ module Brightcove
9
9
  include HTTParty
10
10
  disable_rails_query_string_format
11
11
 
12
- VERSION = '1.0.10'.freeze
12
+ VERSION = '1.0.11'.freeze
13
13
 
14
14
  DEFAULT_HEADERS = {
15
15
  'User-Agent' => "brightcove-api gem #{VERSION}"
@@ -29,15 +29,13 @@ module Brightcove
29
29
  # RestClient POST timeout for opening connection
30
30
  attr_accessor :open_timeout
31
31
 
32
- # Brightcove returns text/html as the Content-Type for a response even though the response is JSON.
33
- # So, let's just parse the response as JSON
34
- format(:json)
35
-
36
32
  # Initialize with your API token
37
33
  def initialize(token, read_api_url = READ_API_URL, write_api_url = WRITE_API_URL)
38
34
  @token = token
39
35
  @read_api_url = read_api_url
40
36
  @write_api_url = write_api_url
37
+ @timeout = nil
38
+ @open_timeout = nil
41
39
  end
42
40
 
43
41
  def debug(location = $stderr)
@@ -58,7 +56,9 @@ module Brightcove
58
56
  unless options.respond_to?(:merge!)
59
57
  options = CGI.parse(options)
60
58
  end
59
+
61
60
  options.merge!({:command => api_method, :token => @token})
61
+ options.merge!({:format => :xml}) if options.key?(:output) && 'mrss'.eql?(options[:output])
62
62
  { :query => options }
63
63
  end
64
64
 
@@ -98,17 +98,20 @@ module Brightcove
98
98
 
99
99
  payload[:json] = body.to_json
100
100
  payload[:file] = File.new(file, 'rb')
101
-
102
- response = RestClient::Request.execute(
101
+
102
+ execution_payload = {
103
103
  :method => :post,
104
104
  :url => @write_api_url,
105
105
  :payload => payload,
106
106
  :content_type => :json,
107
107
  :accept => :json,
108
- :multipart => true,
109
- :timeout => @timeout,
110
- :open_timeout => @open_timeout
111
- )
108
+ :multipart => true
109
+ }
110
+
111
+ execution_payload[:timeout] = @timeout if @timeout
112
+ execution_payload[:open_timeout] = @open_timeout if @open_timeout
113
+
114
+ response = RestClient::Request.execute(execution_payload)
112
115
 
113
116
  JSON.parse(response)
114
117
  end
@@ -137,6 +140,8 @@ module Brightcove
137
140
  request = Net::HTTP::Post::Multipart.new(url.path, payload)
138
141
 
139
142
  response = Net::HTTP.start(url.host, url.port) do |http|
143
+ http.read_timeout = @timeout if @timeout
144
+ http.open_timeout = @open_timeout if @open_timeout
140
145
  http.request(request)
141
146
  end
142
147
  end
@@ -0,0 +1,1188 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <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/">
3
+ <channel>
4
+ <title>Find All Videos</title>
5
+ <link>http://api.brightcove.com/services/library?command=find_all_videos&amp;output=mrss&amp;token=0Z2dtxTdJAxtbZ-d0U7Bhio2V1Rhr5Iafl5FFtDPY8E.</link>
6
+ <description/>
7
+ <copyright>Copyright 2011</copyright>
8
+ <lastBuildDate>Fri, 24 Jun 2011 19:17:57 -0700</lastBuildDate>
9
+ <generator>http://www.brightcove.com/?v=1.0</generator>
10
+ <item>
11
+ <title>Documentarian Skydiving</title>
12
+ <link/>
13
+ <description>Thrill seekers document their adventure, from the door of the plane all the way to the ground.</description>
14
+ <guid>video496518762</guid>
15
+ <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>
16
+ <media:keywords>adventure,base jumping</media:keywords>
17
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534822_86408e4e20580f7bf0b41c82be8ca9f4b95fb055.jpg?pubId=270881183" width="120"/>
18
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534831_9c1e5fe9c3e95ca5009e7ceb68df2915ff669774.jpg?pubId=270881183" width="480"/>
19
+ <bc:titleid>496518762</bc:titleid>
20
+ <bc:duration>111</bc:duration>
21
+ <dcterms:valid/>
22
+ <bc:accountid>270881183</bc:accountid>
23
+ </item>
24
+ <item>
25
+ <title>Surface Tricks</title>
26
+ <link/>
27
+ <description>Instructions on how to do the most common snowboarding tricks that are performed on the ground.</description>
28
+ <guid>video496518763</guid>
29
+ <pubDate>Tue, 18 Aug 2009 12:45:57 -0700</pubDate>
30
+ <media:keywords>snowboarding,adventure</media:keywords>
31
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34465519001_asset-1250624757285.jpg?pubId=270881183" width="120"/>
32
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34465520001_asset-1250624757522.jpg?pubId=270881183" width="480"/>
33
+ <bc:titleid>496518763</bc:titleid>
34
+ <bc:duration>70</bc:duration>
35
+ <dcterms:valid/>
36
+ <bc:accountid>270881183</bc:accountid>
37
+ </item>
38
+ <item>
39
+ <title>Free Skiing</title>
40
+ <link/>
41
+ <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>
42
+ <guid>video496518765</guid>
43
+ <pubDate>Sun, 16 Mar 2008 10:37:08 -0700</pubDate>
44
+ <media:keywords>snowboarding,adventure</media:keywords>
45
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459169541_b317544d5275ab9df2d3030da2f8cbefde8fbdea.jpg?pubId=270881183" width="120"/>
46
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459169542_55bfa4b674d1d31c469b91af71d8e81baad2ab32.jpg?pubId=270881183" width="480"/>
47
+ <bc:titleid>496518765</bc:titleid>
48
+ <bc:duration>11</bc:duration>
49
+ <dcterms:valid/>
50
+ <bc:accountid>270881183</bc:accountid>
51
+ </item>
52
+ <item>
53
+ <title>Wild Slopes '06</title>
54
+ <link/>
55
+ <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>
56
+ <guid>video496518766</guid>
57
+ <pubDate>Mon, 12 Feb 2007 15:55:23 -0800</pubDate>
58
+ <media:keywords>adventure,snowboarding</media:keywords>
59
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534829_94499905676eb7cd04a558da2adcf6a34f437b88.jpg?pubId=270881183" width="120"/>
60
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534838_f80fe64f052328cd3b2e158d7234003a23091845.jpg?pubId=270881183" width="480"/>
61
+ <bc:titleid>496518766</bc:titleid>
62
+ <bc:duration>51</bc:duration>
63
+ <dcterms:valid/>
64
+ <bc:accountid>270881183</bc:accountid>
65
+ </item>
66
+ <item>
67
+ <title>Create Playlist &amp; Edit Videos</title>
68
+ <link/>
69
+ <description>In this video, we'll show you how to create manual and automatic playlists and how to edit video properties.</description>
70
+ <guid>video1456328434</guid>
71
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
72
+ <media:keywords>media manager video tutorial</media:keywords>
73
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1457702988_51ed0c1dc7bc89c3e42a807a2b676c4778de6660.jpg?pubId=270881183" width="120"/>
74
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078810_3d0167ab3a464f5ab9397a7bec886c0d2d7c2f11.jpg?pubId=270881183" width="480"/>
75
+ <bc:titleid>1456328434</bc:titleid>
76
+ <bc:duration>216</bc:duration>
77
+ <dcterms:valid/>
78
+ <bc:accountid>270881183</bc:accountid>
79
+ </item>
80
+ <item>
81
+ <title>Upload &amp; Organize Videos</title>
82
+ <link/>
83
+ <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>
84
+ <guid>video1457130040</guid>
85
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
86
+ <media:keywords>media manager video tutorial</media:keywords>
87
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1457728820_141301bd936efc6128e5b1d121dba65bf7528f16.jpg?pubId=270881183" width="120"/>
88
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078809_7a1fe91d3a0df4c232dbeb6e443f9a99f405985c.jpg?pubId=270881183" width="480"/>
89
+ <bc:titleid>1457130040</bc:titleid>
90
+ <bc:duration>206</bc:duration>
91
+ <dcterms:valid/>
92
+ <bc:accountid>270881183</bc:accountid>
93
+ </item>
94
+ <item>
95
+ <title>Demo Title 2</title>
96
+ <link/>
97
+ <description>Short Description</description>
98
+ <guid>video276024035</guid>
99
+ <pubDate>Thu, 19 Oct 2006 00:00:00 -0700</pubDate>
100
+ <media:keywords/>
101
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_275925069_d1f97c7f07f2a3f4de7b38eda3761f16f39d2a99.jpg?pubId=270881183" width="120"/>
102
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_275943599_b7e2ca63c0311fa3f0b027304b41d252f12d2d66.jpg?pubId=270881183" width="480"/>
103
+ <bc:titleid>276024035</bc:titleid>
104
+ <bc:duration>418</bc:duration>
105
+ <dcterms:valid/>
106
+ <bc:accountid>270881183</bc:accountid>
107
+ </item>
108
+ <item>
109
+ <title>Hot Air Balloon Jump</title>
110
+ <link/>
111
+ <description>Hot air balloons serve as launch pads for professional BASE jumpers looking to perfect their aerial dance.</description>
112
+ <guid>video496518757</guid>
113
+ <pubDate>Mon, 12 Feb 2007 15:54:29 -0800</pubDate>
114
+ <media:keywords>base jumping,adventure</media:keywords>
115
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534821_cf1d73da5e3c837fffb14460c910bc8f547c4768.jpg?pubId=270881183" width="120"/>
116
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534830_38f8ea9b79a6874b3688d7d21c1d95365c236b13.jpg?pubId=270881183" width="480"/>
117
+ <bc:titleid>496518757</bc:titleid>
118
+ <bc:duration>41</bc:duration>
119
+ <dcterms:valid/>
120
+ <bc:accountid>270881183</bc:accountid>
121
+ </item>
122
+ <item>
123
+ <title>Media Manager Introduction</title>
124
+ <link/>
125
+ <description>A brief introduction to the Media Manager, a new way to create and organize your media.</description>
126
+ <guid>video1456303179</guid>
127
+ <pubDate>Sun, 16 Mar 2008 10:56:56 -0700</pubDate>
128
+ <media:keywords>media manager video tutorial</media:keywords>
129
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1457728817_05277594d1532e7e468d042c9df0781892259336.jpg?pubId=270881183" width="120"/>
130
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459096133_d809904b62354120ab28ffff60246997ecc2b1c0.jpg?pubId=270881183" width="480"/>
131
+ <bc:titleid>1456303179</bc:titleid>
132
+ <bc:duration>118</bc:duration>
133
+ <dcterms:valid/>
134
+ <bc:accountid>270881183</bc:accountid>
135
+ </item>
136
+ <item>
137
+ <title>Skydiving Ballet</title>
138
+ <link/>
139
+ <description>Thrill seekers fly 12,000 feet above Abel Tasman National Park and practice their skydiving ballet.</description>
140
+ <guid>video496518761</guid>
141
+ <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>
142
+ <media:keywords>base jumping,adventure</media:keywords>
143
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534824_292fd5a37fc25201f7a8ae6f152e4bde82b902bd.jpg?pubId=270881183" width="120"/>
144
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534833_c6aae4a710127d35eb28f031dd897a7fd40f94a3.jpg?pubId=270881183" width="480"/>
145
+ <bc:titleid>496518761</bc:titleid>
146
+ <bc:duration>90</bc:duration>
147
+ <dcterms:valid/>
148
+ <bc:accountid>270881183</bc:accountid>
149
+ </item>
150
+ <item>
151
+ <title>Flying Off Bridges</title>
152
+ <link/>
153
+ <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>
154
+ <guid>video496518759</guid>
155
+ <pubDate>Mon, 12 Feb 2007 15:55:15 -0800</pubDate>
156
+ <media:keywords>base jumping,adventure</media:keywords>
157
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534822_86408e4e20580f7bf0b41c82be8ca9f4b95fb055.jpg?pubId=270881183" width="120"/>
158
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534831_9c1e5fe9c3e95ca5009e7ceb68df2915ff669774.jpg?pubId=270881183" width="480"/>
159
+ <bc:titleid>496518759</bc:titleid>
160
+ <bc:duration>70</bc:duration>
161
+ <dcterms:valid/>
162
+ <bc:accountid>270881183</bc:accountid>
163
+ </item>
164
+ <item>
165
+ <title>White Water Adventure</title>
166
+ <link/>
167
+ <description>A quirky guide keeps the team moving through the rapids and staying above water.</description>
168
+ <guid>video496518758</guid>
169
+ <pubDate>Mon, 12 Feb 2007 15:54:51 -0800</pubDate>
170
+ <media:keywords>white water rafting,adventure</media:keywords>
171
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534827_03abe9599f83eb3ebf91f7411faa7bda3c59c32a.jpg?pubId=270881183" width="120"/>
172
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534835_6504406086a360c48ca69dc4906e2a84ba4f398e.jpg?pubId=270881183" width="480"/>
173
+ <bc:titleid>496518758</bc:titleid>
174
+ <bc:duration>126</bc:duration>
175
+ <dcterms:valid/>
176
+ <bc:accountid>270881183</bc:accountid>
177
+ </item>
178
+ <item>
179
+ <title>Open Run Mountain</title>
180
+ <link/>
181
+ <description>Instructions on how to do the most common snowboarding tricks that are performed on the ground.</description>
182
+ <guid>video496518764</guid>
183
+ <pubDate>Mon, 27 Oct 2008 09:57:23 -0700</pubDate>
184
+ <media:keywords>snowboarding,adventure</media:keywords>
185
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459191288_23d31aad23006f975927ea89c404222b2c31aa49.jpg?pubId=270881183" width="120"/>
186
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459191289_9076a70a0d842372f4bfef950dc3218433db1b78.jpg?pubId=270881183" width="480"/>
187
+ <bc:titleid>496518764</bc:titleid>
188
+ <bc:duration>70</bc:duration>
189
+ <dcterms:valid/>
190
+ <bc:accountid>270881183</bc:accountid>
191
+ </item>
192
+ <item>
193
+ <title>Demo Title 1</title>
194
+ <link/>
195
+ <description>Short Description</description>
196
+ <guid>video276063117</guid>
197
+ <pubDate>Thu, 19 Oct 2006 00:00:00 -0700</pubDate>
198
+ <media:keywords/>
199
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_275925064_470bf5f5c8794ff7ec7092ceb4a8746c7efe909e.jpg?pubId=270881183" width="120"/>
200
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_275943595_d18f85ff70509459c212b5dcfb6b6acb3fd1c877.jpg?pubId=270881183" width="480"/>
201
+ <bc:titleid>276063117</bc:titleid>
202
+ <bc:duration>526</bc:duration>
203
+ <dcterms:valid/>
204
+ <bc:accountid>270881183</bc:accountid>
205
+ </item>
206
+ <item>
207
+ <title>Jumping Off Cliffs in New Zealand</title>
208
+ <link/>
209
+ <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>
210
+ <guid>video496518760</guid>
211
+ <pubDate>Mon, 12 Feb 2007 15:55:05 -0800</pubDate>
212
+ <media:keywords>adventure,base jumping</media:keywords>
213
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534822_86408e4e20580f7bf0b41c82be8ca9f4b95fb055.jpg?pubId=270881183" width="120"/>
214
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d2/unsecured/media/270881183/270881183_502534831_9c1e5fe9c3e95ca5009e7ceb68df2915ff669774.jpg?pubId=270881183" width="480"/>
215
+ <bc:titleid>496518760</bc:titleid>
216
+ <bc:duration>102</bc:duration>
217
+ <dcterms:valid/>
218
+ <bc:accountid>270881183</bc:accountid>
219
+ </item>
220
+ <item>
221
+ <title>Publishing Experiences in Flash</title>
222
+ <link/>
223
+ <description>Publishing Experiences in Flash</description>
224
+ <guid>video1459156574</guid>
225
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
226
+ <media:keywords>tutorial</media:keywords>
227
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183" width="120"/>
228
+ <bc:titleid>1459156574</bc:titleid>
229
+ <bc:duration>171</bc:duration>
230
+ <dcterms:valid/>
231
+ <bc:accountid>270881183</bc:accountid>
232
+ </item>
233
+ <item>
234
+ <title>Publishing Experiences in HTML</title>
235
+ <link/>
236
+ <description>Publishing experiences in HTML pages.</description>
237
+ <guid>video1459160568</guid>
238
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
239
+ <media:keywords>tutorial</media:keywords>
240
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183" width="120"/>
241
+ <bc:titleid>1459160568</bc:titleid>
242
+ <bc:duration>65</bc:duration>
243
+ <dcterms:valid/>
244
+ <bc:accountid>270881183</bc:accountid>
245
+ </item>
246
+ <item>
247
+ <title>Full-Screen in ActionScript</title>
248
+ <link/>
249
+ <description>Experience API in ActionScript</description>
250
+ <guid>video1459158571</guid>
251
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
252
+ <media:keywords>tutorial</media:keywords>
253
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1460801112_011b1dede803816310ace0d3371bd5093de52cf8.jpg?pubId=270881183" width="120"/>
254
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1460801113_1ca5a2d5500930b3e80233c9c4d4d31e6ed2b108.jpg?pubId=270881183" width="480"/>
255
+ <bc:titleid>1459158571</bc:titleid>
256
+ <bc:duration>147</bc:duration>
257
+ <dcterms:valid/>
258
+ <bc:accountid>270881183</bc:accountid>
259
+ </item>
260
+ <item>
261
+ <title>Library API Overview</title>
262
+ <link/>
263
+ <description>Library API Overview</description>
264
+ <guid>video1459202649</guid>
265
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
266
+ <media:keywords>tutorial</media:keywords>
267
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459096132_5b3c29c757adada8c2484eb39722ec2973bfed10.jpg?pubId=270881183" width="120"/>
268
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459061577_0fd63632391e77b5d3ec4f572eb74e86bd2432ee.jpg?pubId=270881183" width="480"/>
269
+ <bc:titleid>1459202649</bc:titleid>
270
+ <bc:duration>550</bc:duration>
271
+ <dcterms:valid/>
272
+ <bc:accountid>270881183</bc:accountid>
273
+ </item>
274
+ <item>
275
+ <title>Media Manager Overview - DO NOT DELETE</title>
276
+ <link/>
277
+ <description>DO NOT DELETE!!! beta site title</description>
278
+ <guid>video1499645465</guid>
279
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
280
+ <media:keywords/>
281
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1457728817_05277594d1532e7e468d042c9df0781892259336.jpg?pubId=270881183" width="120"/>
282
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078809_7a1fe91d3a0df4c232dbeb6e443f9a99f405985c.jpg?pubId=270881183" width="480"/>
283
+ <bc:titleid>1499645465</bc:titleid>
284
+ <bc:duration>206</bc:duration>
285
+ <dcterms:valid/>
286
+ <bc:accountid>270881183</bc:accountid>
287
+ </item>
288
+ <item>
289
+ <title>Advertising Manager Overview - DO NOT DELETE</title>
290
+ <link/>
291
+ <description>for beta site dashboard player. do not delete!!!</description>
292
+ <guid>video1499645471</guid>
293
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
294
+ <media:keywords/>
295
+ <bc:titleid>1499645471</bc:titleid>
296
+ <bc:duration>216</bc:duration>
297
+ <dcterms:valid/>
298
+ <bc:accountid>270881183</bc:accountid>
299
+ </item>
300
+ <item>
301
+ <title>Experience Manager Overview - DO NOT DELETE!</title>
302
+ <link/>
303
+ <description>DO NOT DELETE</description>
304
+ <guid>video1499642493</guid>
305
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
306
+ <media:keywords/>
307
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183" width="120"/>
308
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183" width="480"/>
309
+ <bc:titleid>1499642493</bc:titleid>
310
+ <bc:duration>155</bc:duration>
311
+ <dcterms:valid/>
312
+ <bc:accountid>270881183</bc:accountid>
313
+ </item>
314
+ <item>
315
+ <title>BC 3 Quick Start Tour</title>
316
+ <link/>
317
+ <description>A guided tour of our new Beta modules and Help Center</description>
318
+ <guid>video1551027534</guid>
319
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
320
+ <media:keywords/>
321
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1552625948_1035b9f4de85f6fb9fa186434eb98a108cc1f47b.jpg?pubId=270881183" width="120"/>
322
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1552625948_1035b9f4de85f6fb9fa186434eb98a108cc1f47b.jpg?pubId=270881183" width="480"/>
323
+ <bc:titleid>1551027534</bc:titleid>
324
+ <bc:duration>206</bc:duration>
325
+ <dcterms:valid/>
326
+ <bc:accountid>270881183</bc:accountid>
327
+ </item>
328
+ <item>
329
+ <title>Welcome to Brightcove 3</title>
330
+ <link/>
331
+ <description>Jeremy Allaire welcomes you to the Beta and shares his vision for BC 3!</description>
332
+ <guid>video1551027532</guid>
333
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
334
+ <media:keywords/>
335
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1552625947_526f1f69db6fbbd46c18db614bb62f761f73f9b7.jpg?pubId=270881183" width="120"/>
336
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1552635761_536a7c9a04a87365009b9de3a53b0144fe38b5ad.jpg?pubId=270881183" width="480"/>
337
+ <bc:titleid>1551027532</bc:titleid>
338
+ <bc:duration>84</bc:duration>
339
+ <dcterms:valid/>
340
+ <bc:accountid>270881183</bc:accountid>
341
+ </item>
342
+ <item>
343
+ <title>BC 3 Quick Start Tour</title>
344
+ <link/>
345
+ <description>A short guided tour of the BC 3 modules and Help Center.</description>
346
+ <guid>video1608823237</guid>
347
+ <pubDate>Sat, 04 Oct 2008 22:20:43 -0700</pubDate>
348
+ <media:keywords/>
349
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1613832829_bc3.jpg?pubId=270881183" width="120"/>
350
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1614019202_bc3.jpg?pubId=270881183" width="480"/>
351
+ <bc:titleid>1608823237</bc:titleid>
352
+ <bc:duration>114</bc:duration>
353
+ <dcterms:valid/>
354
+ <bc:accountid>270881183</bc:accountid>
355
+ </item>
356
+ <item>
357
+ <title>Publishing Players in HTML</title>
358
+ <link/>
359
+ <description>How to publish single video and playlist players in an HTML webpage.</description>
360
+ <guid>video1607328878</guid>
361
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
362
+ <media:keywords/>
363
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_1459078806_1db22002f768134b1d256ac7fa5fa3315d764d03.jpg?pubId=270881183" width="120"/>
364
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1606886319_publishing-still.jpg?pubId=270881183" width="480"/>
365
+ <bc:titleid>1607328878</bc:titleid>
366
+ <bc:duration>114</bc:duration>
367
+ <dcterms:valid/>
368
+ <bc:accountid>270881183</bc:accountid>
369
+ </item>
370
+ <item>
371
+ <title>publishinghtml2</title>
372
+ <link/>
373
+ <description>publishinghtml2</description>
374
+ <guid>video1608823304</guid>
375
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
376
+ <media:keywords/>
377
+ <bc:titleid>1608823304</bc:titleid>
378
+ <bc:duration>114</bc:duration>
379
+ <dcterms:valid/>
380
+ <bc:accountid>270881183</bc:accountid>
381
+ </item>
382
+ <item>
383
+ <title>J-Allaire</title>
384
+ <link/>
385
+ <description>J-Allaire</description>
386
+ <guid>video1612710564</guid>
387
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
388
+ <media:keywords/>
389
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1612793711_th-270881183-vid1612712254-img0000.jpg?pubId=270881183" width="120"/>
390
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1612793710_vs-270881183-vid1612712254-img0000.jpg?pubId=270881183" width="480"/>
391
+ <bc:titleid>1612710564</bc:titleid>
392
+ <bc:duration>84</bc:duration>
393
+ <dcterms:valid/>
394
+ <bc:accountid>270881183</bc:accountid>
395
+ </item>
396
+ <item>
397
+ <title>helpvideo1</title>
398
+ <link/>
399
+ <description>helpvideo1</description>
400
+ <guid>video1607328886</guid>
401
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
402
+ <media:keywords>test</media:keywords>
403
+ <bc:titleid>1607328886</bc:titleid>
404
+ <bc:duration>114</bc:duration>
405
+ <dcterms:valid/>
406
+ <bc:accountid>270881183</bc:accountid>
407
+ </item>
408
+ <item>
409
+ <title>Jeremy-Beta-App-v2</title>
410
+ <link/>
411
+ <description>Jeremy-Beta-App-v2</description>
412
+ <guid>video1612584770</guid>
413
+ <pubDate>Mon, 16 Jun 2008 14:57:19 -0700</pubDate>
414
+ <media:keywords/>
415
+ <bc:titleid>1612584770</bc:titleid>
416
+ <bc:duration>84</bc:duration>
417
+ <dcterms:valid/>
418
+ <bc:accountid>270881183</bc:accountid>
419
+ </item>
420
+ <item>
421
+ <title>helpvideo</title>
422
+ <link/>
423
+ <description>helpvideo</description>
424
+ <guid>video1610678364</guid>
425
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
426
+ <media:keywords/>
427
+ <bc:titleid>1610678364</bc:titleid>
428
+ <bc:duration>114</bc:duration>
429
+ <dcterms:valid/>
430
+ <bc:accountid>270881183</bc:accountid>
431
+ </item>
432
+ <item>
433
+ <title>video name</title>
434
+ <link/>
435
+ <description>description</description>
436
+ <guid>video1631470976</guid>
437
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
438
+ <media:keywords/>
439
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1653695066_th-270881183-vid1631309161-img0000.jpg?pubId=270881183" width="120"/>
440
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1653695065_vs-270881183-vid1631309161-img0000.jpg?pubId=270881183" width="480"/>
441
+ <bc:titleid>1631470976</bc:titleid>
442
+ <bc:duration>3</bc:duration>
443
+ <dcterms:valid/>
444
+ <bc:accountid>270881183</bc:accountid>
445
+ </item>
446
+ <item>
447
+ <title>video name</title>
448
+ <link/>
449
+ <description>description</description>
450
+ <guid>video1631312170</guid>
451
+ <pubDate>Mon, 07 Jul 2008 15:57:55 -0700</pubDate>
452
+ <media:keywords/>
453
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1653695071_th-270881183-vid1631311670-img0000.jpg?pubId=270881183" width="120"/>
454
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1653695070_vs-270881183-vid1631311670-img0000.jpg?pubId=270881183" width="480"/>
455
+ <bc:titleid>1631312170</bc:titleid>
456
+ <bc:duration>3</bc:duration>
457
+ <dcterms:valid/>
458
+ <bc:accountid>270881183</bc:accountid>
459
+ </item>
460
+ <item>
461
+ <title>Brightcove 3 Intro Webinar</title>
462
+ <link/>
463
+ <description>In this webinar, Sr. Product Manager Bivha Singh gives a comprehensive tour of the Brightcove 3 Beta.</description>
464
+ <guid>video1736992854</guid>
465
+ <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>
466
+ <media:keywords/>
467
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1738720777_BC3-Intro-Webinar-Thumb.jpg?pubId=270881183" width="120"/>
468
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1738753570_BC3-Intro-Webinar-Still.jpg?pubId=270881183" width="480"/>
469
+ <bc:titleid>1736992854</bc:titleid>
470
+ <bc:duration>3240</bc:duration>
471
+ <dcterms:valid/>
472
+ <bc:accountid>270881183</bc:accountid>
473
+ </item>
474
+ <item>
475
+ <title>Welcome to Brightcove 3</title>
476
+ <link/>
477
+ <description>Tareef Kawaf, Brightcove's SVP of Engineering, welcomes you to Brightcove 3.</description>
478
+ <guid>video1858922805</guid>
479
+ <pubDate>Mon, 27 Oct 2008 12:04:21 -0700</pubDate>
480
+ <media:keywords/>
481
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1858983740_brightcove3-thumb.jpg?pubId=270881183" width="120"/>
482
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1858994782_vid-StudioDashboards.jpg?pubId=270881183" width="480"/>
483
+ <bc:titleid>1858922805</bc:titleid>
484
+ <bc:duration>53</bc:duration>
485
+ <dcterms:valid/>
486
+ <bc:accountid>270881183</bc:accountid>
487
+ </item>
488
+ <item>
489
+ <title>Welcome to the Help Center</title>
490
+ <link/>
491
+ <description>Bob Mason, Brightcove's CTO, welcomes you to the Help &amp; Community site.</description>
492
+ <guid>video1858922804</guid>
493
+ <pubDate>Mon, 27 Oct 2008 12:04:21 -0700</pubDate>
494
+ <media:keywords/>
495
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1858994572_helpcenter-thumb.jpg?pubId=270881183" width="120"/>
496
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1858994785_vid-HelpCenterDashboard.jpg?pubId=270881183" width="480"/>
497
+ <bc:titleid>1858922804</bc:titleid>
498
+ <bc:duration>32</bc:duration>
499
+ <dcterms:valid/>
500
+ <bc:accountid>270881183</bc:accountid>
501
+ </item>
502
+ <item>
503
+ <title>Welcome to Brightcove 3</title>
504
+ <link/>
505
+ <description>Tareef Kawaf, Brightcove's SVP of Engineering, welcomes you to Brightcove 3 and the Brightcove Studio.</description>
506
+ <guid>video1861199444</guid>
507
+ <pubDate>Thu, 16 Oct 2008 12:29:10 -0700</pubDate>
508
+ <media:keywords>help</media:keywords>
509
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1861240567_brightcove3-thumb.jpg?pubId=270881183" width="120"/>
510
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1861238594_brightcove3-still.jpg?pubId=270881183" width="480"/>
511
+ <bc:titleid>1861199444</bc:titleid>
512
+ <bc:duration>53</bc:duration>
513
+ <dcterms:valid/>
514
+ <bc:accountid>270881183</bc:accountid>
515
+ </item>
516
+ <item>
517
+ <title>Welcome to the Help Center</title>
518
+ <link/>
519
+ <description>Bob Mason, Brightcove's CTO, introduces the Help &amp; Community center.</description>
520
+ <guid>video1861222060</guid>
521
+ <pubDate>Thu, 16 Oct 2008 12:40:20 -0700</pubDate>
522
+ <media:keywords>help</media:keywords>
523
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1861202907_helpcenter-thumb.jpg?pubId=270881183" width="120"/>
524
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1861240589_helpcenter-still.jpg?pubId=270881183" width="480"/>
525
+ <bc:titleid>1861222060</bc:titleid>
526
+ <bc:duration>32</bc:duration>
527
+ <dcterms:valid/>
528
+ <bc:accountid>270881183</bc:accountid>
529
+ </item>
530
+ <item>
531
+ <title>website 2</title>
532
+ <link/>
533
+ <description>website 2</description>
534
+ <guid>video1887748257</guid>
535
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
536
+ <media:keywords/>
537
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1887743441_th-270881183-vid1887795751-img0000.jpg?pubId=270881183" width="120"/>
538
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d6/unsecured/media/270881183/270881183_1887743440_vs-270881183-vid1887795751-img0000.jpg?pubId=270881183" width="480"/>
539
+ <bc:titleid>1887748257</bc:titleid>
540
+ <bc:duration>81</bc:duration>
541
+ <dcterms:valid/>
542
+ <bc:accountid>270881183</bc:accountid>
543
+ </item>
544
+ <item>
545
+ <title>Testvideo 3-Tagewetter</title>
546
+ <link/>
547
+ <description>Lorem Ipsum</description>
548
+ <guid>video3188423001</guid>
549
+ <pubDate>Tue, 25 Nov 2008 02:11:45 -0800</pubDate>
550
+ <media:keywords/>
551
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_3211755001_th-270881183-vid3212672001-img0000.jpg?pubId=270881183" width="120"/>
552
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_3211754001_vs-270881183-vid3212672001-img0000.jpg?pubId=270881183" width="480"/>
553
+ <bc:titleid>3188423001</bc:titleid>
554
+ <bc:duration>19</bc:duration>
555
+ <dcterms:valid/>
556
+ <bc:accountid>270881183</bc:accountid>
557
+ </item>
558
+ <item>
559
+ <title>Developer Network - Subtitle Example Movie</title>
560
+ <link/>
561
+ <description>Developer Training - Subtitle Example Movie</description>
562
+ <guid>video3905580001</guid>
563
+ <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>
564
+ <media:keywords/>
565
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_3906244001_wowthumb.jpg?pubId=270881183" width="120"/>
566
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_3906822001_wow.jpg?pubId=270881183" width="480"/>
567
+ <bc:titleid>3905580001</bc:titleid>
568
+ <bc:duration>206</bc:duration>
569
+ <dcterms:valid/>
570
+ <bc:accountid>270881183</bc:accountid>
571
+ </item>
572
+ <item>
573
+ <title>DR080284_heartbeat_ep20_1_4_BC3SMALLMED</title>
574
+ <link/>
575
+ <description>DR080284_heartbeat_ep20_1_4_BC3SMALLMED</description>
576
+ <guid>video4501142001</guid>
577
+ <pubDate>Tue, 21 Jun 2011 09:19:57 -0700</pubDate>
578
+ <media:keywords/>
579
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_4528935001_th-270881183-vid4525445001-img0000.jpg?pubId=270881183" width="120"/>
580
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_4528934001_vs-270881183-vid4525445001-img0000.jpg?pubId=270881183" width="480"/>
581
+ <bc:titleid>4501142001</bc:titleid>
582
+ <bc:duration>781</bc:duration>
583
+ <dcterms:valid/>
584
+ <bc:accountid>270881183</bc:accountid>
585
+ </item>
586
+ <item>
587
+ <title>Anthony Rother - Biomechanik</title>
588
+ <link/>
589
+ <description>Anthony Rother - Biomechanik</description>
590
+ <guid>video8322910001</guid>
591
+ <pubDate>Fri, 16 Jan 2009 06:36:49 -0800</pubDate>
592
+ <media:keywords>music</media:keywords>
593
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_8322864001_th-270881183-vid8321817001-img0000.jpg?pubId=270881183" width="120"/>
594
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_8322863001_vs-270881183-vid8321817001-img0000.jpg?pubId=270881183" width="480"/>
595
+ <bc:titleid>8322910001</bc:titleid>
596
+ <bc:duration>177</bc:duration>
597
+ <dcterms:valid/>
598
+ <bc:accountid>270881183</bc:accountid>
599
+ </item>
600
+ <item>
601
+ <title>Introduction to Brightcove</title>
602
+ <link/>
603
+ <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>
604
+ <guid>video12061338001</guid>
605
+ <pubDate>Fri, 13 Feb 2009 14:19:23 -0800</pubDate>
606
+ <media:keywords>flv,sales demo</media:keywords>
607
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064555001_th-270881183-vid12063042001-img0000.jpg?pubId=270881183" width="120"/>
608
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064554001_vs-270881183-vid12063042001-img0000.jpg?pubId=270881183" width="480"/>
609
+ <bc:titleid>12061338001</bc:titleid>
610
+ <bc:duration>43</bc:duration>
611
+ <dcterms:valid/>
612
+ <bc:accountid>270881183</bc:accountid>
613
+ </item>
614
+ <item>
615
+ <title>lores-part4</title>
616
+ <link/>
617
+ <description>lores-part4</description>
618
+ <guid>video12061350001</guid>
619
+ <pubDate>Fri, 13 Feb 2009 10:53:48 -0800</pubDate>
620
+ <media:keywords>sales demo,flv</media:keywords>
621
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064645001_th-270881183-vid12063066001-img0000.jpg?pubId=270881183" width="120"/>
622
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064644001_vs-270881183-vid12063066001-img0000.jpg?pubId=270881183" width="480"/>
623
+ <bc:titleid>12061350001</bc:titleid>
624
+ <bc:duration>114</bc:duration>
625
+ <dcterms:valid/>
626
+ <bc:accountid>270881183</bc:accountid>
627
+ </item>
628
+ <item>
629
+ <title>Uploading Videos to Brightcove</title>
630
+ <link/>
631
+ <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>
632
+ <guid>video12061364001</guid>
633
+ <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>
634
+ <media:keywords>sales demo,H264</media:keywords>
635
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12184083001_paragraph1.jpg?pubId=270881183" width="120"/>
636
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181176001_paragraph1.jpg?pubId=270881183" width="480"/>
637
+ <bc:titleid>12061364001</bc:titleid>
638
+ <bc:duration>70</bc:duration>
639
+ <dcterms:valid/>
640
+ <bc:accountid>270881183</bc:accountid>
641
+ </item>
642
+ <item>
643
+ <title>The Brightcove 3 Studio</title>
644
+ <link/>
645
+ <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>
646
+ <guid>video12068198001</guid>
647
+ <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>
648
+ <media:keywords>H264,sales demo</media:keywords>
649
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12172363001_Untitled-3.jpg?pubId=270881183" width="120"/>
650
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12172362001_Untitled-3.jpg?pubId=270881183" width="480"/>
651
+ <bc:titleid>12068198001</bc:titleid>
652
+ <bc:duration>43</bc:duration>
653
+ <dcterms:valid/>
654
+ <bc:accountid>270881183</bc:accountid>
655
+ </item>
656
+ <item>
657
+ <title>part10</title>
658
+ <link/>
659
+ <description>part10</description>
660
+ <guid>video12068267001</guid>
661
+ <pubDate>Fri, 13 Feb 2009 12:07:39 -0800</pubDate>
662
+ <media:keywords>sales demo,flv</media:keywords>
663
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12082704001_th-270881183-vid12080362001-img0000.jpg?pubId=270881183" width="120"/>
664
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12082703001_vs-270881183-vid12080362001-img0000.jpg?pubId=270881183" width="480"/>
665
+ <bc:titleid>12068267001</bc:titleid>
666
+ <bc:duration>69</bc:duration>
667
+ <dcterms:valid/>
668
+ <bc:accountid>270881183</bc:accountid>
669
+ </item>
670
+ <item>
671
+ <title>Video Metadata and Policy Management</title>
672
+ <link/>
673
+ <description>Easily manage metadata and policies for your video content. Select multiple videos to edit shared settings all at once.</description>
674
+ <guid>video12061391001</guid>
675
+ <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>
676
+ <media:keywords>sales demo,H264</media:keywords>
677
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181161001_paragraph2.jpg?pubId=270881183" width="120"/>
678
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12183554001_paragraph2.jpg?pubId=270881183" width="480"/>
679
+ <bc:titleid>12061391001</bc:titleid>
680
+ <bc:duration>114</bc:duration>
681
+ <dcterms:valid/>
682
+ <bc:accountid>270881183</bc:accountid>
683
+ </item>
684
+ <item>
685
+ <title>Playlist Creation &amp; Management</title>
686
+ <link/>
687
+ <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>
688
+ <guid>video12061361001</guid>
689
+ <pubDate>Fri, 13 Feb 2009 14:53:16 -0800</pubDate>
690
+ <media:keywords>sales demo,H264</media:keywords>
691
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12184068001_paragraph3.jpg?pubId=270881183" width="120"/>
692
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12183557001_paragraph3.jpg?pubId=270881183" width="480"/>
693
+ <bc:titleid>12061361001</bc:titleid>
694
+ <bc:duration>58</bc:duration>
695
+ <dcterms:valid/>
696
+ <bc:accountid>270881183</bc:accountid>
697
+ </item>
698
+ <item>
699
+ <title>Developer Tools &amp; Technology Partners</title>
700
+ <link/>
701
+ <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>
702
+ <guid>video12068287001</guid>
703
+ <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>
704
+ <media:keywords>H264,sales demo</media:keywords>
705
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12170392001_Untitled-6.jpg?pubId=270881183" width="120"/>
706
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181127001_Untitled-6.jpg?pubId=270881183" width="480"/>
707
+ <bc:titleid>12068287001</bc:titleid>
708
+ <bc:duration>69</bc:duration>
709
+ <dcterms:valid/>
710
+ <bc:accountid>270881183</bc:accountid>
711
+ </item>
712
+ <item>
713
+ <title>Adding Content to your Players</title>
714
+ <link/>
715
+ <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>
716
+ <guid>video12064397001</guid>
717
+ <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>
718
+ <media:keywords>sales demo,H264</media:keywords>
719
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181149001_Untitled-4.jpg?pubId=270881183" width="120"/>
720
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181150001_Untitled-4.jpg?pubId=270881183" width="480"/>
721
+ <bc:titleid>12064397001</bc:titleid>
722
+ <bc:duration>39</bc:duration>
723
+ <dcterms:valid/>
724
+ <bc:accountid>270881183</bc:accountid>
725
+ </item>
726
+ <item>
727
+ <title>Introduction to Brightcove</title>
728
+ <link/>
729
+ <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>
730
+ <guid>video12064382001</guid>
731
+ <pubDate>Fri, 13 Feb 2009 15:03:10 -0800</pubDate>
732
+ <media:keywords>sales demo,H264</media:keywords>
733
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12067674001_th-270881183-vid12063405001-img0000.jpg?pubId=270881183" width="120"/>
734
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12067673001_vs-270881183-vid12063405001-img0000.jpg?pubId=270881183" width="480"/>
735
+ <bc:titleid>12064382001</bc:titleid>
736
+ <bc:duration>43</bc:duration>
737
+ <dcterms:valid/>
738
+ <bc:accountid>270881183</bc:accountid>
739
+ </item>
740
+ <item>
741
+ <title>part6</title>
742
+ <link/>
743
+ <description>part6</description>
744
+ <guid>video12061357001</guid>
745
+ <pubDate>Fri, 13 Feb 2009 10:54:44 -0800</pubDate>
746
+ <media:keywords>flv,sales demo</media:keywords>
747
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12067597001_th-270881183-vid12063075001-img0000.jpg?pubId=270881183" width="120"/>
748
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12067596001_vs-270881183-vid12063075001-img0000.jpg?pubId=270881183" width="480"/>
749
+ <bc:titleid>12061357001</bc:titleid>
750
+ <bc:duration>39</bc:duration>
751
+ <dcterms:valid/>
752
+ <bc:accountid>270881183</bc:accountid>
753
+ </item>
754
+ <item>
755
+ <title>Creating Player Templates and Publishing Players</title>
756
+ <link/>
757
+ <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>
758
+ <guid>video12084670001</guid>
759
+ <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>
760
+ <media:keywords>H264,sales demo</media:keywords>
761
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12172374001_Untitled-5.jpg?pubId=270881183" width="120"/>
762
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12166053001_Untitled-5.jpg?pubId=270881183" width="480"/>
763
+ <bc:titleid>12084670001</bc:titleid>
764
+ <bc:duration>155</bc:duration>
765
+ <dcterms:valid/>
766
+ <bc:accountid>270881183</bc:accountid>
767
+ </item>
768
+ <item>
769
+ <title>part3</title>
770
+ <link/>
771
+ <description>part3</description>
772
+ <guid>video12053699001</guid>
773
+ <pubDate>Fri, 13 Feb 2009 10:49:47 -0800</pubDate>
774
+ <media:keywords>sales demo,flv</media:keywords>
775
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064593001_th-270881183-vid12058035001-img0000.jpg?pubId=270881183" width="120"/>
776
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064592001_vs-270881183-vid12058035001-img0000.jpg?pubId=270881183" width="480"/>
777
+ <bc:titleid>12053699001</bc:titleid>
778
+ <bc:duration>70</bc:duration>
779
+ <dcterms:valid/>
780
+ <bc:accountid>270881183</bc:accountid>
781
+ </item>
782
+ <item>
783
+ <title>part9</title>
784
+ <link/>
785
+ <description>part9</description>
786
+ <guid>video12068273001</guid>
787
+ <pubDate>Fri, 13 Feb 2009 12:12:03 -0800</pubDate>
788
+ <media:keywords>sales demo,flv</media:keywords>
789
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12082715001_th-270881183-vid12080372001-img0000.jpg?pubId=270881183" width="120"/>
790
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12082714001_vs-270881183-vid12080372001-img0000.jpg?pubId=270881183" width="480"/>
791
+ <bc:titleid>12068273001</bc:titleid>
792
+ <bc:duration>77</bc:duration>
793
+ <dcterms:valid/>
794
+ <bc:accountid>270881183</bc:accountid>
795
+ </item>
796
+ <item>
797
+ <title>part5</title>
798
+ <link/>
799
+ <description>part5</description>
800
+ <guid>video12061355001</guid>
801
+ <pubDate>Fri, 13 Feb 2009 10:54:54 -0800</pubDate>
802
+ <media:keywords>sales demo,flv</media:keywords>
803
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12067585001_th-270881183-vid12063074001-img0000.jpg?pubId=270881183" width="120"/>
804
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12067584001_vs-270881183-vid12063074001-img0000.jpg?pubId=270881183" width="480"/>
805
+ <bc:titleid>12061355001</bc:titleid>
806
+ <bc:duration>58</bc:duration>
807
+ <dcterms:valid/>
808
+ <bc:accountid>270881183</bc:accountid>
809
+ </item>
810
+ <item>
811
+ <title>The Brightcove 3 Studio</title>
812
+ <link/>
813
+ <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>
814
+ <guid>video12053705001</guid>
815
+ <pubDate>Fri, 13 Feb 2009 14:20:41 -0800</pubDate>
816
+ <media:keywords>sales demo,flv</media:keywords>
817
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064571001_th-270881183-vid12058042001-img0000.jpg?pubId=270881183" width="120"/>
818
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12064570001_vs-270881183-vid12058042001-img0000.jpg?pubId=270881183" width="480"/>
819
+ <bc:titleid>12053705001</bc:titleid>
820
+ <bc:duration>43</bc:duration>
821
+ <dcterms:valid/>
822
+ <bc:accountid>270881183</bc:accountid>
823
+ </item>
824
+ <item>
825
+ <title>part7and8</title>
826
+ <link/>
827
+ <description>part7and8</description>
828
+ <guid>video12082368001</guid>
829
+ <pubDate>Fri, 13 Feb 2009 12:22:20 -0800</pubDate>
830
+ <media:keywords>sales demo,flv</media:keywords>
831
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12087221001_th-270881183-vid12084211001-img0000.jpg?pubId=270881183" width="120"/>
832
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12087220001_vs-270881183-vid12084211001-img0000.jpg?pubId=270881183" width="480"/>
833
+ <bc:titleid>12082368001</bc:titleid>
834
+ <bc:duration>155</bc:duration>
835
+ <dcterms:valid/>
836
+ <bc:accountid>270881183</bc:accountid>
837
+ </item>
838
+ <item>
839
+ <title>Online Video Advertising &amp; Distribution</title>
840
+ <link/>
841
+ <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>
842
+ <guid>video12082372001</guid>
843
+ <pubDate>Fri, 13 Feb 2009 14:52:22 -0800</pubDate>
844
+ <media:keywords>H264,sales demo</media:keywords>
845
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181107001_Untitled-ad.jpg?pubId=270881183" width="120"/>
846
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181105001_Untitled-ad.jpg?pubId=270881183" width="480"/>
847
+ <bc:titleid>12082372001</bc:titleid>
848
+ <bc:duration>77</bc:duration>
849
+ <dcterms:valid/>
850
+ <bc:accountid>270881183</bc:accountid>
851
+ </item>
852
+ <item>
853
+ <title>do not delete! using image for studio promo</title>
854
+ <link/>
855
+ <description>do not delete this video ! emily - mar 09</description>
856
+ <guid>video17184052001</guid>
857
+ <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>
858
+ <media:keywords/>
859
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26425235001_maintenance-image.jpg?pubId=270881183" width="480"/>
860
+ <bc:titleid>17184052001</bc:titleid>
861
+ <bc:duration>29</bc:duration>
862
+ <dcterms:valid/>
863
+ <bc:accountid>270881183</bc:accountid>
864
+ </item>
865
+ <item>
866
+ <title>Ad Creatives: Review of SWF Guidelines</title>
867
+ <link/>
868
+ <description>Crystal West, Brightcove Software Engineer, reviews the Brightcove ad creative guidelines and documentation.</description>
869
+ <guid>video22441804001</guid>
870
+ <pubDate>Thu, 07 May 2009 15:35:04 -0700</pubDate>
871
+ <media:keywords>creative,training,engineer,adops,crystal,Ad</media:keywords>
872
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_12181107001_Untitled-ad.jpg?pubId=270881183" width="120"/>
873
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_22460675001_adimage.jpg?pubId=270881183" width="480"/>
874
+ <bc:titleid>22441804001</bc:titleid>
875
+ <bc:duration>633</bc:duration>
876
+ <dcterms:valid/>
877
+ <bc:accountid>270881183</bc:accountid>
878
+ </item>
879
+ <item>
880
+ <title>part2-troubleshooting</title>
881
+ <link/>
882
+ <description>part2-troubleshooting</description>
883
+ <guid>video22480492001</guid>
884
+ <pubDate>Thu, 07 May 2009 15:23:36 -0700</pubDate>
885
+ <media:keywords/>
886
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_22483909001_th-270881183-vid22480613001-img0000.jpg?pubId=270881183" width="120"/>
887
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_22483908001_vs-270881183-vid22480613001-img0000.jpg?pubId=270881183" width="480"/>
888
+ <bc:titleid>22480492001</bc:titleid>
889
+ <bc:duration>2256</bc:duration>
890
+ <dcterms:valid/>
891
+ <bc:accountid>270881183</bc:accountid>
892
+ </item>
893
+ <item>
894
+ <title>Dolphins</title>
895
+ <link/>
896
+ <description>Dolphins</description>
897
+ <guid>video26511963001</guid>
898
+ <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>
899
+ <media:keywords>custom skins,sea</media:keywords>
900
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26531197001_dolphins.jpg?pubId=270881183" width="120"/>
901
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26519372001_vs-270881183-vid26510372001-img0000.jpg?pubId=270881183" width="480"/>
902
+ <bc:titleid>26511963001</bc:titleid>
903
+ <bc:duration>12</bc:duration>
904
+ <dcterms:valid/>
905
+ <bc:accountid>270881183</bc:accountid>
906
+ </item>
907
+ <item>
908
+ <title>Clown Fish</title>
909
+ <link/>
910
+ <description>Ah, the wonders of nature</description>
911
+ <guid>video26512544001</guid>
912
+ <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>
913
+ <media:keywords>custom skins,sea</media:keywords>
914
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26530719001_clownFish.jpg?pubId=270881183" width="120"/>
915
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26518832001_vs-270881183-vid26510567001-img0000.jpg?pubId=270881183" width="480"/>
916
+ <bc:titleid>26512544001</bc:titleid>
917
+ <bc:duration>29</bc:duration>
918
+ <dcterms:valid/>
919
+ <bc:accountid>270881183</bc:accountid>
920
+ </item>
921
+ <item>
922
+ <title>Sea Horse</title>
923
+ <link/>
924
+ <description>Sea Horse</description>
925
+ <guid>video26514904001</guid>
926
+ <pubDate>Tue, 16 Jun 2009 12:31:23 -0700</pubDate>
927
+ <media:keywords>custom skins,sea</media:keywords>
928
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26525426001_seaHorse.jpg?pubId=270881183" width="120"/>
929
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26522529001_vs-270881183-vid26514288001-img0000.jpg?pubId=270881183" width="480"/>
930
+ <bc:titleid>26514904001</bc:titleid>
931
+ <bc:duration>29</bc:duration>
932
+ <dcterms:valid/>
933
+ <bc:accountid>270881183</bc:accountid>
934
+ </item>
935
+ <item>
936
+ <title>Jellyfish</title>
937
+ <link/>
938
+ <description>Jellyfish</description>
939
+ <guid>video26512561001</guid>
940
+ <pubDate>Tue, 16 Jun 2009 12:41:40 -0700</pubDate>
941
+ <media:keywords>sea,custom skins</media:keywords>
942
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26530711001_jellyFish.jpg?pubId=270881183" width="120"/>
943
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26519430001_vs-270881183-vid26513829001-img0000.jpg?pubId=270881183" width="480"/>
944
+ <bc:titleid>26512561001</bc:titleid>
945
+ <bc:duration>28</bc:duration>
946
+ <dcterms:valid/>
947
+ <bc:accountid>270881183</bc:accountid>
948
+ </item>
949
+ <item>
950
+ <title>Sea Turtle</title>
951
+ <link/>
952
+ <description>Sea Turtle</description>
953
+ <guid>video26515315001</guid>
954
+ <pubDate>Tue, 16 Jun 2009 12:10:26 -0700</pubDate>
955
+ <media:keywords>sea,custom skins</media:keywords>
956
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26522393001_th-270881183-vid26516502001-img0000.jpg?pubId=270881183" width="120"/>
957
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26522392001_vs-270881183-vid26516502001-img0000.jpg?pubId=270881183" width="480"/>
958
+ <bc:titleid>26515315001</bc:titleid>
959
+ <bc:duration>13</bc:duration>
960
+ <dcterms:valid/>
961
+ <bc:accountid>270881183</bc:accountid>
962
+ </item>
963
+ <item>
964
+ <title>Sea Crab</title>
965
+ <link/>
966
+ <description>Sea Crab</description>
967
+ <guid>video26512546001</guid>
968
+ <pubDate>Wed, 17 Jun 2009 08:02:32 -0700</pubDate>
969
+ <media:keywords>sea,custom skins</media:keywords>
970
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26518841001_th-270881183-vid26510570001-img0000.jpg?pubId=270881183" width="120"/>
971
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26510535001_playerChrome-skin.jpg?pubId=270881183" width="480"/>
972
+ <bc:titleid>26512546001</bc:titleid>
973
+ <bc:duration>29</bc:duration>
974
+ <dcterms:valid/>
975
+ <bc:accountid>270881183</bc:accountid>
976
+ </item>
977
+ <item>
978
+ <title>Lion Fish</title>
979
+ <link/>
980
+ <description>Lion Fish</description>
981
+ <guid>video26515638001</guid>
982
+ <pubDate>Tue, 16 Jun 2009 12:41:07 -0700</pubDate>
983
+ <media:keywords>sea,custom skins</media:keywords>
984
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26530685001_lionFish.jpg?pubId=270881183" width="120"/>
985
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26521860001_vs-270881183-vid26513846001-img0000.jpg?pubId=270881183" width="480"/>
986
+ <bc:titleid>26515638001</bc:titleid>
987
+ <bc:duration>28</bc:duration>
988
+ <dcterms:valid/>
989
+ <bc:accountid>270881183</bc:accountid>
990
+ </item>
991
+ <item>
992
+ <title>Sea Anenome</title>
993
+ <link/>
994
+ <description>Sea Anenome</description>
995
+ <guid>video26515322001</guid>
996
+ <pubDate>Tue, 16 Jun 2009 12:29:09 -0700</pubDate>
997
+ <media:keywords>sea,custom skins</media:keywords>
998
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26528599001_anemone.jpg?pubId=270881183" width="120"/>
999
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26524624001_vs-270881183-vid26516515001-img0000.jpg?pubId=270881183" width="480"/>
1000
+ <bc:titleid>26515322001</bc:titleid>
1001
+ <bc:duration>25</bc:duration>
1002
+ <dcterms:valid/>
1003
+ <bc:accountid>270881183</bc:accountid>
1004
+ </item>
1005
+ <item>
1006
+ <title>Sea Turtle</title>
1007
+ <link/>
1008
+ <description>Sea Turtle</description>
1009
+ <guid>video26514920001</guid>
1010
+ <pubDate>Tue, 16 Jun 2009 12:29:48 -0700</pubDate>
1011
+ <media:keywords>custom skins,sea</media:keywords>
1012
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26525423001_seaTurtle.jpg?pubId=270881183" width="120"/>
1013
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d7/unsecured/media/270881183/270881183_26522387001_vs-270881183-vid26514314001-img0000.jpg?pubId=270881183" width="480"/>
1014
+ <bc:titleid>26514920001</bc:titleid>
1015
+ <bc:duration>29</bc:duration>
1016
+ <dcterms:valid/>
1017
+ <bc:accountid>270881183</bc:accountid>
1018
+ </item>
1019
+ <item>
1020
+ <title>Dragonfly</title>
1021
+ <link/>
1022
+ <description>Ah, the wonders of nature</description>
1023
+ <guid>video34442090001</guid>
1024
+ <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>
1025
+ <media:keywords>bugs</media:keywords>
1026
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34456853001_th-34452567001.jpg?pubId=270881183" width="120"/>
1027
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34456852001_vs-34452567001.jpg?pubId=270881183" width="480"/>
1028
+ <bc:titleid>34442090001</bc:titleid>
1029
+ <bc:duration>17</bc:duration>
1030
+ <dcterms:valid/>
1031
+ <bc:accountid>270881183</bc:accountid>
1032
+ </item>
1033
+ <item>
1034
+ <title>Butterfly</title>
1035
+ <link/>
1036
+ <description>Ah, the wonders of nature</description>
1037
+ <guid>video34441794001</guid>
1038
+ <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>
1039
+ <media:keywords>bugs</media:keywords>
1040
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34461777001_th-34452694001.jpg?pubId=270881183" width="120"/>
1041
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34461776001_vs-34452694001.jpg?pubId=270881183" width="480"/>
1042
+ <bc:titleid>34441794001</bc:titleid>
1043
+ <bc:duration>27</bc:duration>
1044
+ <dcterms:valid/>
1045
+ <bc:accountid>270881183</bc:accountid>
1046
+ </item>
1047
+ <item>
1048
+ <title>Satellite</title>
1049
+ <link/>
1050
+ <description>Satellite</description>
1051
+ <guid>video34442060001</guid>
1052
+ <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>
1053
+ <media:keywords/>
1054
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34453517001_th-34442202001.jpg?pubId=270881183" width="120"/>
1055
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34453516001_vs-34442202001.jpg?pubId=270881183" width="480"/>
1056
+ <bc:titleid>34442060001</bc:titleid>
1057
+ <bc:duration>19</bc:duration>
1058
+ <dcterms:valid/>
1059
+ <bc:accountid>270881183</bc:accountid>
1060
+ </item>
1061
+ <item>
1062
+ <title>Bee</title>
1063
+ <link/>
1064
+ <description>Ah, the wonders of nature</description>
1065
+ <guid>video34459290001</guid>
1066
+ <pubDate>Thu, 27 Jan 2011 08:40:03 -0800</pubDate>
1067
+ <media:keywords>bugs</media:keywords>
1068
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34461747001_th-34454703001.jpg?pubId=270881183" width="120"/>
1069
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34461746001_vs-34454703001.jpg?pubId=270881183" width="480"/>
1070
+ <bc:titleid>34459290001</bc:titleid>
1071
+ <bc:duration>29</bc:duration>
1072
+ <dcterms:valid/>
1073
+ <bc:accountid>270881183</bc:accountid>
1074
+ </item>
1075
+ <item>
1076
+ <title>Galaxy</title>
1077
+ <link/>
1078
+ <description>Galaxy</description>
1079
+ <guid>video34441770001</guid>
1080
+ <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>
1081
+ <media:keywords/>
1082
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34456350001_th-34452652001.jpg?pubId=270881183" width="120"/>
1083
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34456349001_vs-34452652001.jpg?pubId=270881183" width="480"/>
1084
+ <bc:titleid>34441770001</bc:titleid>
1085
+ <bc:duration>19</bc:duration>
1086
+ <dcterms:valid/>
1087
+ <bc:accountid>270881183</bc:accountid>
1088
+ </item>
1089
+ <item>
1090
+ <title>Common Redpoll</title>
1091
+ <link/>
1092
+ <description>Common Redpoll</description>
1093
+ <guid>video34464665001</guid>
1094
+ <pubDate>Fri, 15 Jan 2010 10:48:15 -0800</pubDate>
1095
+ <media:keywords/>
1096
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34474808001_th-34467914001.jpg?pubId=270881183" width="120"/>
1097
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34474807001_vs-34467914001.jpg?pubId=270881183" width="480"/>
1098
+ <bc:titleid>34464665001</bc:titleid>
1099
+ <bc:duration>30</bc:duration>
1100
+ <dcterms:valid/>
1101
+ <bc:accountid>270881183</bc:accountid>
1102
+ </item>
1103
+ <item>
1104
+ <title>Planets</title>
1105
+ <link/>
1106
+ <description>Planets</description>
1107
+ <guid>video34442072001</guid>
1108
+ <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>
1109
+ <media:keywords/>
1110
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34454589001_th-34452535001.jpg?pubId=270881183" width="120"/>
1111
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34454588001_vs-34452535001.jpg?pubId=270881183" width="480"/>
1112
+ <bc:titleid>34442072001</bc:titleid>
1113
+ <bc:duration>26</bc:duration>
1114
+ <dcterms:valid/>
1115
+ <bc:accountid>270881183</bc:accountid>
1116
+ </item>
1117
+ <item>
1118
+ <title>Space Station</title>
1119
+ <link/>
1120
+ <description>Space Station</description>
1121
+ <guid>video34466054001</guid>
1122
+ <pubDate>Tue, 21 Jun 2011 09:19:42 -0700</pubDate>
1123
+ <media:keywords/>
1124
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34471582001_th-34469892001.jpg?pubId=270881183" width="120"/>
1125
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d5/unsecured/media/270881183/270881183_34471581001_vs-34469892001.jpg?pubId=270881183" width="480"/>
1126
+ <bc:titleid>34466054001</bc:titleid>
1127
+ <bc:duration>29</bc:duration>
1128
+ <dcterms:valid/>
1129
+ <bc:accountid>270881183</bc:accountid>
1130
+ </item>
1131
+ <item>
1132
+ <title>One Planet Screen Recording</title>
1133
+ <link/>
1134
+ <description>One Planet Screen Recording</description>
1135
+ <guid>video49721640001</guid>
1136
+ <pubDate>Wed, 11 Nov 2009 05:27:02 -0800</pubDate>
1137
+ <media:keywords/>
1138
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_49728887001_asset-1257946022002.jpg?pubId=270881183" width="120"/>
1139
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_49728884001_asset-1257945932994.jpg?pubId=270881183" width="480"/>
1140
+ <bc:titleid>49721640001</bc:titleid>
1141
+ <bc:duration>96</bc:duration>
1142
+ <dcterms:valid/>
1143
+ <bc:accountid>270881183</bc:accountid>
1144
+ </item>
1145
+ <item>
1146
+ <title>iPhone Mobile Web application demo</title>
1147
+ <link/>
1148
+ <description>iPhone Mobile Web application demo</description>
1149
+ <guid>video50165448001</guid>
1150
+ <pubDate>Fri, 13 Nov 2009 12:30:16 -0800</pubDate>
1151
+ <media:keywords/>
1152
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_50168810001_asset-1258144215640.jpg?pubId=270881183" width="120"/>
1153
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d8/unsecured/media/270881183/270881183_50168811001_asset-1258144216088.jpg?pubId=270881183" width="480"/>
1154
+ <bc:titleid>50165448001</bc:titleid>
1155
+ <bc:duration>47</bc:duration>
1156
+ <dcterms:valid/>
1157
+ <bc:accountid>270881183</bc:accountid>
1158
+ </item>
1159
+ <item>
1160
+ <title>solar_system_1977_512kb</title>
1161
+ <link/>
1162
+ <description>solar_system_1977_512kb</description>
1163
+ <guid>video1011558648001</guid>
1164
+ <pubDate>Tue, 21 Jun 2011 10:28:10 -0700</pubDate>
1165
+ <media:keywords/>
1166
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011569591001_th-1011563241001.jpg?pubId=270881183" width="120"/>
1167
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011569590001_vs-1011563241001.jpg?pubId=270881183" width="480"/>
1168
+ <bc:titleid>1011558648001</bc:titleid>
1169
+ <bc:duration>1048</bc:duration>
1170
+ <dcterms:valid/>
1171
+ <bc:accountid>270881183</bc:accountid>
1172
+ </item>
1173
+ <item>
1174
+ <title>Timothy Leary On LSD</title>
1175
+ <link/>
1176
+ <description>Timothy Leary On LSD</description>
1177
+ <guid>video1011477051001</guid>
1178
+ <pubDate>Tue, 21 Jun 2011 09:40:31 -0700</pubDate>
1179
+ <media:keywords/>
1180
+ <media:thumbnail height="90" url="http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011509847001_th-1011496938001.jpg?pubId=270881183" width="120"/>
1181
+ <media:thumbnail height="360" url="http://brightcove.vo.llnwd.net/d16/unsecured/media/270881183/270881183_1011509846001_vs-1011496938001.jpg?pubId=270881183" width="480"/>
1182
+ <bc:titleid>1011477051001</bc:titleid>
1183
+ <bc:duration>3739</bc:duration>
1184
+ <dcterms:valid/>
1185
+ <bc:accountid>270881183</bc:accountid>
1186
+ </item>
1187
+ </channel>
1188
+ </rss>