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,810 @@
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
+ - Mon, 02 Dec 2013 20:22:15 GMT
25
+ Server:
26
+ - Apache
27
+ Expires:
28
+ - Mon, 02 Dec 2013 20:32:17 GMT
29
+ Vary:
30
+ - Cookie
31
+ Cache-Control:
32
+ - max-age=600
33
+ Content-Length:
34
+ - '65975'
35
+ Last-Modified:
36
+ - Mon, 02 Dec 2013 20:22:17 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": 3513, "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": 6345, "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": 477, "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": 2278, "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": 3114, "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": 4915, "vkey": "a1f0a7576286429ea177"},
258
+ {"allow_embed": true, "allow_rating": true, "channel_url": "/channel/BrainPOP",
259
+ "create_date": "December 02, 2013", "create_user": "/api/v1/profile/81043/",
260
+ "description": "This screencast explains the BrainPOP Educators verification
261
+ code that adds features, such as My BrainPOP and the Mixer, to your BrainPOP
262
+ Educators account.", "duration": null, "edmodo_group": 0, "exclude_from_channel":
263
+ null, "external_encoded_media_id": "30393237", "external_media_id": "30393223",
264
+ "external_provider_name": "heywatch", "id": "636445", "is_featured": false,
265
+ "is_locked": false, "is_organization_approved": true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/cb/bc/02/26/5b/78/cbbc0226-5b78-11e3-9c43-001c23db86b0_01.jpg",
266
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
267
+ "cbbc0226-5b78-11e3-9c43-001c23db86b0", "meta_info": "", "moderation_status":
268
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
269
+ "New York", "create_date": "08/24/2009", "display_override": "BrainPOP, New
270
+ York NY", "id": "218752", "logo_url": "/static/images/organization/default_logo.png",
271
+ "name": "BrainPOP", "rank": 0, "resource_uri": "/api/v1/organization/218752/",
272
+ "state": "New York", "update_date": "2009-08-24T14:01:31.820000", "url": "/organization/218752",
273
+ "video_count": 44}, "original_keywords": "\"BrainPOP\", \"Education\", \"Animation\",
274
+ \"Educator''s account\", \"BrainPOP Educators\", \"Mixer access\", \"Teacher''s
275
+ how to\", \"My BrainPOP\", \"Verification Code\", \"Educators features\",
276
+ Educator Code ", "post_to_edmodo": null, "rank": 0.493812, "rating_count":
277
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/636445/",
278
+ "short_url": "http://bit.ly/1dLFTiM", "show_on_homepage": true, "thumbnail_status":
279
+ true, "thumbnail_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/cb/bc/02/26/5b/78/cbbc0226-5b78-11e3-9c43-001c23db86b0_01.jpg",
280
+ "thumbnails": 9, "thumbnails_url": "/api/v1/video/75738d0b86da4c23b276/thumbnails/",
281
+ "thumbs_up": 0, "title": "What is the Educator Code ? ", "update_date": "2013-12-02T10:29:31.848494",
282
+ "url": "/video/75738d0b86da4c23b276/What is the Educator Code ? ", "username":
283
+ "brainpop", "view_count": 0, "vkey": "75738d0b86da4c23b276"}, {"allow_embed":
284
+ true, "allow_rating": true, "channel_url": "/channel/Maryland State Education
285
+ Association", "create_date": "February 23, 2011", "create_user": "/api/v1/profile/99446/",
286
+ "description": "On November 8, 2010, MSEA President Clara Floyd; Vice President
287
+ and Co-Chair of the Council for Educator Effectiveness Betty Weller; President
288
+ of the Teachers Association of Baltimore County and member of the Council
289
+ for Educator Effectiveness, Cheryl Bost; and MSEA Executive Director David
290
+ Helfman testified about the proposed educator evaluation regulations.", "duration":
291
+ 197, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
292
+ null, "external_media_id": null, "external_provider_name": null, "id": "175350",
293
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
294
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/a5/da/ab/a6/ce/a0/a5daaba6-cea0-4773-7213-450eed92ee13_lg.jpg",
295
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
296
+ "a5daaba6-cea0-4773-7213-450eed92ee13", "meta_info": "", "moderation_status":
297
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
298
+ "Annapolis", "create_date": "02/25/2010", "display_override": "Maryland State
299
+ Education Association, Annapolis MD", "id": "220173", "logo_url": "/static/images/organization/default_logo.png",
300
+ "name": "Maryland State Education Association", "rank": 0, "resource_uri":
301
+ "/api/v1/organization/220173/", "state": "Maryland", "update_date": "2010-02-25T08:37:47.537000",
302
+ "url": "/organization/220173", "video_count": 35}, "original_keywords": "education
303
+ reform Race to the Top", "post_to_edmodo": null, "rank": 0.492642, "rating_count":
304
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/175350/",
305
+ "short_url": "http://bit.ly/pbM6Yk", "show_on_homepage": true, "thumbnail_status":
306
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/a5/da/ab/a6/ce/a0/a5daaba6-cea0-4773-7213-450eed92ee13.jpg",
307
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/5d3065dd21fcb5cecce6/thumbnails/",
308
+ "thumbs_up": 0, "title": "MSEA and Council for Educator Effectiveness leaders
309
+ on proposed educator evaluation regulations", "update_date": "2012-04-26T06:40:42.735035",
310
+ "url": "/video/5d3065dd21fcb5cecce6/MSEA and Council for Educator Effectiveness
311
+ leaders on proposed educator evaluation regulations", "username": "MarylandEducation",
312
+ "view_count": 466, "vkey": "5d3065dd21fcb5cecce6"}, {"allow_embed": true,
313
+ "allow_rating": true, "channel_url": "/channel/BrainPOP", "create_date": "December
314
+ 02, 2013", "create_user": "/api/v1/profile/81043/", "description": "Learn
315
+ the ins and outs of BrainPOP Educators with this quick tour over some old
316
+ favorites and updates on what we''ve been up to, including My BrainPOP and
317
+ the Mixer.", "duration": null, "edmodo_group": 0, "exclude_from_channel":
318
+ null, "external_encoded_media_id": "30394253", "external_media_id": "30394104",
319
+ "external_provider_name": "heywatch", "id": "636462", "is_featured": false,
320
+ "is_locked": false, "is_organization_approved": true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/75/0b/bb/60/5b/7d/750bbb60-5b7d-11e3-b031-001c23d1f545_01.jpg",
321
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
322
+ "750bbb60-5b7d-11e3-b031-001c23d1f545", "meta_info": "", "moderation_status":
323
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
324
+ "New York", "create_date": "08/24/2009", "display_override": "BrainPOP, New
325
+ York NY", "id": "218752", "logo_url": "/static/images/organization/default_logo.png",
326
+ "name": "BrainPOP", "rank": 0, "resource_uri": "/api/v1/organization/218752/",
327
+ "state": "New York", "update_date": "2009-08-24T14:01:31.820000", "url": "/organization/218752",
328
+ "video_count": 44}, "original_keywords": "\"Educational Technology\", \"BrainPOP\",
329
+ \"BrainPOP Jr. \", BrainPOP ESL\", \"Free Account\", \"My Mixer\", \"Educator''s
330
+ Homepage\", \"My BrainPOP\", \"Resources\", \"Lesson\", \"Education\", \"Getting
331
+ Started\", \"Screencast\", \"Tutorials\", \"Lessons\", Educators\", \"BrainPOP
332
+ Educators\"", "post_to_edmodo": null, "rank": 0.492538, "rating_count": null,
333
+ "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/636462/",
334
+ "short_url": "http://bit.ly/1gyJhv2", "show_on_homepage": true, "thumbnail_status":
335
+ true, "thumbnail_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/75/0b/bb/60/5b/7d/750bbb60-5b7d-11e3-b031-001c23d1f545_01.jpg",
336
+ "thumbnails": 9, "thumbnails_url": "/api/v1/video/dbc0852ff0c547ddb985/thumbnails/",
337
+ "thumbs_up": 0, "title": "BrainPOP Educators Overview", "update_date": "2013-12-02T10:24:50.673368",
338
+ "url": "/video/dbc0852ff0c547ddb985/BrainPOP Educators Overview", "username":
339
+ "brainpop", "view_count": 0, "vkey": "dbc0852ff0c547ddb985"}, {"allow_embed":
340
+ true, "allow_rating": true, "channel_url": "/channel/Mrs. Laughbon", "create_date":
341
+ "March 04, 2009", "create_user": "/api/v1/profile/4895/", "description": "Environmental
342
+ Education Week is April 12-18. PSA #1\r\n\r\nHelp spread the word. Post this
343
+ public service announcement (PSA) video embed code on blogs, websites and
344
+ social networks (myspace, facebook, livejournal, etc.).\r\n\r\nEE Week is
345
+ the largest organized environmental education event in the United States that
346
+ increases the educational impact of Earth Day by creating a full week of educational
347
+ preparation, learning, and activities in K-12 classrooms, nature centers,
348
+ zoos, museums, and aquariums. \r\n\r\nNOTE: If you are interested in creating
349
+ your own eeweek PSA, check out the resources on this blog post on Classroom
350
+ 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project
351
+ \r\n\r\nMore information and to get involved:\r\nhttp://www.eeweek.org ",
352
+ "duration": 30, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
353
+ null, "external_media_id": null, "external_provider_name": null, "id": "24485",
354
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
355
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/2d/0e/42/43/48/38/2d0e4243-4838-180a-5605-bcbc662f9f3a_lg.jpg",
356
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
357
+ "2d0e4243-4838-180a-5605-bcbc662f9f3a", "meta_info": "", "moderation_status":
358
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
359
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
360
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
361
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
362
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
363
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
364
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
365
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24485/",
366
+ "short_url": "http://bit.ly/px5UpV", "show_on_homepage": true, "thumbnail_status":
367
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/2d/0e/42/43/48/38/2d0e4243-4838-180a-5605-bcbc662f9f3a.jpg",
368
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/aa8edb21de6f4069b9f5/thumbnails/",
369
+ "thumbs_up": 1, "title": "PSA: Environmental Education Week 2009", "update_date":
370
+ "2012-04-26T06:42:34.910344", "url": "/video/aa8edb21de6f4069b9f5/PSA: Environmental
371
+ Education Week 2009", "username": "claughbon", "view_count": 4632, "vkey":
372
+ "aa8edb21de6f4069b9f5"}, {"allow_embed": true, "allow_rating": true, "channel_url":
373
+ "/channel/Mrs. Laughbon", "create_date": "March 04, 2009", "create_user":
374
+ "/api/v1/profile/4895/", "description": "Environmental Education Week is April
375
+ 12-18. PSA #2\r\n\r\nHelp spread the word. Post this public service announcement
376
+ (PSA) video embed code on blogs, websites and social networks (myspace, facebook,
377
+ livejournal, etc.).\r\n\r\nEE Week is the largest organized environmental
378
+ education event in the United States that increases the educational impact
379
+ of Earth Day by creating a full week of educational preparation, learning,
380
+ and activities in K-12 classrooms, nature centers, zoos, museums, and aquariums.
381
+ \r\n\r\nNOTE: If you are interested in creating your own eeweek PSA, check
382
+ out the resources on this blog post on Classroom 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project\r\n\r\nMore
383
+ information and to get involved:\r\nhttp://www.eeweek.org", "duration": 30,
384
+ "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
385
+ null, "external_media_id": null, "external_provider_name": null, "id": "24486",
386
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
387
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/6c/18/63/b1/e1/65/6c1863b1-e165-a704-da77-659eb059c567_lg.jpg",
388
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
389
+ "6c1863b1-e165-a704-da77-659eb059c567", "meta_info": "", "moderation_status":
390
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
391
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
392
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
393
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
394
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
395
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
396
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
397
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24486/",
398
+ "short_url": "http://bit.ly/nncBth", "show_on_homepage": true, "thumbnail_status":
399
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/6c/18/63/b1/e1/65/6c1863b1-e165-a704-da77-659eb059c567.jpg",
400
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/eccc679670b0487092ac/thumbnails/",
401
+ "thumbs_up": 0, "title": "PSA: Environmental Education Week 2009 (2)", "update_date":
402
+ "2012-04-26T02:27:05.716549", "url": "/video/eccc679670b0487092ac/PSA: Environmental
403
+ Education Week 2009 (2)", "username": "claughbon", "view_count": 3727, "vkey":
404
+ "eccc679670b0487092ac"}, {"allow_embed": true, "allow_rating": true, "channel_url":
405
+ "/channel/Mrs. Laughbon", "create_date": "March 04, 2009", "create_user":
406
+ "/api/v1/profile/4895/", "description": "Environmental Education Week is April
407
+ 12-18. PSA #3\r\n\r\nHelp spread the word. Post this public service announcement
408
+ (PSA) video embed code on blogs, websites and social networks (myspace, facebook,
409
+ livejournal, etc.).\r\n\r\nEE Week is the largest organized environmental
410
+ education event in the United States that increases the educational impact
411
+ of Earth Day by creating a full week of educational preparation, learning,
412
+ and activities in K-12 classrooms, nature centers, zoos, museums, and aquariums.
413
+ \r\n\r\nNOTE: If you are interested in creating your own eeweek PSA, check
414
+ out the resources on this blog post on Classroom 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project\r\n\r\nMore
415
+ information and to get involved:\r\nhttp://www.eeweek.org ", "duration": 30,
416
+ "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
417
+ null, "external_media_id": null, "external_provider_name": null, "id": "24489",
418
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
419
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/5c/dd/ca/af/78/6f/5cddcaaf-786f-d8c1-4a9c-aabe83fb4915_lg.jpg",
420
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
421
+ "5cddcaaf-786f-d8c1-4a9c-aabe83fb4915", "meta_info": "", "moderation_status":
422
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
423
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
424
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
425
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
426
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
427
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
428
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
429
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24489/",
430
+ "short_url": "http://bit.ly/rn9RRz", "show_on_homepage": true, "thumbnail_status":
431
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/5c/dd/ca/af/78/6f/5cddcaaf-786f-d8c1-4a9c-aabe83fb4915.jpg",
432
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/b8770ea0bec04d58a934/thumbnails/",
433
+ "thumbs_up": 0, "title": "PSA: Environmental Education Week 2009 (3)", "update_date":
434
+ "2012-04-25T12:17:29.566037", "url": "/video/b8770ea0bec04d58a934/PSA: Environmental
435
+ Education Week 2009 (3)", "username": "claughbon", "view_count": 3012, "vkey":
436
+ "b8770ea0bec04d58a934"}, {"allow_embed": true, "allow_rating": true, "channel_url":
437
+ "/channel/Mrs. Laughbon", "create_date": "March 04, 2009", "create_user":
438
+ "/api/v1/profile/4895/", "description": "Environmental Education Week is April
439
+ 12-18. PSA #1\r\n\r\nHelp spread the word. Post this public service announcement
440
+ (PSA) video embed code on blogs, websites and social networks (myspace, facebook,
441
+ livejournal, etc.).\r\n\r\nEE Week is the largest organized environmental
442
+ education event in the United States that increases the educational impact
443
+ of Earth Day by creating a full week of educational preparation, learning,
444
+ and activities in K-12 classrooms, nature centers, zoos, museums, and aquariums.
445
+ \r\n\r\nNOTE: If you are interested in creating your own eeweek PSA, check
446
+ out the resources on this blog post on Classroom 2.0: http://www.classroom20.com/profiles/blogs/videobloggingpodcast-project
447
+ \r\n\r\nMore information and to get involved:\r\nhttp://www.eeweek.org ",
448
+ "duration": 29, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
449
+ null, "external_media_id": null, "external_provider_name": null, "id": "24497",
450
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
451
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/7f/d8/53/cb/48/75/7fd853cb-4875-0b82-91b7-801daea857ba_lg.jpg",
452
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
453
+ "7fd853cb-4875-0b82-91b7-801daea857ba", "meta_info": "", "moderation_status":
454
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
455
+ "Port Townsend", "create_date": "07/26/2008", "display_override": "Blue Heron
456
+ Middle School, Port Townsend WA", "id": "211216", "logo_url": "/static/images/organization/default_logo.png",
457
+ "name": "Blue Heron Middle School", "rank": 0, "resource_uri": "/api/v1/organization/211216/",
458
+ "state": "Washington", "update_date": "2008-07-26T19:16:05.740000", "url":
459
+ "/organization/211216", "video_count": 43}, "original_keywords": "green Environmental
460
+ Education Week psa students", "post_to_edmodo": null, "rank": 0.490792, "rating_count":
461
+ null, "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/24497/",
462
+ "short_url": "http://bit.ly/q9D61w", "show_on_homepage": true, "thumbnail_status":
463
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/7f/d8/53/cb/48/75/7fd853cb-4875-0b82-91b7-801daea857ba.jpg",
464
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/757fda2e313548c5a572/thumbnails/",
465
+ "thumbs_up": 0, "title": "PSA: Environmental Education Week 2009 (4)", "update_date":
466
+ "2012-04-26T08:17:56.866343", "url": "/video/757fda2e313548c5a572/PSA: Environmental
467
+ Education Week 2009 (4)", "username": "claughbon", "view_count": 3015, "vkey":
468
+ "757fda2e313548c5a572"}, {"allow_embed": true, "allow_rating": true, "channel_url":
469
+ "/channel/SymbalooEDU", "create_date": "June 24, 2011", "create_user": "/api/v1/profile/264392/",
470
+ "description": "Randy Hollinger was one of the first educators to meet the
471
+ radar of Team Symbaloo. By way of a viral video made by one of his 7th grade
472
+ science students we were able to connect with Randy and learn how Symbaloo
473
+ was first being used in the classroom. It was due to feedback from educators
474
+ like Randy that we began to build a special Symbaloo for educators. SymbalooEDU
475
+ was born less than one year ago and is rapidly growing as the tool of choice
476
+ for educators looking to help their students organize their online life.",
477
+ "duration": 338, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
478
+ null, "external_media_id": null, "external_provider_name": null, "id": "228929",
479
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
480
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/b4/0b/63/4b/28/6a/b40b634b-286a-b273-e035-057129eb5c0b_lg.jpg",
481
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
482
+ "b40b634b-286a-b273-e035-057129eb5c0b", "meta_info": "", "moderation_status":
483
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
484
+ "Costa Mesa", "create_date": "04/05/2011", "display_override": "SymbalooEDU, Costa
485
+ Mesa CA", "id": "224840", "logo_url": "/static/images/organization/default_logo.png",
486
+ "name": "SymbalooEDU", "rank": 0, "resource_uri": "/api/v1/organization/224840/",
487
+ "state": "California", "update_date": "2011-04-05T13:51:01.660000", "url":
488
+ "/organization/224840", "video_count": 60}, "original_keywords": "Symbaloo
489
+ SymbalooEDU Educator Randy Hollinger ISTE 2011 Student", "post_to_edmodo":
490
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
491
+ null, "resource_uri": "/api/v1/video/228929/", "short_url": "http://bit.ly/oawJm0",
492
+ "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",
493
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/b46c362eeef8c52493c9/thumbnails/",
494
+ "thumbs_up": 0, "title": "SymbalooEDU Spotlight Educator: Randy Hollinger",
495
+ "update_date": "2012-04-24T08:10:07.549602", "url": "/video/b46c362eeef8c52493c9/SymbalooEDU
496
+ Spotlight Educator: Randy Hollinger", "username": "SymbalooEDU", "view_count":
497
+ 1207, "vkey": "b46c362eeef8c52493c9"}, {"allow_embed": true, "allow_rating":
498
+ true, "channel_url": "/channel/Pymatuning Valley High School", "create_date":
499
+ "August 30, 2011", "create_user": "/api/v1/profile/146745/", "description":
500
+ "Sasheen Phillips, Director of Curriculum and Assessment at the Ohio Board
501
+ of Education, presents the upcoming changes to the Ohio Education Standards.
502
+ The presentation took place on 8/25/11 at Jefferson Area High School in Jefferson,
503
+ Ohio. The Ashtabula County Educational Service Center organized the event.",
504
+ "duration": 3720, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
505
+ null, "external_media_id": null, "external_provider_name": null, "id": "236099",
506
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
507
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/d8/9d/f1/7d/d6/49/d89df17d-d649-9ad7-d413-16e3e807691d_lg.jpg",
508
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
509
+ "d89df17d-d649-9ad7-d413-16e3e807691d", "meta_info": "", "moderation_status":
510
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
511
+ "Andover", "create_date": "07/26/2008", "display_override": "Pymatuning Valley
512
+ High School, Andover OH", "id": "182989", "logo_url": "/static/images/organization/default_logo.png",
513
+ "name": "Pymatuning Valley High School", "rank": 0, "resource_uri": "/api/v1/organization/182989/",
514
+ "state": "Ohio", "update_date": "2012-01-26T08:26:52.643705", "url": "/organization/182989",
515
+ "video_count": 989}, "original_keywords": "Sasheen Phillips Ohio Department
516
+ of Education Ashtabula Count Educational Service Center New State Standards",
517
+ "post_to_edmodo": null, "rank": 0.490792, "rating_count": null, "rating_down":
518
+ null, "rating_up": null, "resource_uri": "/api/v1/video/236099/", "short_url":
519
+ "http://bit.ly/pwzXyt", "show_on_homepage": true, "thumbnail_status": null,
520
+ "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/d8/9d/f1/7d/d6/49/d89df17d-d649-9ad7-d413-16e3e807691d.jpg",
521
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/dd9345d92db56f227e5e/thumbnails/",
522
+ "thumbs_up": 0, "title": "Sasheen Phillips, Ohio Board of Education Presentation",
523
+ "update_date": "2012-04-26T09:04:33.726543", "url": "/video/dd9345d92db56f227e5e/Sasheen
524
+ Phillips, Ohio Board of Education Presentation", "username": "pymatuningvalley",
525
+ "view_count": 1333, "vkey": "dd9345d92db56f227e5e"}, {"allow_embed": true,
526
+ "allow_rating": true, "channel_url": "/channel/FANUC Robotics America CERT
527
+ Program", "create_date": "February 13, 2012", "create_user": "/api/v1/profile/323605/",
528
+ "description": "Jessica Beltran, an engineer at FANUC Robotics, talks about
529
+ how she got into robotic engineering and the importance of STEM education.",
530
+ "duration": 189890, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
531
+ null, "external_media_id": null, "external_provider_name": null, "id": "309640",
532
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
533
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/0a/c9/dd/46/56/56/0ac9dd46-5656-11e1-ada0-00188b41f993_lg.jpg",
534
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
535
+ "0ac9dd46-5656-11e1-ada0-00188b41f993", "meta_info": "", "moderation_status":
536
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
537
+ "Rochester Hills", "create_date": "12/13/2011", "display_override": "FANUC
538
+ Robotics, Rochester Hills MI", "id": "227028", "logo_url": "/static/images/organization/default_logo.png",
539
+ "name": "FANUC Robotics", "rank": 0, "resource_uri": "/api/v1/organization/227028/",
540
+ "state": "Michigan", "update_date": "2012-11-29T14:22:06.244958", "url": "/organization/227028",
541
+ "video_count": 17}, "original_keywords": "STEM, STEM Education, Robotics,
542
+ Robotics Engineering, Engineering, Industrial Engineering, Engineering School,
543
+ FANUC, FANUC Robotics, Robotic Education, Education Robots, FANUC Education,
544
+ FANUC Training, CERT, FANUC CERT", "post_to_edmodo": null, "rank": 0.490792,
545
+ "rating_count": null, "rating_down": null, "rating_up": null, "resource_uri":
546
+ "/api/v1/video/309640/", "short_url": "http://bit.ly/zOIW7Z", "show_on_homepage":
547
+ true, "thumbnail_status": null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/0a/c9/dd/46/56/56/0ac9dd46-5656-11e1-ada0-00188b41f993.jpg",
548
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/16c722ef367b4a13b885/thumbnails/",
549
+ "thumbs_up": 0, "title": "FANUC Robotics Engineer Jessica Beltran talks Robotics,
550
+ STEM Education", "update_date": "2012-04-25T09:08:17.064857", "url": "/video/16c722ef367b4a13b885/FANUC
551
+ Robotics Engineer Jessica Beltran talks Robotics, STEM Education", "username":
552
+ "cert", "view_count": 814, "vkey": "16c722ef367b4a13b885"}, {"allow_embed":
553
+ true, "allow_rating": true, "channel_url": "/channel/Knox County Public Schools
554
+ - Kentucky", "create_date": "February 18, 2012", "create_user": "/api/v1/profile/82522/",
555
+ "description": "February 19-25, 2012 is Gifted Education Week in the Knox
556
+ County Public Schools (KY). Students, educators, and higher education representatives
557
+ signed a proclamation on February 16 declaring the week \"Gifted Education
558
+ Week\" in the school district.", "duration": 531048, "edmodo_group": 0, "exclude_from_channel":
559
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
560
+ null, "id": "313589", "is_featured": false, "is_locked": false, "is_organization_approved":
561
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/a2/ef/66/10/5a/50/a2ef6610-5a50-11e1-b3ed-00188b41f993_lg.jpg",
562
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
563
+ "a2ef6610-5a50-11e1-b3ed-00188b41f993", "meta_info": "", "moderation_status":
564
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
565
+ "Barbourville", "create_date": "03/07/2011", "display_override": "Knox County
566
+ Public Schools, Barbourville KY", "id": "224429", "logo_url": "/static/images/organization/default_logo.png",
567
+ "name": "Knox County Public Schools", "rank": 0, "resource_uri": "/api/v1/organization/224429/",
568
+ "state": "Kentucky", "update_date": "2011-03-07T13:16:16.723000", "url": "/organization/224429",
569
+ "video_count": 178}, "original_keywords": "Gifted Education Week GT Talented
570
+ Gift Proclamation Kentucky Knox County Public Schools KY Barbourville Union
571
+ College", "post_to_edmodo": null, "rank": 0.490792, "rating_count": null,
572
+ "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/313589/",
573
+ "short_url": "http://bit.ly/zmepdY", "show_on_homepage": true, "thumbnail_status":
574
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/a2/ef/66/10/5a/50/a2ef6610-5a50-11e1-b3ed-00188b41f993.jpg",
575
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/c919295aa5034f9fbea5/thumbnails/",
576
+ "thumbs_up": 0, "title": "Gifted Education Week Proclamation Signing", "update_date":
577
+ "2012-04-24T14:23:05.441209", "url": "/video/c919295aa5034f9fbea5/Gifted Education
578
+ Week Proclamation Signing", "username": "knoxkyschools", "view_count": 549,
579
+ "vkey": "c919295aa5034f9fbea5"}, {"allow_embed": true, "allow_rating": true,
580
+ "channel_url": "/channel/RCOE TV", "create_date": "May 09, 2012", "create_user":
581
+ "/api/v1/profile/116956/", "description": "Meet Linde Cobb, an Administrative
582
+ Assistant to the Board of Education in Alvord Unified School District, the
583
+ 2012 Riverside County Confidential Employee of the Year.", "duration": 118952,
584
+ "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
585
+ null, "external_media_id": null, "external_provider_name": null, "id": "373931",
586
+ "is_featured": false, "is_locked": false, "is_organization_approved": true,
587
+ "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/8c/dc/d1/4a/99/e9/8cdcd14a-99e9-11e1-b50c-001c23dcdfb5_lg.jpg",
588
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
589
+ "8cdcd14a-99e9-11e1-b50c-001c23dcdfb5", "meta_info": "", "moderation_status":
590
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
591
+ "Riverside", "create_date": "08/12/2010", "display_override": "Riverside County
592
+ Office of Education, Riverside CA", "id": "221607", "logo_url": "/static/images/organization/default_logo.png",
593
+ "name": "Riverside County Office of Education", "rank": 0, "resource_uri":
594
+ "/api/v1/organization/221607/", "state": "California", "update_date": "2010-08-12T10:59:40.623000",
595
+ "url": "/organization/221607", "video_count": 88}, "original_keywords": "Riverside
596
+ County Office of Education; RCOE TV; Education; Excellence in Education; Confidential
597
+ Employees; Awards; Alvord Unified School District; Celebrating Educators;
598
+ Cobb ", "post_to_edmodo": null, "rank": 0.490792, "rating_count": null, "rating_down":
599
+ null, "rating_up": null, "resource_uri": "/api/v1/video/373931/", "short_url":
600
+ "http://bit.ly/Jzav4N", "show_on_homepage": true, "thumbnail_status": null,
601
+ "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/8c/dc/d1/4a/99/e9/8cdcd14a-99e9-11e1-b50c-001c23dcdfb5.jpg",
602
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/1cf0bc75e6a3456d8b4f/thumbnails/",
603
+ "thumbs_up": 0, "title": "Celebrating Educators 2012: Linde Cobb", "update_date":
604
+ "2012-05-13T22:22:53.624139", "url": "/video/1cf0bc75e6a3456d8b4f/Celebrating
605
+ Educators 2012: Linde Cobb", "username": "RCOETV", "view_count": 207, "vkey":
606
+ "1cf0bc75e6a3456d8b4f"}, {"allow_embed": true, "allow_rating": true, "channel_url":
607
+ "/channels/", "create_date": "May 25, 2012", "create_user": "/api/v1/profile/344426/",
608
+ "description": "Character Education that works \u2013 Student Interviews Children
609
+ (K-5) talk about what they learn in Character Education class. In class they
610
+ sing songs, talk about their feelings and what choices to make in real-life
611
+ experiences. Students want to do the talking, they want to do the sharing,
612
+ and they want to analyze the life skills they have learned in class. Once
613
+ you get them taking about Character Education, its hands off \u2013 that is
614
+ when you, as the teacher, listen and learn. Directed by Harold B. Pritchett,
615
+ Character Education Teacher.", "duration": 531382, "edmodo_group": 0, "exclude_from_channel":
616
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
617
+ null, "id": "387958", "is_featured": false, "is_locked": false, "is_organization_approved":
618
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/cf/c8/a8/2c/a6/d1/cfc8a82c-a6d1-11e1-a179-001c23db86b0_lg.jpg",
619
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
620
+ "cfc8a82c-a6d1-11e1-a179-001c23db86b0", "meta_info": "", "moderation_status":
621
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
622
+ "Wilmington", "create_date": "07/26/2008", "display_override": "Warner Elementary
623
+ School, Wilmington DE", "id": "131089", "logo_url": "/static/images/organization/default_logo.png",
624
+ "name": "Warner Elementary School", "rank": 0, "resource_uri": "/api/v1/organization/131089/",
625
+ "state": "Delaware", "update_date": "2012-03-22T07:45:53.386855", "url": "/organization/131089",
626
+ "video_count": 13}, "original_keywords": "Warner, elementary, school, children,
627
+ Wilmington, Delaware, testing, scores, comprehensive, assessment, DCAS, News,
628
+ kids, tips, believe, focus, reading, New, Harold, Pritchett, education, teaching,
629
+ teacher, inner city, character, red clay, consolidated, school district, music,
630
+ student, month, anger, management, goal, setting, lynch, students, bully,
631
+ bullies, achievement, value, community, supper, self, aware", "post_to_edmodo":
632
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
633
+ null, "resource_uri": "/api/v1/video/387958/", "short_url": "http://bit.ly/V6B7Dy",
634
+ "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",
635
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/ab84a5c1b26f41a7a49c/thumbnails/",
636
+ "thumbs_up": 0, "title": "Character Education that works \u2013 Student Interviews",
637
+ "update_date": "2013-01-15T00:30:44.840620", "url": "/video/ab84a5c1b26f41a7a49c/Character
638
+ Education that works \u2013 Student Interviews", "username": "hbpy2k", "view_count":
639
+ 1603, "vkey": "ab84a5c1b26f41a7a49c"}, {"allow_embed": true, "allow_rating":
640
+ true, "channel_url": "/channel/2012 EOC Video Contest", "create_date": "May
641
+ 03, 2013", "create_user": "/api/v1/profile/398690/", "description": "New Carolina''s
642
+ The Future of Education in South Carolina: Hunter Bliss, Lexington High School
643
+ Senior and Travis Allen, Founder and CEO, iSchool Initiative\r\n\r\nHunter
644
+ Bliss, a senior at Lexington High School and winner of our Technology and
645
+ Education video contest discusses his vision for how technology can change
646
+ education in the classroom and beyond. \r\n\r\nTravis, Founder and CEO of
647
+ the iSchool Initiative, talks about his journey with technology and education
648
+ and how the idea for iSchool was born. Travis has traveled the glob with the
649
+ iSchool Initiative, worked with hundreds of schools in more than 25 states,
650
+ and the US Department of Education. Additionally, through The iSchool Initiative,
651
+ he consults with schools on how to integrate technology into the classroom
652
+ and learning environment in a successful way. ", "duration": null, "edmodo_group":
653
+ 0, "exclude_from_channel": null, "external_encoded_media_id": "24047856",
654
+ "external_media_id": "24047334", "external_provider_name": "heywatch", "id":
655
+ "549973", "is_featured": false, "is_locked": false, "is_organization_approved":
656
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/dd/5f/3d/fa/b4/1a/dd5f3dfa-b41a-11e2-bcf0-001c23d1f545_01.jpg",
657
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
658
+ "dd5f3dfa-b41a-11e2-bcf0-001c23d1f545", "meta_info": "", "moderation_status":
659
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
660
+ "Columbia", "create_date": "10/05/2012", "display_override": "South Carolina
661
+ Education Oversight Committee, Columbia SC", "id": "232193", "logo_url":
662
+ "/static/images/organization/default_logo.png", "name": "South Carolina Education
663
+ Oversight Committee", "rank": 0, "resource_uri": "/api/v1/organization/232193/",
664
+ "state": "South Carolina", "update_date": "2012-10-05T07:11:39.959172", "url":
665
+ "/organization/232193", "video_count": 7}, "original_keywords": "", "post_to_edmodo":
666
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
667
+ null, "resource_uri": "/api/v1/video/549973/", "short_url": "http://bit.ly/113q01w",
668
+ "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",
669
+ "thumbnails": 1, "thumbnails_url": "/api/v1/video/d4aa50b8243f41da85ee/thumbnails/",
670
+ "thumbs_up": 0, "title": "New Carolina''s The Future of Education in South
671
+ Carolina: Hunter Bliss, Lexington High School Senior and Travis Allen, Founder
672
+ and CEO, iSchool Initiative", "update_date": "2013-05-03T15:16:10.646170",
673
+ "url": "/video/d4aa50b8243f41da85ee/New Carolina''s The Future of Education
674
+ in South Carolina: Hunter Bliss, Lexington High School Senior and Travis Allen,
675
+ Founder and CEO, iSchool Initiative", "username": "eocacct", "view_count":
676
+ 363, "vkey": "d4aa50b8243f41da85ee"}, {"allow_embed": true, "allow_rating":
677
+ true, "channel_url": "/channel/Ladue Horton Watkins HS", "create_date": "September
678
+ 16, 2013", "create_user": "/api/v1/profile/4262/", "description": "Educators
679
+ all over the world are allowing their students the opportunity to create videos
680
+ to show comprehension of their subject matter. The ease and accessibility
681
+ of mobile devices has allowed for this educational paradigm shift. In this
682
+ video, teachers from a variety of subjects offer their advice to other educators
683
+ on why to incorporate video into the classroom.", "duration": null, "edmodo_group":
684
+ 0, "exclude_from_channel": null, "external_encoded_media_id": "28044970",
685
+ "external_media_id": "28044905", "external_provider_name": "heywatch", "id":
686
+ "592308", "is_featured": false, "is_locked": false, "is_organization_approved":
687
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/30/ad/55/42/1e/eb/30ad5542-1eeb-11e3-88da-001c23dcdfb5_07.jpg",
688
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
689
+ "30ad5542-1eeb-11e3-88da-001c23dcdfb5", "meta_info": "", "moderation_status":
690
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
691
+ "Saint Louis", "create_date": "07/26/2008", "display_override": "Ladue Horton
692
+ Watkins High School, Saint Louis MO", "id": "166862", "logo_url": "/static/images/organization/default_logo.png",
693
+ "name": "Ladue Horton Watkins High School", "rank": 0, "resource_uri": "/api/v1/organization/166862/",
694
+ "state": "Missouri", "update_date": "2012-01-25T13:23:09.194303", "url": "/organization/166862",
695
+ "video_count": 1675}, "original_keywords": "Video,Video in the Classroom,Educators,
696
+ Advice,video,classroom,education,digital,media,mobile,device,21st Century
697
+ skills,Lesson,Teacher,Student", "post_to_edmodo": null, "rank": 0.490792,
698
+ "rating_count": null, "rating_down": null, "rating_up": null, "resource_uri":
699
+ "/api/v1/video/592308/", "short_url": "http://bit.ly/150vGWd", "show_on_homepage":
700
+ 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",
701
+ "thumbnails": 9, "thumbnails_url": "/api/v1/video/53aee87628744f728d7b/thumbnails/",
702
+ "thumbs_up": 0, "title": "Video in the Classroom - Educators Advice", "update_date":
703
+ "2013-09-16T09:25:59.399071", "url": "/video/53aee87628744f728d7b/Video in
704
+ the Classroom - Educators Advice", "username": "dgoble", "view_count": 140,
705
+ "vkey": "53aee87628744f728d7b"}, {"allow_embed": true, "allow_rating": true,
706
+ "channel_url": "/channel/Ladue Horton Watkins HS", "create_date": "September
707
+ 16, 2013", "create_user": "/api/v1/profile/4262/", "description": "Educators
708
+ all over the world are allowing their students the opportunity to create videos
709
+ to show comprehension of their subject matter. The ease and accessibility
710
+ of mobile devices has allowed for this educational paradigm shift. \r\n\r\nIn
711
+ this video, teachers from a variety of subjects offer their success stories
712
+ to other educators on why to incorporate video into the classroom.", "duration":
713
+ null, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
714
+ "28045380", "external_media_id": "28045246", "external_provider_name": "heywatch",
715
+ "id": "592316", "is_featured": false, "is_locked": false, "is_organization_approved":
716
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/3d/e8/72/40/1e/ec/3de87240-1eec-11e3-adbe-001c23db86b0_01.jpg",
717
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
718
+ "3de87240-1eec-11e3-adbe-001c23db86b0", "meta_info": "", "moderation_status":
719
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
720
+ "Saint Louis", "create_date": "07/26/2008", "display_override": "Ladue Horton
721
+ Watkins High School, Saint Louis MO", "id": "166862", "logo_url": "/static/images/organization/default_logo.png",
722
+ "name": "Ladue Horton Watkins High School", "rank": 0, "resource_uri": "/api/v1/organization/166862/",
723
+ "state": "Missouri", "update_date": "2012-01-25T13:23:09.194303", "url": "/organization/166862",
724
+ "video_count": 1675}, "original_keywords": "Video in the Classroom, educators,
725
+ success, stories, video,classroom,education,digital,media,mobile,device,21st
726
+ Century skills,Lesson,Teacher,Student", "post_to_edmodo": null, "rank": 0.490792,
727
+ "rating_count": null, "rating_down": null, "rating_up": null, "resource_uri":
728
+ "/api/v1/video/592316/", "short_url": "http://bit.ly/150xezt", "show_on_homepage":
729
+ 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",
730
+ "thumbnails": 36, "thumbnails_url": "/api/v1/video/7806a64525bc4a238873/thumbnails/",
731
+ "thumbs_up": 0, "title": "Video in the Classroom - Educator Success Stories
732
+ ", "update_date": "2013-09-16T09:36:46.117544", "url": "/video/7806a64525bc4a238873/Video
733
+ in the Classroom - Educator Success Stories ", "username": "dgoble", "view_count":
734
+ 300, "vkey": "7806a64525bc4a238873"}, {"allow_embed": true, "allow_rating":
735
+ true, "channel_url": "/channel/Ladue Horton Watkins HS", "create_date": "September
736
+ 16, 2013", "create_user": "/api/v1/profile/4262/", "description": "Educators
737
+ all over the world are allowing their students the opportunity to create videos
738
+ to show comprehension of their subject matter. The ease and accessibility
739
+ of mobile devices has allowed for this educational paradigm shift. \r\n\r\nIn
740
+ this video, teachers from a variety of subjects offer their experience using
741
+ student videos to other educators on why to incorporate video into the classroom.",
742
+ "duration": null, "edmodo_group": 0, "exclude_from_channel": null, "external_encoded_media_id":
743
+ "28045477", "external_media_id": "28045409", "external_provider_name": "heywatch",
744
+ "id": "592327", "is_featured": false, "is_locked": false, "is_organization_approved":
745
+ true, "large_image_url": "http://schooltube_encoded.s3.amazonaws.com/thumb/94/7b/e6/ae/1e/ed/947be6ae-1eed-11e3-9ff5-001c23d1f545_01.jpg",
746
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
747
+ "947be6ae-1eed-11e3-9ff5-001c23d1f545", "meta_info": "", "moderation_status":
748
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
749
+ "Saint Louis", "create_date": "07/26/2008", "display_override": "Ladue Horton
750
+ Watkins High School, Saint Louis MO", "id": "166862", "logo_url": "/static/images/organization/default_logo.png",
751
+ "name": "Ladue Horton Watkins High School", "rank": 0, "resource_uri": "/api/v1/organization/166862/",
752
+ "state": "Missouri", "update_date": "2012-01-25T13:23:09.194303", "url": "/organization/166862",
753
+ "video_count": 1675}, "original_keywords": "Video in the Classroom, experience,advice,video,classroom,education,digital,media,mobile,device,21st
754
+ Century skills,Lesson,Teacher,Student,experience,educators", "post_to_edmodo":
755
+ null, "rank": 0.490792, "rating_count": null, "rating_down": null, "rating_up":
756
+ null, "resource_uri": "/api/v1/video/592327/", "short_url": "http://bit.ly/150xvSY",
757
+ "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",
758
+ "thumbnails": 9, "thumbnails_url": "/api/v1/video/86f9d1ada03940d2a4a3/thumbnails/",
759
+ "thumbs_up": 0, "title": "Video in the Classroom - Educators Experience",
760
+ "update_date": "2013-09-16T09:38:45.853892", "url": "/video/86f9d1ada03940d2a4a3/Video
761
+ in the Classroom - Educators Experience", "username": "dgoble", "view_count":
762
+ 196, "vkey": "86f9d1ada03940d2a4a3"}, {"allow_embed": true, "allow_rating":
763
+ true, "channel_url": "/channel/Army Education", "create_date": "October 06,
764
+ 2010", "create_user": "/api/v1/profile/123565/", "description": "Army education
765
+ podcast highlighting education partnerships", "duration": 127, "edmodo_group":
766
+ 0, "exclude_from_channel": null, "external_encoded_media_id": null, "external_media_id":
767
+ null, "external_provider_name": null, "id": "121905", "is_featured": false,
768
+ "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",
769
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
770
+ "fb7e7b89-6d91-2e9d-fcb2-c16d991ef740", "meta_info": "", "moderation_status":
771
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
772
+ "Fort Knox", "create_date": "09/10/2010", "display_override": "U.S. Army Marketing
773
+ and Research Group, Fort Knox KY", "id": "222648", "logo_url": "/static/images/organization/default_logo.png",
774
+ "name": "U.S. Army Marketing and Research Group", "rank": 0, "resource_uri":
775
+ "/api/v1/organization/222648/", "state": "Kentucky", "update_date": "2013-06-28T10:10:26.245468",
776
+ "url": "/organization/222648", "video_count": 59}, "original_keywords": "Army
777
+ education", "post_to_edmodo": null, "rank": 0.490635, "rating_count": null,
778
+ "rating_down": null, "rating_up": null, "resource_uri": "/api/v1/video/121905/",
779
+ "short_url": "http://bit.ly/nf2ykr", "show_on_homepage": true, "thumbnail_status":
780
+ null, "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/fb/7e/7b/89/6d/91/fb7e7b89-6d91-2e9d-fcb2-c16d991ef740.jpg",
781
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/1f251874659e680e491b/thumbnails/",
782
+ "thumbs_up": 0, "title": "Army Education Podcast - Education Partners", "update_date":
783
+ "2012-04-25T04:52:33.784062", "url": "/video/1f251874659e680e491b/Army Education
784
+ Podcast - Education Partners", "username": "armyed", "view_count": 955, "vkey":
785
+ "1f251874659e680e491b"}, {"allow_embed": true, "allow_rating": true, "channel_url":
786
+ "/channels/", "create_date": "October 30, 2008", "create_user": "/api/v1/profile/48949/",
787
+ "description": "Futurist education", "duration": 2, "edmodo_group": 0, "exclude_from_channel":
788
+ null, "external_encoded_media_id": null, "external_media_id": null, "external_provider_name":
789
+ null, "id": "13261", "is_featured": false, "is_locked": false, "is_organization_approved":
790
+ true, "large_image_url": "http://schooltube-thumbnails.s3.amazonaws.com/f2/89/db/7a/b2/ea/f289db7a-b2ea-3042-17dc-154c8ceb60ca_lg.jpg",
791
+ "mcore_media_id": null, "mcore_payload": "", "mcore_slug": null, "media_hash":
792
+ "f289db7a-b2ea-3042-17dc-154c8ceb60ca", "meta_info": "", "moderation_status":
793
+ "Approved", "organization": {"banner": null, "banner_link": null, "city":
794
+ "Fellsmere", "create_date": "10/24/2008", "display_override": "Indian River
795
+ State College, Fellsmere FL", "id": "217551", "logo_url": "/static/images/organization/default_logo.png",
796
+ "name": "Indian River State College", "rank": 0, "resource_uri": "/api/v1/organization/217551/",
797
+ "state": "Florida", "update_date": "2008-10-24T10:06:22.163000", "url": "/organization/217551",
798
+ "video_count": 3}, "original_keywords": "Education, Future, world Education,
799
+ Around the world, building education, Commercial and Fillmaker,Technical",
800
+ "post_to_edmodo": null, "rank": 0.488258, "rating_count": null, "rating_down":
801
+ null, "rating_up": null, "resource_uri": "/api/v1/video/13261/", "short_url":
802
+ "http://bit.ly/peYRdI", "show_on_homepage": true, "thumbnail_status": null,
803
+ "thumbnail_url": "http://schooltube-thumbnails.s3.amazonaws.com/f2/89/db/7a/b2/ea/f289db7a-b2ea-3042-17dc-154c8ceb60ca.jpg",
804
+ "thumbnails": 0, "thumbnails_url": "/api/v1/video/0aadbf3ac2664d6ca12a/thumbnails/",
805
+ "thumbs_up": 0, "title": "Education Around The world", "update_date": "2012-04-25T18:17:35.912996",
806
+ "url": "/video/0aadbf3ac2664d6ca12a/Education Around The world", "username":
807
+ "elyprod@yahoo.fr", "view_count": 4638, "vkey": "0aadbf3ac2664d6ca12a"}]}'
808
+ http_version:
809
+ recorded_at: Mon, 02 Dec 2013 20:22:18 GMT
810
+ recorded_with: VCR 2.7.0