active_public_resources 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +3 -0
  5. data/Gemfile +24 -0
  6. data/Guardfile +9 -0
  7. data/LICENSE.txt +18 -0
  8. data/README.md +326 -0
  9. data/Rakefile +7 -0
  10. data/active_public_resources.gemspec +27 -0
  11. data/active_public_resources_config.yml.example +10 -0
  12. data/lib/active_public_resources/base_response_type.rb +11 -0
  13. data/lib/active_public_resources/base_return_type.rb +17 -0
  14. data/lib/active_public_resources/client.rb +22 -0
  15. data/lib/active_public_resources/driver.rb +21 -0
  16. data/lib/active_public_resources/driver_response.rb +15 -0
  17. data/lib/active_public_resources/drivers/khan_academy.rb +143 -0
  18. data/lib/active_public_resources/drivers/quizlet.rb +92 -0
  19. data/lib/active_public_resources/drivers/schooltube.rb +99 -0
  20. data/lib/active_public_resources/drivers/vimeo.rb +181 -0
  21. data/lib/active_public_resources/drivers/youtube.rb +113 -0
  22. data/lib/active_public_resources/request_criteria.rb +51 -0
  23. data/lib/active_public_resources/response_types/exercise.rb +11 -0
  24. data/lib/active_public_resources/response_types/folder.rb +18 -0
  25. data/lib/active_public_resources/response_types/image.rb +11 -0
  26. data/lib/active_public_resources/response_types/quiz.rb +11 -0
  27. data/lib/active_public_resources/response_types/video.rb +12 -0
  28. data/lib/active_public_resources/return_types/file.rb +11 -0
  29. data/lib/active_public_resources/return_types/iframe.rb +11 -0
  30. data/lib/active_public_resources/return_types/image_url.rb +11 -0
  31. data/lib/active_public_resources/return_types/oembed.rb +11 -0
  32. data/lib/active_public_resources/return_types/url.rb +11 -0
  33. data/lib/active_public_resources/version.rb +3 -0
  34. data/lib/active_public_resources.rb +55 -0
  35. data/spec/lib/active_public_resources/client_spec.rb +75 -0
  36. data/spec/lib/active_public_resources/driver_spec.rb +48 -0
  37. data/spec/lib/active_public_resources/drivers/khan_academy_spec.rb +106 -0
  38. data/spec/lib/active_public_resources/drivers/quizlet_spec.rb +50 -0
  39. data/spec/lib/active_public_resources/drivers/schooltube_spec.rb +50 -0
  40. data/spec/lib/active_public_resources/drivers/vimeo_spec.rb +71 -0
  41. data/spec/lib/active_public_resources/drivers/youtube_spec.rb +52 -0
  42. data/spec/lib/active_public_resources/live_client_spec.rb +91 -0
  43. data/spec/lib/active_public_resources/request_criteria_spec.rb +53 -0
  44. data/spec/spec_helper.rb +46 -0
  45. data/spec/vcr/active_public_resources/client/khan_academy_should_traverse_folders.yml +1039 -0
  46. data/spec/vcr/active_public_resources/client/quizlet_should_perform_request.yml +70 -0
  47. data/spec/vcr/active_public_resources/client/shooltube_should_perform_request.yml +815 -0
  48. data/spec/vcr/active_public_resources/client/vimeo_should_perform_request.yml +70 -0
  49. data/spec/vcr/active_public_resources/client/youtube_should_perform_request.yml +212 -0
  50. data/spec/vcr/active_public_resources/drivers/khan_academy_driver_perform_request/should_get_folder_cs/programming.yml +117 -0
  51. data/spec/vcr/active_public_resources/drivers/khan_academy_driver_perform_request/should_get_folder_cs.yml +72 -0
  52. data/spec/vcr/active_public_resources/drivers/khan_academy_driver_perform_request/should_get_folder_science/mcat/society_and_culture/social_structures.yml +578 -0
  53. data/spec/vcr/active_public_resources/drivers/khan_academy_driver_perform_request/should_get_root_folders.yml +122 -0
  54. data/spec/vcr/active_public_resources/drivers/khan_academy_perform_request/should_get_folder_cs/programming.yml +120 -0
  55. data/spec/vcr/active_public_resources/drivers/khan_academy_perform_request/should_get_folder_cs.yml +73 -0
  56. data/spec/vcr/active_public_resources/drivers/khan_academy_perform_request/should_get_folder_science/mcat/society_and_culture/social_structures.yml +577 -0
  57. data/spec/vcr/active_public_resources/drivers/khan_academy_perform_request/should_get_root_folders.yml +119 -0
  58. data/spec/vcr/active_public_resources/drivers/quizlet_driver_perform_request/should_perform_request.yml +75 -0
  59. data/spec/vcr/active_public_resources/drivers/quizlet_perform_request/should_perform_request.yml +72 -0
  60. data/spec/vcr/active_public_resources/drivers/schooltube_driver_perform_request/should_perform_request.yml +815 -0
  61. data/spec/vcr/active_public_resources/drivers/schooltube_perform_request/should_perform_request.yml +810 -0
  62. data/spec/vcr/active_public_resources/drivers/vimeo_driver_perform_request/should_perform_request.yml +279 -0
  63. data/spec/vcr/active_public_resources/drivers/vimeo_perform_request/should_perform_request.yml +70 -0
  64. data/spec/vcr/active_public_resources/drivers/youtube_driver_perform_request/should_perform_request.yml +212 -0
  65. data/spec/vcr/active_public_resources/drivers/youtube_perform_request/should_perform_request.yml +209 -0
  66. metadata +182 -0
@@ -0,0 +1,815 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.schooltube.com/api/v1/video/search/?limit=25&offset=0&orderby=-view_count&term=education
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - '*/*'
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - www.schooltube.com
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Wed, 20 Nov 2013 21:53:23 GMT
25
+ Server:
26
+ - Apache
27
+ Expires:
28
+ - Wed, 20 Nov 2013 21:58:07 GMT
29
+ Vary:
30
+ - Cookie
31
+ Cache-Control:
32
+ - max-age=600
33
+ Content-Length:
34
+ - '66347'
35
+ Last-Modified:
36
+ - Wed, 20 Nov 2013 21:48:07 GMT
37
+ Content-Type:
38
+ - application/json; charset=utf-8
39
+ body:
40
+ encoding: UTF-8
41
+ string: '{"meta": {"has_next": true, "limit": 25, "next": "/api/v1/video/search/?order_by=-view_count&limit=25&offset=25&term=education",
42
+ "offset": 25}, "objects": [{"allow_embed": true, "allow_rating": true, "channel_url":
43
+ "/channel/Student Group Travel", "create_date": "November 12, 2009", "create_user":
44
+ "/api/v1/profile/77332/", "description": "Let American Tours & Travel meet
45
+ all your groups travel needs by customizing your next student class trip.
46
+ From theme parks and national monuments, from Music Festivals to performance
47
+ opportunities, our travel experts are ready to create more than just a top-of-the-line
48
+ educational experience we''ll create a lifetimes worth of memories. We Choose
49
+ the Best of the Best for You: We work hard to ensure that every aspect of
50
+ your trip from hotels, transportation, attractions, and venues meet the highest
51
+ standards of excellence and quality. Hotels are routinely visited by members
52
+ of the American Tours & Travel team to check for cleanliness, staff service
53
+ levels, security, convenience and more. When you choose American Tours & Travel,
54
+ you are choosing the best. 1-800-243-4365 Licensed, Bonded & Insured ", "duration":
55
+ 102, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
56
+ null, "external_media_id": null, "external_provider_name": null, "id": "54664",
57
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
58
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/c5/c3/dd/df/9c/f6/c5c3dddf-9cf6-c0e5-db1f-898f89c301e2_lg.jpg",
59
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
60
+ "c5c3dddf-9cf6-c0e5-db1f-898f89c301e2", "meta_info": "", "moderation_status":
61
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
62
+ "Orlando", "create_date": "05/14/2009", "display_override": "American Tours
63
+ & Travel, Orlando FL", "id": "218433", "logo_url": "/static/images/organization/default_logo.png",
64
+ "name": "American Tours & Travel", "rank": 0, "resource_uri": "/api/v1/organization/218433/",
65
+ "state": "Florida", "update_date": "2009-05-14T16:08:36.353000", "url": "/organization/218433",
66
+ "video_count": 20}, "original_keywords": "educational student travel, educational
67
+ school trips, educational school field trips, school educational travel, high
68
+ school educational trips, high school educational tours, fun educational field
69
+ trips, fun and educational field trips, educational field trips, educational
70
+ travel services, educational travel service, educational travel company, educational
71
+ travel companies, educational travel agent, educational travel agency, educational
72
+ travel agencies, educational tours for students and teachers, educational
73
+ student trips, educational group travel, educational fieldtrip, educational
74
+ field trips for kids, educational field trips, educational field trip ideas,
75
+ educational feild trips, education travel tours, education travel services,
76
+ education travel service, education travel company, education travel companies,
77
+ education travel agent, education field trips, education field trip", "post_to_edmodo":
78
+ null, "rank": 0.500167, "rating_count": null, "rating_down": null, "rating_up":
79
+ null, "resource_uri": "/api/v1/video/54664/", "short_url": "http://bit.ly/pk3Sxs",
80
+ "show_on_homepage": true, "thumbnail_status": null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/c5/c3/dd/df/9c/f6/c5c3dddf-9cf6-c0e5-db1f-898f89c301e2.jpg",
81
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/60f374fdba394a70b4ad/thumbnails/",
82
+ "thumbs_up": 0, "title": "Fun - Educational School Trips - Call American Tours
83
+ & Travel", "update_date": "2012-04-25T12:21:59.624893", "url": "/video/60f374fdba394a70b4ad/Fun
84
+ - Educational School Trips - Call American Tours & Travel", "username": "StudentGroupTravel",
85
+ "view_count": 3481, "vkey": "60f374fdba394a70b4ad"}, {"allow_embed": true,
86
+ "allow_rating": true, "channel_url": "/channel/East Valley Institute of Technology
87
+ (EVIT) in Mesa, Arizona", "create_date": "January 09, 2012", "create_user":
88
+ "/api/v1/profile/258766/", "description": "Students will gain hands-on experience
89
+ in classroom education on how to manage a classroom, facilitate learning centers
90
+ and support the development of the whole child. Students participate in individual
91
+ and group projects, text work, professional development activities and computer
92
+ lab assignments. These skills and knowledge are then implemented at the on-site
93
+ Head Start program. Upon program completion, students are prepared to work
94
+ in a childcare facility, after-school program, preschool, or pursue additional
95
+ education in this field. Advanced students participate in an internship. Education
96
+ Professions: For the student who knows he or she wants to become a certified
97
+ teacher, this class will give a jumpstart on training. The college prep curriculum
98
+ includes a survey study of the teaching profession and educational theories
99
+ of learning. Students will conduct research, create lessons, and present concepts
100
+ to peers. They will also research degree programs and apply for scholarships.
101
+ Each student will participate in job shadowing in a school/class of his or
102
+ her choice. Students identify their philosophies and develop their leadership
103
+ styles in this two-year course.", "duration": 124224, "edmodo_group": 0, "exclude_from_channel":
104
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
105
+ null, "id": "287628", "is_featured": false, "is_locked": false, "is_organization_approved":
106
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/23/3b/1d/8a/3b/1d/233b1d8a-3b1d-11e1-aef4-00188b41f993_lg.jpg",
107
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
108
+ "233b1d8a-3b1d-11e1-aef4-00188b41f993", "meta_info": "", "moderation_status":
109
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
110
+ "Mesa", "create_date": "07/26/2008", "display_override": "East Valley Institute
111
+ Of Technology, Mesa AZ", "id": "115418", "logo_url": "/static/images/organization/default_logo.png",
112
+ "name": "East Valley Institute Of Technology", "rank": 0, "resource_uri":
113
+ "/api/v1/organization/115418/", "state": "Arizona", "update_date": "2008-07-26T17:27:44.630000",
114
+ "url": "/organization/115418", "video_count": 48}, "original_keywords": "Education
115
+ Arizona educational Education Professions Early Childhood Mesa Arizona career
116
+ and technical education EVIT", "post_to_edmodo": null, "rank": 0.494784, "rating_count":
117
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/287628/",
118
+ "short_url": "http://bit.ly/AqXdYP", "show_on_homepage": true, "thumbnail_status":
119
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/23/3b/1d/8a/3b/1d/233b1d8a-3b1d-11e1-aef4-00188b41f993.jpg",
120
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/0466d5eb1f6f4ba3975f/thumbnails/",
121
+ "thumbs_up": 0, "title": "EVIT Early Childhood & Education Professions program
122
+ in Mesa, Arizona", "update_date": "2012-04-26T01:35:13.522100", "url": "/video/0466d5eb1f6f4ba3975f/EVIT
123
+ Early Childhood & Education Professions program in Mesa, Arizona", "username":
124
+ "evitwebmaster", "view_count": 6272, "vkey": "0466d5eb1f6f4ba3975f"}, {"allow_embed":
125
+ true, "allow_rating": true, "channel_url": "/channel/Moving To Success", "create_date":
126
+ "July 08, 2013", "create_user": "/api/v1/profile/476551/", "description":
127
+ "Moving to Success is a developmental elementary physical education curriculum
128
+ guide. The curriculum is developed around the content areas of locomotion,
129
+ body management, educational games, and educational dance. The goal is to
130
+ provide students with developmentally-appropriate experiences that lead to
131
+ the skills, knowledge, and values of how and why to lead a physically-active
132
+ lifestyle. This session will focus on assessment in the physical education
133
+ class. ", "duration": null, "edmodo_group": 0, "exclude_from_channel": null,
134
+ "external_encoded_media_id": "25995351", "external_media_id": "25995276",
135
+ "external_provider_name": "heywatch", "id": "574507", "is_featured": false,
136
+ "is_locked": false, "is_organization_approved": true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/29/08/5d/46/e8/1d/29085d46-e81d-11e2-add9-001c23d1f545_01.jpg",
137
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
138
+ "29085d46-e81d-11e2-add9-001c23d1f545", "meta_info": "", "moderation_status":
139
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
140
+ "Duncan", "create_date": "07/01/2013", "display_override": "Moving To Success, Duncan
141
+ SC", "id": "234881", "logo_url": "/static/images/organization/default_logo.png",
142
+ "name": "Moving To Success", "rank": 0, "resource_uri": "/api/v1/organization/234881/",
143
+ "state": "South Carolina", "update_date": "2013-07-01T07:49:18.866755", "url":
144
+ "/organization/234881", "video_count": 4}, "original_keywords": "Moving To
145
+ Success, Physical Education, Elementary Physical Education, PE, Games, Gymnastics,
146
+ Locomotor Patterns, Dance, Education Games, Educational Dance, Body Management,
147
+ PE Rubrics, PE Assessment, Skill Themes, PE Lessons Plans, Task Extensions,
148
+ Task Refinements ", "post_to_edmodo": null, "rank": 0.494784, "rating_count":
149
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/574507/",
150
+ "short_url": "http://bit.ly/15s2WIL", "show_on_homepage": true, "thumbnail_status":
151
+ true, "thumbnail_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/29/08/5d/46/e8/1d/29085d46-e81d-11e2-add9-001c23d1f545_01.jpg",
152
+ "thumbnails": 1, "thumbnails_url": "/api/v1/video/42ebd99225e4484ba1e7/thumbnails/",
153
+ "thumbs_up": 0, "title": "Moving To Success: Physical Education Assessment
154
+ ", "update_date": "2013-07-08T16:22:14.446303", "url": "/video/42ebd99225e4484ba1e7/Moving
155
+ To Success: Physical Education Assessment ", "username": "Moving2Success",
156
+ "view_count": 458, "vkey": "42ebd99225e4484ba1e7"}, {"allow_embed": true,
157
+ "allow_rating": true, "channel_url": "/channel/Assoc. for Career & Technical
158
+ Education (ACTE)", "create_date": "January 28, 2010", "create_user": "/api/v1/profile/1840/",
159
+ "description": "http://www.acteonline.org/awards.aspx Bea Paul, job developer
160
+ at Autry Technology Center, talks about her feelings on winning the Association
161
+ for Career and Technical Education (ACTE) Outstanding Career and Technical
162
+ Educator Award for 2009-2010. ACTE is a US education association that works
163
+ to advance career and technical education, formerly known as vocational education,
164
+ to prepare youth and adults for careers. Produced by Lorne Thomas, Alex Wright,
165
+ Chelsey Hardey, Anna-Laura Green and Jacob Holloway of Mount Juliet High School,
166
+ Wilson County Schools, Tennessee.", "duration": 100, "edmodo_group": 0, "exclude_from_channel":
167
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
168
+ null, "id": "68944", "is_featured": false, "is_locked": false, "is_organization_approved":
169
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/21/c2/28/43/7a/0f/21c22843-7a0f-17ef-98eb-603275c4ce0c_lg.jpg",
170
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
171
+ "21c22843-7a0f-17ef-98eb-603275c4ce0c", "meta_info": "", "moderation_status":
172
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
173
+ "Alexandria", "create_date": "08/02/2008", "display_override": "ACTE: Association
174
+ for Career and Technical Education, Alexandria VA", "id": "217061", "logo_url":
175
+ "/static/images/organization/default_logo.png", "name": "ACTE: Association
176
+ for Career and Technical Education", "rank": 0, "resource_uri": "/api/v1/organization/217061/",
177
+ "state": "Virginia", "update_date": "2008-08-02T15:32:25.010000", "url": "/organization/217061",
178
+ "video_count": 133}, "original_keywords": "cte career tech technical ed education acte teacher educator winner
179
+ jobs workforce vocational", "post_to_edmodo": null, "rank": 0.493812, "rating_count":
180
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/68944/",
181
+ "short_url": "http://bit.ly/oZfhdw", "show_on_homepage": true, "thumbnail_status":
182
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/21/c2/28/43/7a/0f/21c22843-7a0f-17ef-98eb-603275c4ce0c.jpg",
183
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/09acac247b6ef3d6d1b6/thumbnails/",
184
+ "thumbs_up": 0, "title": "ACTE 2009-2010 Outstanding Career and Technical
185
+ Educator", "update_date": "2012-04-23T14:14:32.402353", "url": "/video/09acac247b6ef3d6d1b6/ACTE
186
+ 2009-2010 Outstanding Career and Technical Educator", "username": "ACTEMedia",
187
+ "view_count": 2265, "vkey": "09acac247b6ef3d6d1b6"}, {"allow_embed": true,
188
+ "allow_rating": true, "channel_url": "/channel/PA School Boards Association",
189
+ "create_date": "October 26, 2011", "create_user": "/api/v1/profile/48452/",
190
+ "description": "This year at conference, PSBA is launching \"Stand Up for
191
+ Public Education.\" This outreach campaign is our opportunity to share the
192
+ good news of public education -- the successes, the triumphs and the academic
193
+ gains our students are making. It will require everyone involved with public
194
+ education to stand together in the face of unwarranted criticism by those
195
+ individuals and organizations that would prefer public education just go away.
196
+ PSBA will share statewide successes but it is imperative for you to share
197
+ your local story. The main goal of the \"Stand Up for Public Education\"
198
+ campaign is to provide board members, superintendents, administrators, teachers,
199
+ parents and students with the tools they will need to spread the good word.",
200
+ "duration": 426627, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
201
+ null, "external_media_id": null, "external_provider_name": null, "id": "258564",
202
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
203
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/a1/1f/dc/80/ff/e6/a11fdc80-ffe6-11e0-9d3d-00188b41f993_lg.jpg",
204
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
205
+ "a11fdc80-ffe6-11e0-9d3d-00188b41f993", "meta_info": "", "moderation_status":
206
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
207
+ "Mechanicsburg", "create_date": "03/27/2009", "display_override": "Pennsylvania
208
+ School Boards Association, Mechanicsburg PA", "id": "218259", "logo_url":
209
+ "/static/images/organization/default_logo.png", "name": "Pennsylvania School
210
+ Boards Association", "rank": 0, "resource_uri": "/api/v1/organization/218259/",
211
+ "state": "Pennsylvania", "update_date": "2009-03-27T13:22:05.937000", "url":
212
+ "/organization/218259", "video_count": 92}, "original_keywords": "\"Stand
213
+ up\" \"public education\" \"school boards\" education community testimonial",
214
+ "post_to_edmodo": null, "rank": 0.493812, "rating_count": null, "rating_down":
215
+ null, "rating_up": null, "resource_uri": "/api/v1/video/258564/", "short_url":
216
+ "http://bit.ly/v6qkFr", "show_on_homepage": true, "thumbnail_status": null,
217
+ "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/a1/1f/dc/80/ff/e6/a11fdc80-ffe6-11e0-9d3d-00188b41f993.jpg",
218
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/31817736c18540378c53/thumbnails/",
219
+ "thumbs_up": 1, "title": "Stand Up for Public Education", "update_date": "2012-12-06T03:40:12.489334",
220
+ "url": "/video/31817736c18540378c53/Stand Up for Public Education", "username":
221
+ "PSBAvideo", "view_count": 3074, "vkey": "31817736c18540378c53"}, {"allow_embed":
222
+ true, "allow_rating": true, "channel_url": "/channel/WV Health & Physical
223
+ Education Teachers", "create_date": "July 22, 2012", "create_user": "/api/v1/profile/334957/",
224
+ "description": "West Virginia Department of Education and Office of Healthy
225
+ Schools created the Health and Physical Education Leadership Academy to ensure
226
+ quality health and physical education programs in the state through professional
227
+ development sessions based on National Association for Sport and Physical
228
+ Education (NASPE) and American School Health National Standards aligned with
229
+ the West Virginia Content Standards and Objectives (CSOs). Professional
230
+ development is essential to develop the next generation of leaders in health
231
+ and physical education. Four strands are the foundation for the Health and
232
+ Physical Education Leadership Academy providing training on Standards Based
233
+ Instruction and Assessment, Advocacy, Grant Writing and Technology. ", "duration":
234
+ 191359, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
235
+ null, "external_media_id": null, "external_provider_name": null, "id": "398834",
236
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
237
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/7a/62/5a/88/d4/6f/7a625a88-d46f-11e1-a3e8-001c23dcdfb5_lg.jpg",
238
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
239
+ "7a625a88-d46f-11e1-a3e8-001c23dcdfb5", "meta_info": "", "moderation_status":
240
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
241
+ "Wheeling", "create_date": "07/26/2008", "display_override": "Bridge Street
242
+ Middle School, Wheeling WV", "id": "213674", "logo_url": "/static/images/organization/default_logo.png",
243
+ "name": "Bridge Street Middle School", "rank": 0, "resource_uri": "/api/v1/organization/213674/",
244
+ "state": "West Virginia", "update_date": "2008-07-26T19:21:25.850000", "url":
245
+ "/organization/213674", "video_count": 2}, "original_keywords": "lip sync
246
+ spoof teacher teachers health physical education leadership academy dance
247
+ dancing cheerleading singing call me maybe carly rae jepsen lesson lessons
248
+ idea ideas funny awesome classroom gym gymnasium advocacy learn teach teaching
249
+ performance student students fun", "post_to_edmodo": null, "rank": 0.493812,
250
+ "rating_count": null, "rating_down": null, "rating_up": null, "resource_uri":
251
+ "/api/v1/video/398834/", "short_url": "http://bit.ly/MBGuED", "show_on_homepage":
252
+ true, "thumbnail_status": null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/7a/62/5a/88/d4/6f/7a625a88-d46f-11e1-a3e8-001c23dcdfb5.jpg",
253
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/a1f0a7576286429ea177/thumbnails/",
254
+ "thumbs_up": 19, "title": "WV Health & Physical Education Teachers - Call
255
+ Me Maybe", "update_date": "2012-12-17T10:36:26.586657", "url": "/video/a1f0a7576286429ea177/WV
256
+ Health & Physical Education Teachers - Call Me Maybe", "username": "Bridge
257
+ Street Middle School", "view_count": 4843, "vkey": "a1f0a7576286429ea177"},
258
+ {"allow_embed": true, "allow_rating": true, "channel_url": "/channel/Maryland
259
+ State Education Association", "create_date": "February 23, 2011", "create_user":
260
+ "/api/v1/profile/99446/", "description": "On November 8, 2010, MSEA President
261
+ Clara Floyd; Vice President and Co-Chair of the Council for Educator Effectiveness
262
+ Betty Weller; President of the Teachers Association of Baltimore County and
263
+ member of the Council for Educator Effectiveness, Cheryl Bost; and MSEA Executive
264
+ Director David Helfman testified about the proposed educator evaluation regulations.",
265
+ "duration": 197, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
266
+ null, "external_media_id": null, "external_provider_name": null, "id": "175350",
267
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
268
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/a5/da/ab/a6/ce/a0/a5daaba6-cea0-4773-7213-450eed92ee13_lg.jpg",
269
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
270
+ "a5daaba6-cea0-4773-7213-450eed92ee13", "meta_info": "", "moderation_status":
271
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
272
+ "Annapolis", "create_date": "02/25/2010", "display_override": "Maryland State
273
+ Education Association, Annapolis MD", "id": "220173", "logo_url": "/static/images/organization/default_logo.png",
274
+ "name": "Maryland State Education Association", "rank": 0, "resource_uri":
275
+ "/api/v1/organization/220173/", "state": "Maryland", "update_date": "2010-02-25T08:37:47.537000",
276
+ "url": "/organization/220173", "video_count": 36}, "original_keywords": "education
277
+ reform Race to the Top", "post_to_edmodo": null, "rank": 0.492642, "rating_count":
278
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/175350/",
279
+ "short_url": "http://bit.ly/pbM6Yk", "show_on_homepage": true, "thumbnail_status":
280
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/a5/da/ab/a6/ce/a0/a5daaba6-cea0-4773-7213-450eed92ee13.jpg",
281
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/5d3065dd21fcb5cecce6/thumbnails/",
282
+ "thumbs_up": 0, "title": "MSEA and Council for Educator Effectiveness leaders
283
+ on proposed educator evaluation regulations", "update_date": "2012-04-26T06:40:42.735035",
284
+ "url": "/video/5d3065dd21fcb5cecce6/MSEA and Council for Educator Effectiveness
285
+ leaders on proposed educator evaluation regulations", "username": "MarylandEducation",
286
+ "view_count": 460, "vkey": "5d3065dd21fcb5cecce6"}, {"allow_embed": true,
287
+ "allow_rating": true, "channel_url": "/channel/Mrs. Laughbon", "create_date":
288
+ "March 04, 2009", "create_user": "/api/v1/profile/4895/", "description": "Environmental
289
+ Education Week is April 12-18. PSA #1\r\n\r\nHelp spread the word. Post this
290
+ public service announcement (PSA) video embed code on blogs, websites and
291
+ social networks (myspace, facebook, livejournal, etc.).\r\n\r\nEE Week is
292
+ the largest organized environmental education event in the United States that
293
+ increases the educational impact of Earth Day by creating a full week of educational
294
+ preparation, learning, and activities in K-12 classrooms, nature centers,
295
+ zoos, museums, and aquariums. \r\n\r\nNOTE: If you are interested in creating
296
+ your own eeweek PSA, check out the resources on this blog post on Classroom
297
+ 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project
298
+ \r\n\r\nMore information and to get involved:\r\nhttp://www.eeweek.org ",
299
+ "duration": 30, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
300
+ null, "external_media_id": null, "external_provider_name": null, "id": "24485",
301
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
302
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/2d/0e/42/43/48/38/2d0e4243-4838-180a-5605-bcbc662f9f3a_lg.jpg",
303
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
304
+ "2d0e4243-4838-180a-5605-bcbc662f9f3a", "meta_info": "", "moderation_status":
305
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
306
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
307
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
308
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
309
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
310
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
311
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
312
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24485/",
313
+ "short_url": "http://bit.ly/px5UpV", "show_on_homepage": true, "thumbnail_status":
314
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/2d/0e/42/43/48/38/2d0e4243-4838-180a-5605-bcbc662f9f3a.jpg",
315
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/aa8edb21de6f4069b9f5/thumbnails/",
316
+ "thumbs_up": 1, "title": "PSA: Environmental Education Week 2009", "update_date":
317
+ "2012-04-26T06:42:34.910344", "url": "/video/aa8edb21de6f4069b9f5/PSA: Environmental
318
+ Education Week 2009", "username": "claughbon", "view_count": 4620, "vkey":
319
+ "aa8edb21de6f4069b9f5"}, {"allow_embed": true, "allow_rating": true, "channel_url":
320
+ "/channel/Mrs. Laughbon", "create_date": "March 04, 2009", "create_user":
321
+ "/api/v1/profile/4895/", "description": "Environmental Education Week is April
322
+ 12-18. PSA #2\r\n\r\nHelp spread the word. Post this public service announcement
323
+ (PSA) video embed code on blogs, websites and social networks (myspace, facebook,
324
+ livejournal, etc.).\r\n\r\nEE Week is the largest organized environmental
325
+ education event in the United States that increases the educational impact
326
+ of Earth Day by creating a full week of educational preparation, learning,
327
+ and activities in K-12 classrooms, nature centers, zoos, museums, and aquariums.
328
+ \r\n\r\nNOTE: If you are interested in creating your own eeweek PSA, check
329
+ out the resources on this blog post on Classroom 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project\r\n\r\nMore
330
+ information and to get involved:\r\nhttp://www.eeweek.org", "duration": 30,
331
+ "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
332
+ null, "external_media_id": null, "external_provider_name": null, "id": "24486",
333
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
334
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/6c/18/63/b1/e1/65/6c1863b1-e165-a704-da77-659eb059c567_lg.jpg",
335
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
336
+ "6c1863b1-e165-a704-da77-659eb059c567", "meta_info": "", "moderation_status":
337
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
338
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
339
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
340
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
341
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
342
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
343
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
344
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24486/",
345
+ "short_url": "http://bit.ly/nncBth", "show_on_homepage": true, "thumbnail_status":
346
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/6c/18/63/b1/e1/65/6c1863b1-e165-a704-da77-659eb059c567.jpg",
347
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/eccc679670b0487092ac/thumbnails/",
348
+ "thumbs_up": 0, "title": "PSA: Environmental Education Week 2009 (2)", "update_date":
349
+ "2012-04-26T02:27:05.716549", "url": "/video/eccc679670b0487092ac/PSA: Environmental
350
+ Education Week 2009 (2)", "username": "claughbon", "view_count": 3714, "vkey":
351
+ "eccc679670b0487092ac"}, {"allow_embed": true, "allow_rating": true, "channel_url":
352
+ "/channel/Mrs. Laughbon", "create_date": "March 04, 2009", "create_user":
353
+ "/api/v1/profile/4895/", "description": "Environmental Education Week is April
354
+ 12-18. PSA #3\r\n\r\nHelp spread the word. Post this public service announcement
355
+ (PSA) video embed code on blogs, websites and social networks (myspace, facebook,
356
+ livejournal, etc.).\r\n\r\nEE Week is the largest organized environmental
357
+ education event in the United States that increases the educational impact
358
+ of Earth Day by creating a full week of educational preparation, learning,
359
+ and activities in K-12 classrooms, nature centers, zoos, museums, and aquariums.
360
+ \r\n\r\nNOTE: If you are interested in creating your own eeweek PSA, check
361
+ out the resources on this blog post on Classroom 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project\r\n\r\nMore
362
+ information and to get involved:\r\nhttp://www.eeweek.org ", "duration": 30,
363
+ "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
364
+ null, "external_media_id": null, "external_provider_name": null, "id": "24489",
365
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
366
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/5c/dd/ca/af/78/6f/5cddcaaf-786f-d8c1-4a9c-aabe83fb4915_lg.jpg",
367
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
368
+ "5cddcaaf-786f-d8c1-4a9c-aabe83fb4915", "meta_info": "", "moderation_status":
369
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
370
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
371
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
372
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
373
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
374
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
375
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
376
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24489/",
377
+ "short_url": "http://bit.ly/rn9RRz", "show_on_homepage": true, "thumbnail_status":
378
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/5c/dd/ca/af/78/6f/5cddcaaf-786f-d8c1-4a9c-aabe83fb4915.jpg",
379
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/b8770ea0bec04d58a934/thumbnails/",
380
+ "thumbs_up": 0, "title": "PSA: Environmental Education Week 2009 (3)", "update_date":
381
+ "2012-04-25T12:17:29.566037", "url": "/video/b8770ea0bec04d58a934/PSA: Environmental
382
+ Education Week 2009 (3)", "username": "claughbon", "view_count": 3005, "vkey":
383
+ "b8770ea0bec04d58a934"}, {"allow_embed": true, "allow_rating": true, "channel_url":
384
+ "/channel/Mrs. Laughbon", "create_date": "March 04, 2009", "create_user":
385
+ "/api/v1/profile/4895/", "description": "Environmental Education Week is April
386
+ 12-18. PSA #1\r\n\r\nHelp spread the word. Post this public service announcement
387
+ (PSA) video embed code on blogs, websites and social networks (myspace, facebook,
388
+ livejournal, etc.).\r\n\r\nEE Week is the largest organized environmental
389
+ education event in the United States that increases the educational impact
390
+ of Earth Day by creating a full week of educational preparation, learning,
391
+ and activities in K-12 classrooms, nature centers, zoos, museums, and aquariums.
392
+ \r\n\r\nNOTE: If you are interested in creating your own eeweek PSA, check
393
+ out the resources on this blog post on Classroom 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project
394
+ \r\n\r\nMore information and to get involved:\r\nhttp://www.eeweek.org ",
395
+ "duration": 29, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
396
+ null, "external_media_id": null, "external_provider_name": null, "id": "24497",
397
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
398
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/7f/d8/53/cb/48/75/7fd853cb-4875-0b82-91b7-801daea857ba_lg.jpg",
399
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
400
+ "7fd853cb-4875-0b82-91b7-801daea857ba", "meta_info": "", "moderation_status":
401
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
402
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
403
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
404
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
405
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
406
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
407
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
408
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24497/",
409
+ "short_url": "http://bit.ly/q9D61w", "show_on_homepage": true, "thumbnail_status":
410
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/7f/d8/53/cb/48/75/7fd853cb-4875-0b82-91b7-801daea857ba.jpg",
411
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/757fda2e313548c5a572/thumbnails/",
412
+ "thumbs_up": 0, "title": "PSA: Environmental Education Week 2009 (4)", "update_date":
413
+ "2012-04-26T08:17:56.866343", "url": "/video/757fda2e313548c5a572/PSA: Environmental
414
+ Education Week 2009 (4)", "username": "claughbon", "view_count": 3003, "vkey":
415
+ "757fda2e313548c5a572"}, {"allow_embed": true, "allow_rating": true, "channel_url":
416
+ "/channel/SymbalooEDU", "create_date": "June 24, 2011", "create_user": "/api/v1/profile/264392/",
417
+ "description": "Randy Hollinger was one of the first educators to meet the
418
+ radar of Team Symbaloo. By way of a viral video made by one of his 7th grade
419
+ science students we were able to connect with Randy and learn how Symbaloo
420
+ was first being used in the classroom. It was due to feedback from educators
421
+ like Randy that we began to build a special Symbaloo for educators. SymbalooEDU
422
+ was born less than one year ago and is rapidly growing as the tool of choice
423
+ for educators looking to help their students organize their online life.",
424
+ "duration": 338, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
425
+ null, "external_media_id": null, "external_provider_name": null, "id": "228929",
426
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
427
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/b4/0b/63/4b/28/6a/b40b634b-286a-b273-e035-057129eb5c0b_lg.jpg",
428
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
429
+ "b40b634b-286a-b273-e035-057129eb5c0b", "meta_info": "", "moderation_status":
430
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
431
+ "Costa Mesa", "create_date": "04/05/2011", "display_override": "SymbalooEDU, Costa
432
+ Mesa CA", "id": "224840", "logo_url": "/static/images/organization/default_logo.png",
433
+ "name": "SymbalooEDU", "rank": 0, "resource_uri": "/api/v1/organization/224840/",
434
+ "state": "California", "update_date": "2011-04-05T13:51:01.660000", "url":
435
+ "/organization/224840", "video_count": 60}, "original_keywords": "Symbaloo
436
+ SymbalooEDU Educator Randy Hollinger ISTE 2011 Student", "post_to_edmodo":
437
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
438
+ null, "resource_uri": "/api/v1/video/228929/", "short_url": "http://bit.ly/oawJm0",
439
+ "show_on_homepage": true, "thumbnail_status": null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/b4/0b/63/4b/28/6a/b40b634b-286a-b273-e035-057129eb5c0b.jpg",
440
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/b46c362eeef8c52493c9/thumbnails/",
441
+ "thumbs_up": 0, "title": "SymbalooEDU Spotlight Educator: Randy Hollinger",
442
+ "update_date": "2012-04-24T08:10:07.549602", "url": "/video/b46c362eeef8c52493c9/SymbalooEDU
443
+ Spotlight Educator: Randy Hollinger", "username": "SymbalooEDU", "view_count":
444
+ 1203, "vkey": "b46c362eeef8c52493c9"}, {"allow_embed": true, "allow_rating":
445
+ true, "channel_url": "/channel/Pymatuning Valley High School", "create_date":
446
+ "August 30, 2011", "create_user": "/api/v1/profile/146745/", "description":
447
+ "Sasheen Phillips, Director of Curriculum and Assessment at the Ohio Board
448
+ of Education, presents the upcoming changes to the Ohio Education Standards.
449
+ The presentation took place on 8/25/11 at Jefferson Area High School in Jefferson,
450
+ Ohio. The Ashtabula County Educational Service Center organized the event.",
451
+ "duration": 3720, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
452
+ null, "external_media_id": null, "external_provider_name": null, "id": "236099",
453
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
454
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/d8/9d/f1/7d/d6/49/d89df17d-d649-9ad7-d413-16e3e807691d_lg.jpg",
455
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
456
+ "d89df17d-d649-9ad7-d413-16e3e807691d", "meta_info": "", "moderation_status":
457
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
458
+ "Andover", "create_date": "07/26/2008", "display_override": "Pymatuning Valley
459
+ High School, Andover OH", "id": "182989", "logo_url": "/static/images/organization/default_logo.png",
460
+ "name": "Pymatuning Valley High School", "rank": 0, "resource_uri": "/api/v1/organization/182989/",
461
+ "state": "Ohio", "update_date": "2012-01-26T08:26:52.643705", "url": "/organization/182989",
462
+ "video_count": 994}, "original_keywords": "Sasheen Phillips Ohio Department
463
+ of Education Ashtabula Count Educational Service Center New State Standards",
464
+ "post_to_edmodo": null, "rank": 0.490792, "rating_count": null, "rating_down":
465
+ null, "rating_up": null, "resource_uri": "/api/v1/video/236099/", "short_url":
466
+ "http://bit.ly/pwzXyt", "show_on_homepage": true, "thumbnail_status": null,
467
+ "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/d8/9d/f1/7d/d6/49/d89df17d-d649-9ad7-d413-16e3e807691d.jpg",
468
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/dd9345d92db56f227e5e/thumbnails/",
469
+ "thumbs_up": 0, "title": "Sasheen Phillips, Ohio Board of Education Presentation",
470
+ "update_date": "2012-04-26T09:04:33.726543", "url": "/video/dd9345d92db56f227e5e/Sasheen
471
+ Phillips, Ohio Board of Education Presentation", "username": "pymatuningvalley",
472
+ "view_count": 1321, "vkey": "dd9345d92db56f227e5e"}, {"allow_embed": true,
473
+ "allow_rating": true, "channel_url": "/channel/FANUC Robotics America CERT
474
+ Program", "create_date": "February 13, 2012", "create_user": "/api/v1/profile/323605/",
475
+ "description": "Jessica Beltran, an engineer at FANUC Robotics, talks about
476
+ how she got into robotic engineering and the importance of STEM education.",
477
+ "duration": 189890, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
478
+ null, "external_media_id": null, "external_provider_name": null, "id": "309640",
479
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
480
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/0a/c9/dd/46/56/56/0ac9dd46-5656-11e1-ada0-00188b41f993_lg.jpg",
481
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
482
+ "0ac9dd46-5656-11e1-ada0-00188b41f993", "meta_info": "", "moderation_status":
483
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
484
+ "Rochester Hills", "create_date": "12/13/2011", "display_override": "FANUC
485
+ Robotics, Rochester Hills MI", "id": "227028", "logo_url": "/static/images/organization/default_logo.png",
486
+ "name": "FANUC Robotics", "rank": 0, "resource_uri": "/api/v1/organization/227028/",
487
+ "state": "Michigan", "update_date": "2012-11-29T14:22:06.244958", "url": "/organization/227028",
488
+ "video_count": 17}, "original_keywords": "STEM, STEM Education, Robotics,
489
+ Robotics Engineering, Engineering, Industrial Engineering, Engineering School,
490
+ FANUC, FANUC Robotics, Robotic Education, Education Robots, FANUC Education,
491
+ FANUC Training, CERT, FANUC CERT", "post_to_edmodo": null, "rank": 0.490792,
492
+ "rating_count": null, "rating_down": null, "rating_up": null, "resource_uri":
493
+ "/api/v1/video/309640/", "short_url": "http://bit.ly/zOIW7Z", "show_on_homepage":
494
+ true, "thumbnail_status": null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/0a/c9/dd/46/56/56/0ac9dd46-5656-11e1-ada0-00188b41f993.jpg",
495
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/16c722ef367b4a13b885/thumbnails/",
496
+ "thumbs_up": 0, "title": "FANUC Robotics Engineer Jessica Beltran talks Robotics,
497
+ STEM Education", "update_date": "2012-04-25T09:08:17.064857", "url": "/video/16c722ef367b4a13b885/FANUC
498
+ Robotics Engineer Jessica Beltran talks Robotics, STEM Education", "username":
499
+ "cert", "view_count": 804, "vkey": "16c722ef367b4a13b885"}, {"allow_embed":
500
+ true, "allow_rating": true, "channel_url": "/channel/Knox County Public Schools
501
+ - Kentucky", "create_date": "February 18, 2012", "create_user": "/api/v1/profile/82522/",
502
+ "description": "February 19-25, 2012 is Gifted Education Week in the Knox
503
+ County Public Schools (KY). Students, educators, and higher education representatives
504
+ signed a proclamation on February 16 declaring the week \"Gifted Education
505
+ Week\" in the school district.", "duration": 531048, "edmodo_group": 0, "exclude_from_channel":
506
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
507
+ null, "id": "313589", "is_featured": false, "is_locked": false, "is_organization_approved":
508
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/a2/ef/66/10/5a/50/a2ef6610-5a50-11e1-b3ed-00188b41f993_lg.jpg",
509
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
510
+ "a2ef6610-5a50-11e1-b3ed-00188b41f993", "meta_info": "", "moderation_status":
511
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
512
+ "Barbourville", "create_date": "03/07/2011", "display_override": "Knox County
513
+ Public Schools, Barbourville KY", "id": "224429", "logo_url": "/static/images/organization/default_logo.png",
514
+ "name": "Knox County Public Schools", "rank": 0, "resource_uri": "/api/v1/organization/224429/",
515
+ "state": "Kentucky", "update_date": "2011-03-07T13:16:16.723000", "url": "/organization/224429",
516
+ "video_count": 178}, "original_keywords": "Gifted Education Week GT Talented
517
+ Gift Proclamation Kentucky Knox County Public Schools KY Barbourville Union
518
+ College", "post_to_edmodo": null, "rank": 0.490792, "rating_count": null,
519
+ "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/313589/",
520
+ "short_url": "http://bit.ly/zmepdY", "show_on_homepage": true, "thumbnail_status":
521
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/a2/ef/66/10/5a/50/a2ef6610-5a50-11e1-b3ed-00188b41f993.jpg",
522
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/c919295aa5034f9fbea5/thumbnails/",
523
+ "thumbs_up": 0, "title": "Gifted Education Week Proclamation Signing", "update_date":
524
+ "2012-04-24T14:23:05.441209", "url": "/video/c919295aa5034f9fbea5/Gifted Education
525
+ Week Proclamation Signing", "username": "knoxkyschools", "view_count": 545,
526
+ "vkey": "c919295aa5034f9fbea5"}, {"allow_embed": true, "allow_rating": true,
527
+ "channel_url": "/channel/RCOE TV", "create_date": "May 09, 2012", "create_user":
528
+ "/api/v1/profile/116956/", "description": "Meet Linde Cobb, an Administrative
529
+ Assistant to the Board of Education in Alvord Unified School District, the
530
+ 2012 Riverside County Confidential Employee of the Year.", "duration": 118952,
531
+ "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
532
+ null, "external_media_id": null, "external_provider_name": null, "id": "373931",
533
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
534
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/8c/dc/d1/4a/99/e9/8cdcd14a-99e9-11e1-b50c-001c23dcdfb5_lg.jpg",
535
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
536
+ "8cdcd14a-99e9-11e1-b50c-001c23dcdfb5", "meta_info": "", "moderation_status":
537
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
538
+ "Riverside", "create_date": "08/12/2010", "display_override": "Riverside County
539
+ Office of Education, Riverside CA", "id": "221607", "logo_url": "/static/images/organization/default_logo.png",
540
+ "name": "Riverside County Office of Education", "rank": 0, "resource_uri":
541
+ "/api/v1/organization/221607/", "state": "California", "update_date": "2010-08-12T10:59:40.623000",
542
+ "url": "/organization/221607", "video_count": 88}, "original_keywords": "Riverside
543
+ County Office of Education; RCOE TV; Education; Excellence in Education; Confidential
544
+ Employees; Awards; Alvord Unified School District; Celebrating Educators;
545
+ Cobb ", "post_to_edmodo": null, "rank": 0.490792, "rating_count": null, "rating_down":
546
+ null, "rating_up": null, "resource_uri": "/api/v1/video/373931/", "short_url":
547
+ "http://bit.ly/Jzav4N", "show_on_homepage": true, "thumbnail_status": null,
548
+ "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/8c/dc/d1/4a/99/e9/8cdcd14a-99e9-11e1-b50c-001c23dcdfb5.jpg",
549
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/1cf0bc75e6a3456d8b4f/thumbnails/",
550
+ "thumbs_up": 0, "title": "Celebrating Educators 2012: Linde Cobb", "update_date":
551
+ "2012-05-13T22:22:53.624139", "url": "/video/1cf0bc75e6a3456d8b4f/Celebrating
552
+ Educators 2012: Linde Cobb", "username": "RCOETV", "view_count": 202, "vkey":
553
+ "1cf0bc75e6a3456d8b4f"}, {"allow_embed": true, "allow_rating": true, "channel_url":
554
+ "/channels/", "create_date": "May 25, 2012", "create_user": "/api/v1/profile/344426/",
555
+ "description": "Character Education that works \u2013 Student Interviews Children
556
+ (K-5) talk about what they learn in Character Education class. In class they
557
+ sing songs, talk about their feelings and what choices to make in real-life
558
+ experiences. Students want to do the talking, they want to do the sharing,
559
+ and they want to analyze the life skills they have learned in class. Once
560
+ you get them taking about Character Education, its hands off \u2013 that is
561
+ when you, as the teacher, listen and learn. Directed by Harold B. Pritchett,
562
+ Character Education Teacher.", "duration": 531382, "edmodo_group": 0, "exclude_from_channel":
563
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
564
+ null, "id": "387958", "is_featured": false, "is_locked": false, "is_organization_approved":
565
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/cf/c8/a8/2c/a6/d1/cfc8a82c-a6d1-11e1-a179-001c23db86b0_lg.jpg",
566
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
567
+ "cfc8a82c-a6d1-11e1-a179-001c23db86b0", "meta_info": "", "moderation_status":
568
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
569
+ "Wilmington", "create_date": "07/26/2008", "display_override": "Warner Elementary
570
+ School, Wilmington DE", "id": "131089", "logo_url": "/static/images/organization/default_logo.png",
571
+ "name": "Warner Elementary School", "rank": 0, "resource_uri": "/api/v1/organization/131089/",
572
+ "state": "Delaware", "update_date": "2012-03-22T07:45:53.386855", "url": "/organization/131089",
573
+ "video_count": 13}, "original_keywords": "Warner, elementary, school, children,
574
+ Wilmington, Delaware, testing, scores, comprehensive, assessment, DCAS, News,
575
+ kids, tips, believe, focus, reading, New, Harold, Pritchett, education, teaching,
576
+ teacher, inner city, character, red clay, consolidated, school district, music,
577
+ student, month, anger, management, goal, setting, lynch, students, bully,
578
+ bullies, achievement, value, community, supper, self, aware", "post_to_edmodo":
579
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
580
+ null, "resource_uri": "/api/v1/video/387958/", "short_url": "http://bit.ly/V6B7Dy",
581
+ "show_on_homepage": true, "thumbnail_status": null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/cf/c8/a8/2c/a6/d1/cfc8a82c-a6d1-11e1-a179-001c23db86b0.jpg",
582
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/ab84a5c1b26f41a7a49c/thumbnails/",
583
+ "thumbs_up": 0, "title": "Character Education that works \u2013 Student Interviews",
584
+ "update_date": "2013-01-15T00:30:44.840620", "url": "/video/ab84a5c1b26f41a7a49c/Character
585
+ Education that works \u2013 Student Interviews", "username": "hbpy2k", "view_count":
586
+ 1548, "vkey": "ab84a5c1b26f41a7a49c"}, {"allow_embed": true, "allow_rating":
587
+ true, "channel_url": "/channel/2012 EOC Video Contest", "create_date": "May
588
+ 03, 2013", "create_user": "/api/v1/profile/398690/", "description": "New Carolina''s
589
+ The Future of Education in South Carolina: Hunter Bliss, Lexington High School
590
+ Senior and Travis Allen, Founder and CEO, iSchool Initiative\r\n\r\nHunter
591
+ Bliss, a senior at Lexington High School and winner of our Technology and
592
+ Education video contest discusses his vision for how technology can change
593
+ education in the classroom and beyond. \r\n\r\nTravis, Founder and CEO of
594
+ the iSchool Initiative, talks about his journey with technology and education
595
+ and how the idea for iSchool was born. Travis has traveled the glob with the
596
+ iSchool Initiative, worked with hundreds of schools in more than 25 states,
597
+ and the US Department of Education. Additionally, through The iSchool Initiative,
598
+ he consults with schools on how to integrate technology into the classroom
599
+ and learning environment in a successful way. ", "duration": null, "edmodo_group":
600
+ 0, "exclude_from_channel": null, "external_encoded_media_id": "24047856",
601
+ "external_media_id": "24047334", "external_provider_name": "heywatch", "id":
602
+ "549973", "is_featured": false, "is_locked": false, "is_organization_approved":
603
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/dd/5f/3d/fa/b4/1a/dd5f3dfa-b41a-11e2-bcf0-001c23d1f545_01.jpg",
604
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
605
+ "dd5f3dfa-b41a-11e2-bcf0-001c23d1f545", "meta_info": "", "moderation_status":
606
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
607
+ "Columbia", "create_date": "10/05/2012", "display_override": "South Carolina
608
+ Education Oversight Committee, Columbia SC", "id": "232193", "logo_url":
609
+ "/static/images/organization/default_logo.png", "name": "South Carolina Education
610
+ Oversight Committee", "rank": 0, "resource_uri": "/api/v1/organization/232193/",
611
+ "state": "South Carolina", "update_date": "2012-10-05T07:11:39.959172", "url":
612
+ "/organization/232193", "video_count": 7}, "original_keywords": "", "post_to_edmodo":
613
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
614
+ null, "resource_uri": "/api/v1/video/549973/", "short_url": "http://bit.ly/113q01w",
615
+ "show_on_homepage": true, "thumbnail_status": true, "thumbnail_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/dd/5f/3d/fa/b4/1a/dd5f3dfa-b41a-11e2-bcf0-001c23d1f545_01.jpg",
616
+ "thumbnails": 1, "thumbnails_url": "/api/v1/video/d4aa50b8243f41da85ee/thumbnails/",
617
+ "thumbs_up": 0, "title": "New Carolina''s The Future of Education in South
618
+ Carolina: Hunter Bliss, Lexington High School Senior and Travis Allen, Founder
619
+ and CEO, iSchool Initiative", "update_date": "2013-05-03T15:16:10.646170",
620
+ "url": "/video/d4aa50b8243f41da85ee/New Carolina''s The Future of Education
621
+ in South Carolina: Hunter Bliss, Lexington High School Senior and Travis Allen,
622
+ Founder and CEO, iSchool Initiative", "username": "eocacct", "view_count":
623
+ 340, "vkey": "d4aa50b8243f41da85ee"}, {"allow_embed": true, "allow_rating":
624
+ true, "channel_url": "/channel/Ladue Horton Watkins HS", "create_date": "September
625
+ 16, 2013", "create_user": "/api/v1/profile/4262/", "description": "Educators
626
+ all over the world are allowing their students the opportunity to create videos
627
+ to show comprehension of their subject matter. The ease and accessibility
628
+ of mobile devices has allowed for this educational paradigm shift. In this
629
+ video, teachers from a variety of subjects offer their advice to other educators
630
+ on why to incorporate video into the classroom.", "duration": null, "edmodo_group":
631
+ 0, "exclude_from_channel": null, "external_encoded_media_id": "28044970",
632
+ "external_media_id": "28044905", "external_provider_name": "heywatch", "id":
633
+ "592308", "is_featured": false, "is_locked": false, "is_organization_approved":
634
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/30/ad/55/42/1e/eb/30ad5542-1eeb-11e3-88da-001c23dcdfb5_07.jpg",
635
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
636
+ "30ad5542-1eeb-11e3-88da-001c23dcdfb5", "meta_info": "", "moderation_status":
637
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
638
+ "Saint Louis", "create_date": "07/26/2008", "display_override": "Ladue Horton
639
+ Watkins High School, Saint Louis MO", "id": "166862", "logo_url": "/static/images/organization/default_logo.png",
640
+ "name": "Ladue Horton Watkins High School", "rank": 0, "resource_uri": "/api/v1/organization/166862/",
641
+ "state": "Missouri", "update_date": "2012-01-25T13:23:09.194303", "url": "/organization/166862",
642
+ "video_count": 1686}, "original_keywords": "Video,Video in the Classroom,Educators,
643
+ Advice,video,classroom,education,digital,media,mobile,device,21st Century
644
+ skills,Lesson,Teacher,Student", "post_to_edmodo": null, "rank": 0.490792,
645
+ "rating_count": null, "rating_down": null, "rating_up": null, "resource_uri":
646
+ "/api/v1/video/592308/", "short_url": "http://bit.ly/150vGWd", "show_on_homepage":
647
+ true, "thumbnail_status": true, "thumbnail_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/30/ad/55/42/1e/eb/30ad5542-1eeb-11e3-88da-001c23dcdfb5_07.jpg",
648
+ "thumbnails": 9, "thumbnails_url": "/api/v1/video/53aee87628744f728d7b/thumbnails/",
649
+ "thumbs_up": 0, "title": "Video in the Classroom - Educators Advice", "update_date":
650
+ "2013-09-16T09:25:59.399071", "url": "/video/53aee87628744f728d7b/Video in
651
+ the Classroom - Educators Advice", "username": "dgoble", "view_count": 123,
652
+ "vkey": "53aee87628744f728d7b"}, {"allow_embed": true, "allow_rating": true,
653
+ "channel_url": "/channel/Ladue Horton Watkins HS", "create_date": "September
654
+ 16, 2013", "create_user": "/api/v1/profile/4262/", "description": "Educators
655
+ all over the world are allowing their students the opportunity to create videos
656
+ to show comprehension of their subject matter. The ease and accessibility
657
+ of mobile devices has allowed for this educational paradigm shift. \r\n\r\nIn
658
+ this video, teachers from a variety of subjects offer their success stories
659
+ to other educators on why to incorporate video into the classroom.", "duration":
660
+ null, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
661
+ "28045380", "external_media_id": "28045246", "external_provider_name": "heywatch",
662
+ "id": "592316", "is_featured": false, "is_locked": false, "is_organization_approved":
663
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/3d/e8/72/40/1e/ec/3de87240-1eec-11e3-adbe-001c23db86b0_01.jpg",
664
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
665
+ "3de87240-1eec-11e3-adbe-001c23db86b0", "meta_info": "", "moderation_status":
666
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
667
+ "Saint Louis", "create_date": "07/26/2008", "display_override": "Ladue Horton
668
+ Watkins High School, Saint Louis MO", "id": "166862", "logo_url": "/static/images/organization/default_logo.png",
669
+ "name": "Ladue Horton Watkins High School", "rank": 0, "resource_uri": "/api/v1/organization/166862/",
670
+ "state": "Missouri", "update_date": "2012-01-25T13:23:09.194303", "url": "/organization/166862",
671
+ "video_count": 1686}, "original_keywords": "Video in the Classroom, educators,
672
+ success, stories, video,classroom,education,digital,media,mobile,device,21st
673
+ Century skills,Lesson,Teacher,Student", "post_to_edmodo": null, "rank": 0.490792,
674
+ "rating_count": null, "rating_down": null, "rating_up": null, "resource_uri":
675
+ "/api/v1/video/592316/", "short_url": "http://bit.ly/150xezt", "show_on_homepage":
676
+ true, "thumbnail_status": true, "thumbnail_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/3d/e8/72/40/1e/ec/3de87240-1eec-11e3-adbe-001c23db86b0_01.jpg",
677
+ "thumbnails": 36, "thumbnails_url": "/api/v1/video/7806a64525bc4a238873/thumbnails/",
678
+ "thumbs_up": 0, "title": "Video in the Classroom - Educator Success Stories
679
+ ", "update_date": "2013-09-16T09:36:46.117544", "url": "/video/7806a64525bc4a238873/Video
680
+ in the Classroom - Educator Success Stories ", "username": "dgoble", "view_count":
681
+ 276, "vkey": "7806a64525bc4a238873"}, {"allow_embed": true, "allow_rating":
682
+ true, "channel_url": "/channel/Ladue Horton Watkins HS", "create_date": "September
683
+ 16, 2013", "create_user": "/api/v1/profile/4262/", "description": "Educators
684
+ all over the world are allowing their students the opportunity to create videos
685
+ to show comprehension of their subject matter. The ease and accessibility
686
+ of mobile devices has allowed for this educational paradigm shift. \r\n\r\nIn
687
+ this video, teachers from a variety of subjects offer their experience using
688
+ student videos to other educators on why to incorporate video into the classroom.",
689
+ "duration": null, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
690
+ "28045477", "external_media_id": "28045409", "external_provider_name": "heywatch",
691
+ "id": "592327", "is_featured": false, "is_locked": false, "is_organization_approved":
692
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/94/7b/e6/ae/1e/ed/947be6ae-1eed-11e3-9ff5-001c23d1f545_01.jpg",
693
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
694
+ "947be6ae-1eed-11e3-9ff5-001c23d1f545", "meta_info": "", "moderation_status":
695
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
696
+ "Saint Louis", "create_date": "07/26/2008", "display_override": "Ladue Horton
697
+ Watkins High School, Saint Louis MO", "id": "166862", "logo_url": "/static/images/organization/default_logo.png",
698
+ "name": "Ladue Horton Watkins High School", "rank": 0, "resource_uri": "/api/v1/organization/166862/",
699
+ "state": "Missouri", "update_date": "2012-01-25T13:23:09.194303", "url": "/organization/166862",
700
+ "video_count": 1686}, "original_keywords": "Video in the Classroom, experience,advice,video,classroom,education,digital,media,mobile,device,21st
701
+ Century skills,Lesson,Teacher,Student,experience,educators", "post_to_edmodo":
702
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
703
+ null, "resource_uri": "/api/v1/video/592327/", "short_url": "http://bit.ly/150xvSY",
704
+ "show_on_homepage": true, "thumbnail_status": true, "thumbnail_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/94/7b/e6/ae/1e/ed/947be6ae-1eed-11e3-9ff5-001c23d1f545_01.jpg",
705
+ "thumbnails": 9, "thumbnails_url": "/api/v1/video/86f9d1ada03940d2a4a3/thumbnails/",
706
+ "thumbs_up": 0, "title": "Video in the Classroom - Educators Experience",
707
+ "update_date": "2013-09-16T09:38:45.853892", "url": "/video/86f9d1ada03940d2a4a3/Video
708
+ in the Classroom - Educators Experience", "username": "dgoble", "view_count":
709
+ 182, "vkey": "86f9d1ada03940d2a4a3"}, {"allow_embed": true, "allow_rating":
710
+ true, "channel_url": "/channel/Army Education", "create_date": "October 06,
711
+ 2010", "create_user": "/api/v1/profile/123565/", "description": "Army education
712
+ podcast highlighting education partnerships", "duration": 127, "edmodo_group":
713
+ 0, "exclude_from_channel": null, "external_encoded_media_id": null, "external_media_id":
714
+ null, "external_provider_name": null, "id": "121905", "is_featured": false,
715
+ "is_locked": false, "is_organization_approved": true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/fb/7e/7b/89/6d/91/fb7e7b89-6d91-2e9d-fcb2-c16d991ef740_lg.jpg",
716
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
717
+ "fb7e7b89-6d91-2e9d-fcb2-c16d991ef740", "meta_info": "", "moderation_status":
718
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
719
+ "Fort Knox", "create_date": "09/10/2010", "display_override": "U.S. Army Marketing
720
+ and Research Group, Fort Knox KY", "id": "222648", "logo_url": "/static/images/organization/default_logo.png",
721
+ "name": "U.S. Army Marketing and Research Group", "rank": 0, "resource_uri":
722
+ "/api/v1/organization/222648/", "state": "Kentucky", "update_date": "2013-06-28T10:10:26.245468",
723
+ "url": "/organization/222648", "video_count": 61}, "original_keywords": "Army
724
+ education", "post_to_edmodo": null, "rank": 0.490635, "rating_count": null,
725
+ "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/121905/",
726
+ "short_url": "http://bit.ly/nf2ykr", "show_on_homepage": true, "thumbnail_status":
727
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/fb/7e/7b/89/6d/91/fb7e7b89-6d91-2e9d-fcb2-c16d991ef740.jpg",
728
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/1f251874659e680e491b/thumbnails/",
729
+ "thumbs_up": 0, "title": "Army Education Podcast - Education Partners", "update_date":
730
+ "2012-04-25T04:52:33.784062", "url": "/video/1f251874659e680e491b/Army Education
731
+ Podcast - Education Partners", "username": "armyed", "view_count": 950, "vkey":
732
+ "1f251874659e680e491b"}, {"allow_embed": true, "allow_rating": true, "channel_url":
733
+ "/channels/", "create_date": "October 30, 2008", "create_user": "/api/v1/profile/48949/",
734
+ "description": "Futurist education", "duration": 2, "edmodo_group": 0, "exclude_from_channel":
735
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
736
+ null, "id": "13261", "is_featured": false, "is_locked": false, "is_organization_approved":
737
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/f2/89/db/7a/b2/ea/f289db7a-b2ea-3042-17dc-154c8ceb60ca_lg.jpg",
738
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
739
+ "f289db7a-b2ea-3042-17dc-154c8ceb60ca", "meta_info": "", "moderation_status":
740
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
741
+ "Fellsmere", "create_date": "10/24/2008", "display_override": "Indian River
742
+ State College, Fellsmere FL", "id": "217551", "logo_url": "/static/images/organization/default_logo.png",
743
+ "name": "Indian River State College", "rank": 0, "resource_uri": "/api/v1/organization/217551/",
744
+ "state": "Florida", "update_date": "2008-10-24T10:06:22.163000", "url": "/organization/217551",
745
+ "video_count": 3}, "original_keywords": "Education, Future, world Education,
746
+ Around the world, building education, Commercial and Fillmaker,Technical",
747
+ "post_to_edmodo": null, "rank": 0.488258, "rating_count": null, "rating_down":
748
+ null, "rating_up": null, "resource_uri": "/api/v1/video/13261/", "short_url":
749
+ "http://bit.ly/peYRdI", "show_on_homepage": true, "thumbnail_status": null,
750
+ "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/f2/89/db/7a/b2/ea/f289db7a-b2ea-3042-17dc-154c8ceb60ca.jpg",
751
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/0aadbf3ac2664d6ca12a/thumbnails/",
752
+ "thumbs_up": 0, "title": "Education Around The world", "update_date": "2012-04-25T18:17:35.912996",
753
+ "url": "/video/0aadbf3ac2664d6ca12a/Education Around The world", "username":
754
+ "elyprod@yahoo.fr", "view_count": 4624, "vkey": "0aadbf3ac2664d6ca12a"}, {"allow_embed":
755
+ true, "allow_rating": true, "channel_url": "/channel/Assoc. for Career &
756
+ Technical Education (ACTE)", "create_date": "October 15, 2009", "create_user":
757
+ "/api/v1/profile/1840/", "description": "Wilma Stephenson from the documentary
758
+ film \"Pressure Cooker\" talks about the culinary education of her students
759
+ and the career success they have achieved, as well as the loss of potential
760
+ when students are not educated for careers. She is introduced by Richard Grausman,
761
+ founder of the Careers through the Culinary Arts Program (C-CAP), which supports
762
+ Mrs. Stephenson''s program. Mrs. Stephenson is speaking at the Association
763
+ for Career and Technical Education (ACTE) Cooking Up a Career on Capitol Hill
764
+ event, sponsored by ACTE, BET, Viacom and Participant Media.", "duration":
765
+ 202, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
766
+ null, "external_media_id": null, "external_provider_name": null, "id": "48268",
767
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
768
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/7b/7a/f8/83/e5/0c/7b7af883-e50c-24e3-3ae9-e4c45518a5ff_lg.jpg",
769
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
770
+ "7b7af883-e50c-24e3-3ae9-e4c45518a5ff", "meta_info": "", "moderation_status":
771
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
772
+ "Alexandria", "create_date": "08/02/2008", "display_override": "ACTE: Association
773
+ for Career and Technical Education, Alexandria VA", "id": "217061", "logo_url":
774
+ "/static/images/organization/default_logo.png", "name": "ACTE: Association
775
+ for Career and Technical Education", "rank": 0, "resource_uri": "/api/v1/organization/217061/",
776
+ "state": "Virginia", "update_date": "2008-08-02T15:32:25.010000", "url": "/organization/217061",
777
+ "video_count": 133}, "original_keywords": "acte cte career tech technical
778
+ ed education culinary arts cooking chef scholarship pressure cooker stephenson
779
+ workforce trades", "post_to_edmodo": null, "rank": 0.488258, "rating_count":
780
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/48268/",
781
+ "short_url": "http://bit.ly/quy9Q2", "show_on_homepage": true, "thumbnail_status":
782
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/7b/7a/f8/83/e5/0c/7b7af883-e50c-24e3-3ae9-e4c45518a5ff.jpg",
783
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/646e4aa6282e47dfbb90/thumbnails/",
784
+ "thumbs_up": 0, "title": "Wilma Stephenson of \"Pressure Cooker\" on Value
785
+ of Education", "update_date": "2012-04-25T23:37:13.471984", "url": "/video/646e4aa6282e47dfbb90/Wilma
786
+ Stephenson of \"Pressure Cooker\" on Value of Education", "username": "ACTEMedia",
787
+ "view_count": 3351, "vkey": "646e4aa6282e47dfbb90"}, {"allow_embed": true,
788
+ "allow_rating": true, "channel_url": "/channel/American Education Week", "create_date":
789
+ "November 25, 2009", "create_user": "/api/v1/profile/88004/", "description":
790
+ "Congressman Mike Honda (D-Calif.) reveals why its so important lawmakers
791
+ stay involved with their local public schools, \rand encourages community
792
+ leaders to participate in American Education Weeks Educator for a Day program.",
793
+ "duration": 105, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
794
+ null, "external_media_id": null, "external_provider_name": null, "id": "57156",
795
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
796
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/d4/86/d8/d1/08/6e/d486d8d1-086e-79e0-d714-77c8698815d1_lg.jpg",
797
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
798
+ "d486d8d1-086e-79e0-d714-77c8698815d1", "meta_info": "", "moderation_status":
799
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
800
+ "Washington", "create_date": "07/13/2009", "display_override": "National Education
801
+ Association, Washington DC", "id": "218544", "logo_url": "/static/images/organization/default_logo.png",
802
+ "name": "National Education Association", "rank": 0, "resource_uri": "/api/v1/organization/218544/",
803
+ "state": "District of Columbia", "update_date": "2009-07-13T14:37:49.613000",
804
+ "url": "/organization/218544", "video_count": 22}, "original_keywords": "NEA
805
+ American Education Week congressman Honda educator lawmakers", "post_to_edmodo":
806
+ null, "rank": 0.488258, "rating_count": null, "rating_down": null, "rating_up":
807
+ null, "resource_uri": "/api/v1/video/57156/", "short_url": "http://bit.ly/ozKq93",
808
+ "show_on_homepage": true, "thumbnail_status": null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/d4/86/d8/d1/08/6e/d486d8d1-086e-79e0-d714-77c8698815d1.jpg",
809
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/254a9c244feb4525af92/thumbnails/",
810
+ "thumbs_up": 0, "title": "Educator for a Day", "update_date": "2012-04-23T17:29:05.024080",
811
+ "url": "/video/254a9c244feb4525af92/Educator for a Day", "username": "AmericanEducationWeek",
812
+ "view_count": 1521, "vkey": "254a9c244feb4525af92"}]}'
813
+ http_version:
814
+ recorded_at: Wed, 20 Nov 2013 21:53:23 GMT
815
+ recorded_with: VCR 2.6.0