ruby-oembed 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 16a76141eed91851d0bdfe267758b3106d015f1a
4
- data.tar.gz: 3ae8e77aca6fa58ecf27f2bd71847608e91fa49f
3
+ metadata.gz: 960a85979ab811d1b55b5c438904514394cdb5e3
4
+ data.tar.gz: 71a9ddd06136083c2110146baaa871814881e9ea
5
5
  SHA512:
6
- metadata.gz: 8a53daf29ffb77dc30ab20f6a9bbb1c6b1b0e14d7cf183c286e88d1e8abe0362120f5955c5d2fe501a1fdc29cebf8826908c031cecba09855a06a4e8602d7956
7
- data.tar.gz: c4d6a7b29f43adb6cd9fc71c4f62a43ccaa74008fe1d402ae0bf76bf62b98e5607aa38da1ac40e475d4539bc3aaf461950a9f9a32da2a389828669d42422bd2f
6
+ metadata.gz: 7d159512d25859f5a0fa235ea0b56716314faaf27dc24cd4c92d2be300787e3425ac2d80c138004c68b9b27dc6bfb52b226fbab27611d5ecc863c7c4e67c1afc
7
+ data.tar.gz: dfd126585f31062eb35ab508cc0ed356b02273671ae459cda6c439d4c879ccf5089159e56d16925b8cd75ded9e03adf8db98e2c9951d8b6037107689b782907f
data/.travis.yml CHANGED
@@ -8,5 +8,5 @@ rvm:
8
8
  - 1.9.3
9
9
  - 2.0.0
10
10
  - 2.1.8
11
- - 2.2.4
12
- - 2.3.0
11
+ - 2.3.3
12
+ - 2.4.1
data/CHANGELOG.rdoc CHANGED
@@ -1,8 +1,14 @@
1
1
  = CHANGELOG
2
2
 
3
- == Unreleased (0.11.1)
3
+ == Unreleased (0.12.1)
4
4
 
5
5
 
6
+ == 0.12.0 - 26 March 2017
7
+
8
+ * Add a Noembed aggregator; Issue #32 (github.com/evaryont and Arnaud Leymet)
9
+ * Updated the list of {Embedly}[http://embed.ly] URL schemes.
10
+ * Remove the `rake oembed:update_oohembed` task.
11
+
6
12
  == 0.11.0 - 26 March 2017
7
13
 
8
14
  * Add built-in Speaker Deck provider; Issue #67 (Camille Roux)
data/README.md CHANGED
@@ -15,12 +15,13 @@ An oEmbed consumer library written in Ruby, letting you easily get embeddable HT
15
15
 
16
16
  # Get Started
17
17
 
18
- ## Providers
18
+ ## Built-in Providers
19
19
 
20
- Get information about a URL via an OEmbed::Provider. This library comes with many Providers built right in, to make your life easy.
20
+ The easiest way to use this library is to make use of the built-in providers.
21
21
 
22
22
  ```ruby
23
- resource = OEmbed::Providers::Youtube.get("http://www.youtube.com/watch?v=2BYXBC8WQ5k")
23
+ OEmbed::Providers.register_all
24
+ resource = OEmbed::Providers.get('http://www.youtube.com/watch?v=2BYXBC8WQ5k')
24
25
  resource.video? #=> true
25
26
  resource.thumbnail_url #=> "http://i3.ytimg.com/vi/2BYXBC8WQ5k/hqdefault.jpg"
26
27
  resource.html #=> <<-HTML
@@ -33,30 +34,41 @@ resource.html #=> <<-HTML
33
34
  HTML
34
35
  ```
35
36
 
37
+ ## Custom Providers
38
+
36
39
  If you'd like to use a provider that isn't included in the library, it's easy to create one. Just provide the oEmbed API endpoint and URL scheme(s).
37
40
 
38
41
  ```ruby
39
42
  my_provider = OEmbed::Provider.new("http://my.cool-service.com/api/oembed_endpoint.{format}")
40
43
  my_provider << "http://*.cool-service.com/image/*"
41
44
  my_provider << "http://*.cool-service.com/video/*"
45
+ ```
46
+
47
+ You can then use your new custom provider *or* you can register it along with the rest of the built-in providers.
48
+
49
+ ```ruby
42
50
  resource = my_provider.get("http://a.cool-service.com/video/1") #=> OEmbed::Response
43
51
  resource.provider.name #=> "My Cool Service"
52
+
53
+ OEmbed::Providers.register(my_provider)
54
+ resource = OEmbed::Providers.get("http://a.cool-service.com/video/2") #=> OEmbed::Response
44
55
  ```
45
56
 
46
- To use multiple Providers at once, simply register them.
57
+ ## Fallback Providers
58
+
59
+ Last but not least, ruby-oembed supports [Noembed](https://noembed.com/), [Embedly](http://embed.ly), provider discovery. The first two are provider aggregators. Each supports a wide array of websites ranging from [Amazon.com](http://www.amazon.com) to [xkcd](http://www.xkcd.com). The later is part of the oEmbed specification that allows websites to advertise support for the oEmbed protocol.
47
60
 
48
61
  ```ruby
49
- OEmbed::Providers.register(OEmbed::Providers::Youtube, my_provider)
50
- resource = OEmbed::Providers.get("http://www.youtube.com/watch?v=2BYXBC8WQ5k") #=> OEmbed::Response
51
- resource.type #=> "video"
52
- resource.provider.name #=> "Youtube"
62
+ OEmbed::Providers.register_fallback(
63
+ OEmbed::ProviderDiscovery,
64
+ OEmbed::Providers::Noembed
65
+ )
66
+ OEmbed::Providers.get('https://www.xkcd.com/802/') #=> OEmbed::Response
53
67
  ```
54
68
 
55
- Last but not least, ruby-oembed supports both [oohEmbed](http://oohembed.com) and [Embedly](http://embed.ly). These services are provider aggregators. Each supports a wide array of websites ranging from [Amazon.com](http://www.amazon.com) to [xkcd](http://www.xkcd.com).
56
-
57
69
  ## Formatters
58
70
 
59
- This library works wonderfully on its own, but can get a speed boost by using 3rd party libraries to parse oEmbed data. To use a 3rd party Formatter, just be sure to require the library _before_ ruby-oembed.
71
+ This library works wonderfully on its own, but can get a speed boost by using 3rd party libraries to parse oEmbed data. To use a 3rd party Formatter, just be sure to require the library _before_ ruby-oembed (or include them in your Gemfile before ruby-oembed).
60
72
 
61
73
  ```ruby
62
74
  require 'json'
@@ -64,7 +64,7 @@ module OEmbed
64
64
  # will be called (in order) with the URL.
65
65
  #
66
66
  # A common example:
67
- # OEmbed::Providers.register_fallback(OEmbed::ProviderDiscovery, OEmbed::Providers::OohEmbed)
67
+ # OEmbed::Providers.register_fallback(OEmbed::ProviderDiscovery, OEmbed::Providers::Noembed)
68
68
  def register_fallback(*providers)
69
69
  @@fallback += providers
70
70
  end
@@ -410,6 +410,17 @@ module OEmbed
410
410
  OohEmbed << %r{http://yfrog.(com|ru|com.tr|it|fr|co.il|co.uk|com.pl|pl|eu|us)/(.*?)} # image & video hosting
411
411
  OohEmbed << "http://*.youtube.com/watch*"
412
412
 
413
+ # Provider for noembed.com, which is a provider aggregator. See
414
+ # OEmbed::Providers::Noembed.urls for a full list of supported url schemas.
415
+ # https://noembed.com/#supported-sites
416
+ Noembed = OEmbed::Provider.new("https://noembed.com/embed")
417
+ # Add all known URL regexps for Noembed.
418
+ # To update this list run `rake oembed:update_noembed`
419
+ YAML.load_file(File.join(File.dirname(__FILE__), "/providers/noembed_urls.yml")).each do |url|
420
+ Noembed << Regexp.new(url)
421
+ end
422
+ add_official_provider(Noembed, :aggregators)
423
+
413
424
  # Provider for Embedly.com, which is a provider aggregator. See
414
425
  # OEmbed::Providers::Embedly.urls for a full list of supported url schemas.
415
426
  # http://embed.ly/docs/endpoints/1/oembed
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  - http://*.23video.com/*
3
+ - http://*.alpacamaps.com/*
3
4
  - http://*.bandcamp.com/
4
5
  - http://*.bandcamp.com/album/*
5
6
  - http://*.bandcamp.com/track/*
@@ -8,7 +9,8 @@
8
9
  - http://*.bubb.li/*
9
10
  - http://*.buzzsprout.com/*
10
11
  - http://*.cartodb.com/*/*
11
- - http://*.crocodoc.com/*
12
+ - http://*.cincopa.com/watch/*
13
+ - http://*.cloud.panopto.eu/*
12
14
  - http://*.crowdmap.com/map/*
13
15
  - http://*.crowdmap.com/post/*
14
16
  - http://*.dailymotion.com/*/video/*
@@ -34,20 +36,28 @@
34
36
  - http://*.linkedin.com/pub/*
35
37
  - http://*.looplogic.com/*
36
38
  - http://*.polarb.com/*
39
+ - http://*.razoo.com/*
37
40
  - http://*.silk.co/explore/*
38
41
  - http://*.slideshare.net/*/*
39
42
  - http://*.smugmug.com/*
40
43
  - http://*.smugmug.com/*#*
44
+ - http://*.sparemin.com/myrecording
45
+ - http://*.sparemin.com/recording-*
46
+ - http://*.staging.panopto.com/*
41
47
  - http://*.status.net/notice/*
42
48
  - http://*.tinypic.com/*.jpg
43
49
  - http://*.tinypic.com/*.png
44
50
  - http://*.tochka.net/*
45
51
  - http://*.tumblr.com/post/*
52
+ - http://*.twentythree.net/*
53
+ - http://*.twitch.tv/*
46
54
  - http://*.twitrpix.com/*
47
55
  - http://*.univision.com/*/video/*
48
56
  - http://*.uservoice.com/*/suggestions/*
49
57
  - http://*.vidcaster.com/*
58
+ - http://*.videomarketingplatform.co/*
50
59
  - http://*.vzaar.me/*
60
+ - http://*.walkinto.in/*/*
51
61
  - http://*.web.tv/*
52
62
  - http://*.wi.st/*
53
63
  - http://*.wikipedia.org/wiki/*
@@ -66,11 +76,8 @@
66
76
  - http://*meetup.com/*
67
77
  - http://*nfb.ca/film/*
68
78
  - http://*revision3.com/*
69
- - http://*twitch.tv/*
70
- - http://*twitch.tv/*/b/*
71
79
  - http://*viddler.com/v/*
72
80
  - http://*vidyard.com/*
73
- - http://*yfrog.*/*
74
81
  - http://*youtube.com/watch*
75
82
  - http://23hq.com/*/photo/*
76
83
  - http://23video.com/*
@@ -78,10 +85,8 @@
78
85
  - http://4cook.net/recipe/*
79
86
  - http://4sq.com/*
80
87
  - http://59saniye.com/*
88
+ - http://60db.co/story/*
81
89
  - http://abcnews.com/*/video/*
82
- - http://abcnews.com/video/playerIndex*
83
- - http://abcnews.go.com/*/video/*
84
- - http://abcnews.go.com/video/playerIndex*
85
90
  - http://achewood.com/*
86
91
  - http://achewood.com/index.php*
87
92
  - http://alkislarlayasiyorum.com/*
@@ -174,16 +179,18 @@
174
179
  - http://answers.polldaddy.com/poll/*
175
180
  - http://api.lovelive.tv/v1/*
176
181
  - http://api.minoto-video.com/publishers/*/videos/*
177
- - http://api.shopstyle.com/action/apiVisitRetailer*
178
182
  - http://app.sliderocket.com/*
179
183
  - http://app.stghv.com/*
180
184
  - http://app.ustudio.com/embed/*/*
181
185
  - http://app.videocheckout.com/embed/*
182
186
  - http://app.wistia.com/embed/medias/*
187
+ - http://app.wizer.me/learn/*
188
+ - http://app.wizer.me/preview/*
183
189
  - http://arcg.is/*
184
190
  - http://askmen.com/video/*
185
191
  - http://asofterworld.com/*.jpg
186
192
  - http://audioboom.com/boos/*
193
+ - http://audioboom.com/posts/*
187
194
  - http://bale.io/*
188
195
  - http://bambuser.com/channel/*
189
196
  - http://bambuser.com/channel/*/broadcast/*
@@ -208,16 +215,21 @@
208
215
  - http://bunkrapp.com/*/*
209
216
  - http://buzzsprout.com/*
210
217
  - http://calameo.com/*
218
+ - http://campaign.theheartstringsproject.com/*
211
219
  - http://canalplus.fr/*
220
+ - http://cayke.co/*
212
221
  - http://cbsnews.com/video/watch/*
213
222
  - http://cdn.knightlab.com/libs/juxtapose/*
214
223
  - http://cdn.knightlab.com/libs/timeline3/*
224
+ - http://chew.tv/*/*
215
225
  - http://chirb.it/*
226
+ - http://cincopa.com/~*
216
227
  - http://cl.ly/*
217
228
  - http://cl.ly/*/content
218
229
  - http://clippituser.tv/*
219
230
  - http://clipter.com/c/*
220
231
  - http://clyp.it/*
232
+ - http://cms.megaphone.fm/*
221
233
  - http://cnb.cx/*
222
234
  - http://cnbc.com/id/*/play/1/video/*
223
235
  - http://cnbc.com/id/*?*video*
@@ -227,19 +239,22 @@
227
239
  - http://codepicnic.com/bites/*
228
240
  - http://codepicnic.com/consoles/*
229
241
  - http://codeply.com/view/*
242
+ - http://codiva.io/p/*
230
243
  - http://collegehumor.com/video/*
231
244
  - http://collegehumor.com/video:*
232
245
  - http://confreaks.com/videos/*
233
246
  - http://confreaks.net/videos/*
234
247
  - http://content.newsbound.com/*/*
235
248
  - http://content.streamonecloud.net/embed/*
249
+ - http://contentupgrade.me/*
250
+ - http://cooler.tv/*
236
251
  - http://coub.com/embed/*
237
252
  - http://coub.com/view/*
238
- - http://crocodoc.com/*
239
253
  - http://crowdmap.com/map/*
240
254
  - http://crowdmap.com/post/*
241
255
  - http://d.pr/i/*
242
256
  - http://dashboard.minoto-video.com/main/video/details/*
257
+ - http://datawrapper.dwcdn.net/*
243
258
  - http://distrify.com/film/*
244
259
  - http://dnbradio.com/*
245
260
  - http://docs.com/*
@@ -249,11 +264,15 @@
249
264
  - http://dsc.discovery.com/videos/*
250
265
  - http://edition.cnn.com/video/*
251
266
  - http://edition.cnn.com/videos/*
267
+ - http://ellie-app.com/*/*
252
268
  - http://embed.imajize.com/*
269
+ - http://embed.kumu.io
270
+ - http://embed.kumu.io
253
271
  - http://embed.minoto-video.com/*
254
- - http://espn.go.com/*/story*
255
- - http://espn.go.com/video/clip*
272
+ - http://esplor.io/*
256
273
  - http://etsy.com/*
274
+ - http://exploratory.io/viz/*
275
+ - http://eyrie.io/*
257
276
  - http://fav.me/*
258
277
  - http://fb.com
259
278
  - http://fb.me/*
@@ -262,8 +281,7 @@
262
281
  - http://flic.kr/*
263
282
  - http://flowvella.com/s/*
264
283
  - http://fora.tv/*/*/*/*
265
- - http://formspring.me/*
266
- - http://formspring.me/*/q/*
284
+ - http://forge.gg/*
267
285
  - http://fotokritik.com/*/*
268
286
  - http://fotopedia.com/*/*
269
287
  - http://foursquare.com/*
@@ -274,8 +292,11 @@
274
292
  - http://frontback.me/p/*
275
293
  - http://funnyordie.com/m/*
276
294
  - http://funnyordie.com/videos/*
295
+ - http://futurism.com/images/*
296
+ - http://fwdeveryone.com/t/*
277
297
  - http://galeri.uludagsozluk.com/*
278
298
  - http://gametrailers.com/video*
299
+ - http://getclippy.co/p/*
279
300
  - http://gfycat.com/*
280
301
  - http://giflike.com/a/*
281
302
  - http://giphy.com/gifs/*
@@ -286,11 +307,15 @@
286
307
  - http://google.*/maps/*
287
308
  - http://google.com/profiles/*
288
309
  - http://gph.is/*
310
+ - http://graphcommons.com/graphs/*
311
+ - http://graphcommons.com/nodes/*
289
312
  - http://graphiq.com/w/*
290
313
  - http://grindtv.com/*/video/*
291
314
  - http://grooveshark.com/*
292
315
  - http://gty.im/*
293
316
  - http://guardian.co.uk/*/video/*/*/*/*
317
+ - http://hapyak.com/embed/*
318
+ - http://hardbound.co/*/*/*
294
319
  - http://health.discovery.com/videos/*
295
320
  - http://huffduffer.com/*/*
296
321
  - http://hulu.com/w/*
@@ -316,7 +341,6 @@
316
341
  - http://isnare.com/*
317
342
  - http://issuu.com/*/docs/*
318
343
  - http://it.youtube.com/*
319
- - http://itunes.apple.com/*
320
344
  - http://izlesene.com/video/*
321
345
  - http://jdsupra.com/legalnews/*
322
346
  - http://jibjab.com/view/*
@@ -325,6 +349,9 @@
325
349
  - http://jsfiddle.net/*
326
350
  - http://kastio.com/webcasts/*
327
351
  - http://khanacademy.org/*
352
+ - http://kidoju.com/*
353
+ - http://kit.com/*
354
+ - http://lcontacts.herokuapp.com/embed/button/*
328
355
  - http://link.brightcove.com/services/player/bcpid*
329
356
  - http://linkedin.com/company/*
330
357
  - http://linkedin.com/in/*
@@ -333,9 +360,9 @@
333
360
  - http://list.ly/list/*
334
361
  - http://live.huffingtonpost.com/r/segment/*/*
335
362
  - http://liveleak.com/view?*
336
- - http://lockerz.com/s/*
337
363
  - http://logotv.com/video/*
338
364
  - http://lonelyplanet.com/Clip.aspx?*
365
+ - http://loophouse.tv/l/*
339
366
  - http://lustich.de/videos/*
340
367
  - http://lynda.com/*
341
368
  - http://m.youtube.com/index*
@@ -345,6 +372,7 @@
345
372
  - http://maps.google.com/?*
346
373
  - http://maps.google.com/maps/ms?*
347
374
  - http://maps.google.com/maps?*
375
+ - http://mathembed.com/latex*
348
376
  - http://meadd.com/*
349
377
  - http://meadd.com/*/*
350
378
  - http://media.photobucket.com/image/*
@@ -355,9 +383,11 @@
355
383
  - http://megavisor.com/view/*
356
384
  - http://military.discovery.com/videos/*
357
385
  - http://minilogs.com/*
386
+ - http://minko.io/s/
358
387
  - http://mixergy.com/*
359
388
  - http://mlkshk.com/p/*
360
389
  - http://moby.to/*
390
+ - http://momento360.com/e/u/*
361
391
  - http://money.cnn.com/video/*
362
392
  - http://money.cnn.com/videos/*
363
393
  - http://mpora.com/videos/*
@@ -370,43 +400,53 @@
370
400
  - http://my.opera.com/*/albums/showpic.dml?album=*&picture=*
371
401
  - http://my.storygami.com/video/*
372
402
  - http://my.webboards.fr/*
403
+ - http://mybeweeg.com/w/*
373
404
  - http://myloc.me/*
374
405
  - http://mynet.com/video/*
375
406
  - http://nbcnews.com/*
376
407
  - http://new.livestream.com/*
377
- - http://nyti.ms/*
378
408
  - http://nzonscreen.com/title/*
409
+ - http://oddshot.tv/*
379
410
  - http://on.aol.com/playlist/*
380
411
  - http://on.aol.com/video/*
381
412
  - http://on.bubb.li/*
382
413
  - http://open.spotify.com/*
414
+ - http://orbitvu.com/001/*
383
415
  - http://oumy.com/v/*
384
416
  - http://ow.ly/i/*
385
417
  - http://pastebin.com/*
386
418
  - http://pastie.org/*
387
419
  - http://photozou.jp/photo/photo_only/*/*
388
420
  - http://photozou.jp/photo/show/*/*
389
- - http://pics.lockerz.com/s/*
390
421
  - http://pikchur.com/*
391
422
  - http://pixorial.com/watch/*
392
423
  - http://planetgreen.discovery.com/videos/*
393
424
  - http://play.minoto-video.com/*
425
+ - http://play.radiopublic.com/*
426
+ - http://play.soundsgood.co/*
394
427
  - http://play.spotify.com/*
428
+ - http://player.megaphone.fm/*
395
429
  - http://player.videopath.com/*
396
430
  - http://player.vimeo.com/*
431
+ - http://players.brightcove.net/*
397
432
  - http://plays.tv/video/*
398
433
  - http://plus.google.com/*
399
434
  - http://polarb.com/*
435
+ - http://polaroidswing.com/p/*
400
436
  - http://polldaddy.com/community/poll/*
401
437
  - http://polldaddy.com/poll/*
402
438
  - http://pollplug.com/poll/*
439
+ - http://pollshare.com/poll/*
403
440
  - http://polstir.com/*/*
404
441
  - http://ponga.com/*
442
+ - http://popchest.com/*/
405
443
  - http://portal.sliderocket.com/*
406
444
  - http://prezi.com/*/*
445
+ - http://producthunt.com/*
407
446
  - http://public.chartblocks.com/c/*
408
447
  - http://public.talely.com/*/*
409
448
  - http://publons.com/author/*
449
+ - http://qanda.co/q/*
410
450
  - http://qik.com/*
411
451
  - http://qik.com/video/*
412
452
  - http://qik.ly/*
@@ -429,6 +469,7 @@
429
469
  - http://reuters.com/video/*
430
470
  - http://rocketium.com/*
431
471
  - http://rogertalk.com/*
472
+ - http://runelm.io/*/*
432
473
  - http://s*.photobucket.com/albums/*
433
474
  - http://say.ly/*
434
475
  - http://science.discovery.com/videos/*
@@ -436,6 +477,7 @@
436
477
  - http://sciencestage.com/v/*.html
437
478
  - http://screencast.com/*/media/*
438
479
  - http://screencast.com/t/*
480
+ - http://screenhunters.com/*
439
481
  - http://screenr.com/*
440
482
  - http://scribblemaps.com/maps/view/*/*
441
483
  - http://scribd.com/doc/*
@@ -447,13 +489,14 @@
447
489
  - http://shoplocket.com/products/*
448
490
  - http://shorti.com/*
449
491
  - http://showme.com/sh/*
492
+ - http://sidewire.com/*/*/*
450
493
  - http://siteanalytics.compete.com/*
451
494
  - http://skip.st/one/*
452
495
  - http://skitch.com/*/*/*
453
496
  - http://sliderocket.com/*
454
497
  - http://slidesha.re/*
455
498
  - http://slidr.io/*/*
456
- - http://snappytv.com/*
499
+ - http://snappd\.tv/*
457
500
  - http://snd.sc/*
458
501
  - http://snotr.com/video/*
459
502
  - http://socialcam.com/v/*
@@ -463,6 +506,8 @@
463
506
  - http://soundcloud.com/*/*
464
507
  - http://soundcloud.com/*/sets/*
465
508
  - http://soundcloud.com/groups/*
509
+ - http://spaces.archilogic.com/3d/*
510
+ - http://spaces.archilogic.com/model/*
466
511
  - http://speakerdeck.com/*/*
467
512
  - http://spiegel.de/video/*
468
513
  - http://spoti.fi/*
@@ -471,12 +516,17 @@
471
516
  - http://stackshare.io/*
472
517
  - http://stepic.org/*
473
518
  - http://storify.com/*/*
519
+ - http://storribook.com/articles/view/*/*
520
+ - http://storygami.com/v/*
474
521
  - http://streamable.com/*
475
522
  - http://streamio.com/api/v1/*
476
523
  - http://streetfire.net/video/*.htm*
524
+ - http://superstack.io/v/*
477
525
  - http://tagmotion.com/tree/*
478
526
  - http://talkshow.im/show/*
527
+ - http://tapewrite.com/*
479
528
  - http://telly.com/*
529
+ - http://tenor.co/*
480
530
  - http://thecolbertreport.cc.com/videos/*
481
531
  - http://thedailyshow.cc.com/videos/*
482
532
  - http://theguardian.com/*/video/*/*/*/*
@@ -486,7 +536,6 @@
486
536
  - http://tinypic.com/player.php*
487
537
  - http://tinypic.com/r/*/*
488
538
  - http://tinypic.com/view.php*
489
- - http://tl.gd/*
490
539
  - http://tlc.discovery.com/videos/*
491
540
  - http://tochka.net/*
492
541
  - http://today.msnbc.msn.com/id/*/ns/*
@@ -496,17 +545,16 @@
496
545
  - http://tumblr.com/*
497
546
  - http://tun.in/*
498
547
  - http://tunein.com/*
499
- - http://twitgoo.com/*
500
- - http://twitlonger.com/show/*
501
- - http://twitpic.com/*
502
- - http://twitpic.com/photos/*
548
+ - http://twitch.tv/*
503
549
  - http://twitrpix.com/*
504
550
  - http://uploads.knightlab.com/storymapjs/*/index.html
551
+ - http://upscri.be/*
505
552
  - http://ustre.am/*
506
553
  - http://v.embedly.com/*
507
554
  - http://v.youku.com/v_playlist/*
508
555
  - http://v.youku.com/v_show/*
509
556
  - http://veoh.com/watch/*
557
+ - http://verse.com/stories/*
510
558
  - http://vibi.com/videocard/*
511
559
  - http://vice.com/*
512
560
  - http://vid.me/*
@@ -516,7 +564,6 @@
516
564
  - http://video.foxbusiness.com/v/*
517
565
  - http://video.foxnews.com/v/*
518
566
  - http://video.google.com/videoplay?*
519
- - http://video.nytimes.com/video/*
520
567
  - http://video.pbs.org/video/*
521
568
  - http://video.uludagsozluk.com/*
522
569
  - http://video214.com/play/*
@@ -526,18 +573,22 @@
526
573
  - http://videos.nymag.com/*
527
574
  - http://vids.myspace.com/index.cfm?fuseaction=vids.individual&videoid*
528
575
  - http://view.stacker.cc/*
576
+ - http://vilynx.com/video/*
529
577
  - http://vimeo.com/*
530
578
  - http://vimeo.com/groups/*/videos/*
531
579
  - http://vimeo.com/m/#/*
532
580
  - http://vine.co/v/*
533
581
  - http://vizamp.com/player/*
534
582
  - http://vol.at/video/*
583
+ - http://vr3d.vn/*
584
+ - http://vrbfoto.com/f/*
535
585
  - http://vrchive.com/*
536
586
  - http://vube.com/*/*
537
587
  - http://vzaar.com/videos/*
538
588
  - http://vzaar.me/*
539
589
  - http://vzaar.tv/*
540
590
  - http://w.graphiq.com/w/*
591
+ - http://walkinto.in/*/*
541
592
  - http://washingtonpost.com/wp-dyn/*/video/*/*/*/*
542
593
  - http://weavly.com/watch/*
543
594
  - http://web.tv/*
@@ -547,6 +598,7 @@
547
598
  - http://wi.st/*
548
599
  - http://wirewax.com/*
549
600
  - http://wistia.com/*
601
+ - http://with.in/watch/*
550
602
  - http://wordpress.tv/*/*/*/*/
551
603
  - http://worldstarhiphop.com/videos/video*.php?v=*
552
604
  - http://www.23hq.com/*/photo/*
@@ -556,6 +608,7 @@
556
608
  - http://www.alkislarlayasiyorum.com/*
557
609
  - http://www.allego.com/*
558
610
  - http://www.alphahat.com/view/*
611
+ - http://www.altizure.com/project/*
559
612
  - http://www.amazon.ca/*/ASIN/*
560
613
  - http://www.amazon.ca/*/dp/*
561
614
  - http://www.amazon.ca/gp/aw/d/*
@@ -651,6 +704,7 @@
651
704
  - http://www.calameo.com/*
652
705
  - http://www.canalplus.fr/*
653
706
  - http://www.candybank.com/*
707
+ - http://www.changelog.com/*
654
708
  - http://www.clikthrough.com/theater/video/*
655
709
  - http://www.clipfish.de/*/*/video/*
656
710
  - http://www.clippituser.tv/*
@@ -661,12 +715,12 @@
661
715
  - http://www.cnn.com/videos/*
662
716
  - http://www.cnn.com/videos/*
663
717
  - http://www.codeply.com/view/*
718
+ - http://www.codiva.io/p/*
664
719
  - http://www.colbertnation.com/full-episodes/*
665
720
  - http://www.colbertnation.com/the-colbert-report-collections/*
666
721
  - http://www.colbertnation.com/the-colbert-report-videos/*
667
722
  - http://www.collegehumor.com/video/*
668
723
  - http://www.collegehumor.com/video:*
669
- - http://www.comedycentral.com/videos/index.jhtml?*
670
724
  - http://www.confreaks.com/videos/*
671
725
  - http://www.confreaks.net/videos/*
672
726
  - http://www.dailymile.com/people/*/entries/*
@@ -683,17 +737,19 @@
683
737
  - http://www.facebook.com/video.php*
684
738
  - http://www.fiverr.com/*/*
685
739
  - http://www.flickr.com/photos/*
686
- - http://www.formspring.me/*
687
- - http://www.formspring.me/*/q/*
688
740
  - http://www.fotokritik.com/*/*
689
741
  - http://www.fotopedia.com/*/*
690
742
  - http://www.foursquare.com/*
691
743
  - http://www.freemusicarchive.org/curator/*
692
744
  - http://www.freemusicarchive.org/music/*
745
+ - http://www.frontback.me/p/*
693
746
  - http://www.funnyordie.com/m/*
694
747
  - http://www.funnyordie.com/videos/*
748
+ - http://www.fwdeveryone.com/t/*
695
749
  - http://www.gametrailers.com/video*
750
+ - http://www.genial.ly/*
696
751
  - http://www.gettyimages.com/detail/photo/*
752
+ - http://www.gettyimages.com/license/*
697
753
  - http://www.giflike.com/a/*
698
754
  - http://www.globalgiving.org/funds/*
699
755
  - http://www.globalgiving.org/microprojects/*
@@ -705,9 +761,11 @@
705
761
  - http://www.gogoyoko.com/song/*
706
762
  - http://www.google.*/maps/*
707
763
  - http://www.google.com/profiles/*
764
+ - http://www.gradba.se/v/*
708
765
  - http://www.graphiq.com/w/*
709
766
  - http://www.grindtv.com/*/video/*
710
767
  - http://www.guardian.co.uk/*/video/*/*/*/*
768
+ - http://www.hapyak.com/embed/*
711
769
  - http://www.hark.com/clips/*
712
770
  - http://www.howcast.com/videos/*
713
771
  - http://www.hulu.com/embed/*
@@ -740,13 +798,10 @@
740
798
  - http://www.lynda.com/*
741
799
  - http://www.magisto.com/*
742
800
  - http://www.maphubs.com/user/*/map/*
801
+ - http://www.maprosoft.com/app/map*
802
+ - http://www.maven.video/*
743
803
  - http://www.medibang.com/sv/*
744
- - http://www.meinvz.net/*
745
- - http://www.meinvz.net/Gadgets/Info/*
746
- - http://www.meinvz.net/Gadgets/Install/*
747
- - http://www.meinvz.net/Groups/Overview/*
748
- - http://www.meinvz.net/Profile/*
749
- - http://www.meinvz.net/l/*
804
+ - http://www.megafono.io/*
750
805
  - http://www.metacafe.com/w/*
751
806
  - http://www.metacafe.com/watch/*
752
807
  - http://www.metacdn.com/r/c/*/*
@@ -754,6 +809,7 @@
754
809
  - http://www.minilogs.com/*
755
810
  - http://www.mixcloud.com/*/*/
756
811
  - http://www.mobypicture.com/user/*/view/*
812
+ - http://www.moviemogul.io/*
757
813
  - http://www.mpora.com/videos/*
758
814
  - http://www.msnbc.msn.com/*/watch/*
759
815
  - http://www.msnbc.msn.com/id/*/ns/*
@@ -768,15 +824,17 @@
768
824
  - http://www.npr.org/*/*/*/*/*/*
769
825
  - http://www.npr.org/*/*/*/*/*/*/*
770
826
  - http://www.npr.org/templates/story/story.php*
771
- - http://www.nytimes.com/video/*/*
772
827
  - http://www.nzonscreen.com/title/*
828
+ - http://www.oddshot.tv/*
773
829
  - http://www.oumy.com/v/*
774
830
  - http://www.overstream.net/view.php?oid=*
831
+ - http://www.pastery.net/*
775
832
  - http://www.pastie.org/*
776
833
  - http://www.pixorial.com/watch/*
777
834
  - http://www.polleverywhere.com/free_text_polls/*
778
835
  - http://www.polleverywhere.com/multiple_choice_polls/*
779
836
  - http://www.polleverywhere.com/polls/*
837
+ - http://www.popchest.com/*/
780
838
  - http://www.publons.com/author/*
781
839
  - http://www.quantcast.com/*
782
840
  - http://www.quantcast.com/wd:*
@@ -785,7 +843,7 @@
785
843
  - http://www.questionablecontent.net/view.php*
786
844
  - http://www.quora.com/*/answer/*
787
845
  - http://www.qwantz.com/index.php?comic=*
788
- - http://www.qwiki.com/q/*
846
+ - http://www.qzzr.com/quiz/*
789
847
  - http://www.radioreddit.com/?q=songs*
790
848
  - http://www.radioreddit.com/songs*
791
849
  - http://www.rdio.com/#/artist/*/album/*
@@ -800,12 +858,6 @@
800
858
  - http://www.saynow.com/playMsg.html*
801
859
  - http://www.saynow.com/playMsg.html*
802
860
  - http://www.schooltube.com/video/*/*
803
- - http://www.schuelervz.net/*
804
- - http://www.schuelervz.net/Gadgets/Info/*
805
- - http://www.schuelervz.net/Gadgets/Install/*
806
- - http://www.schuelervz.net/Groups/Overview/*
807
- - http://www.schuelervz.net/Profile/*
808
- - http://www.schuelervz.net/l/*
809
861
  - http://www.sciencestage.com/a/*.html
810
862
  - http://www.sciencestage.com/v/*.html
811
863
  - http://www.scrapblog.com/viewer/viewer.aspx*
@@ -814,17 +866,15 @@
814
866
  - http://www.scribblemaps.com/maps/view/*/*
815
867
  - http://www.scribd.com/doc/*
816
868
  - http://www.scribd.com/mobile/documents/*
817
- - http://www.shopstyle.com/action/apiVisitRetailer*
818
- - http://www.shopstyle.com/action/viewLook*
819
- - http://www.shopstyle.com/browse*
820
869
  - http://www.shorti.com/*
821
870
  - http://www.showme.com/sh/*
871
+ - http://www.simplecast.com/s/*
822
872
  - http://www.sliderocket.com/*
823
873
  - http://www.slideshare.net/*/*
824
874
  - http://www.slideshare.net/mobile/*/*
825
- - http://www.snappytv.com/*
826
875
  - http://www.snotr.com/video/*
827
876
  - http://www.socialcam.com/v/*
877
+ - http://www.sociale.co/question/*
828
878
  - http://www.some.ly/*
829
879
  - http://www.someecards.com/*/*
830
880
  - http://www.spiegel.de/video/*
@@ -834,12 +884,6 @@
834
884
  - http://www.stackshare.io/*
835
885
  - http://www.streamio.com/api/v1/*
836
886
  - http://www.streetfire.net/video/*.htm*
837
- - http://www.studivz.net/*
838
- - http://www.studivz.net/Gadgets/Info/*
839
- - http://www.studivz.net/Gadgets/Install/*
840
- - http://www.studivz.net/Groups/Overview/*
841
- - http://www.studivz.net/Profile/*
842
- - http://www.studivz.net/l/*
843
887
  - http://www.tagmotion.com/tree/*
844
888
  - http://www.talkshow.im/show/*
845
889
  - http://www.ted.com/index.php/talks/*.html*
@@ -867,9 +911,6 @@
867
911
  - http://www.trailerspy.com/view_video.php*
868
912
  - http://www.trutv.com/video/*
869
913
  - http://www.tudou.com/programs/view/*
870
- - http://www.twitlonger.com/show/*
871
- - http://www.twitpic.com/*
872
- - http://www.twitpic.com/photos/*
873
914
  - http://www.ustream.tv/*
874
915
  - http://www.ustream.tv/channel/*
875
916
  - http://www.ustream.tv/recorded/*
@@ -903,6 +944,7 @@
903
944
  - http://www.xiami.com/song/*
904
945
  - http://www.xkcd.com/*
905
946
  - http://www.xtranormal.com/watch/*
947
+ - http://www.yelp.com/*&hrid=.+
906
948
  - http://www.youtube.com/attribution_link*
907
949
  - http://www.youtube.com/embed/*
908
950
  - http://www.youtube.com/gif*
@@ -930,43 +972,83 @@
930
972
  - http://zie.nl/video/*
931
973
  - https://*.23video.com/*
932
974
  - https://*.accredible.com/*
975
+ - https://*.alpacamaps.com/*
976
+ - https://*.bandcamp.com/
977
+ - https://*.bandcamp.com/album/*
978
+ - https://*.bandcamp.com/track/*
933
979
  - https://*.brainsonic.com/*
934
980
  - https://*.buzzsprout.com/*
935
981
  - https://*.cartodb.com/*/*
936
- - https://*.crocodoc.com/*
982
+ - https://*.cincopa.com/watch/*
983
+ - https://*.cloud.panopto.eu/*
937
984
  - https://*.force.com/presentation*
938
985
  - https://*.hosted.panopto.com/*
939
986
  - https://*.iplayerhd.com/player/video/*
940
987
  - https://*.iplayerhd.com/playerframe/*
941
988
  - https://*.kaltura.com/*
989
+ - https://*.linkedin.com/company/*
990
+ - https://*.linkedin.com/in/*
991
+ - https://*.linkedin.com/pub/*
942
992
  - https://*.looplogic.com/*
993
+ - https://*.razoo.com/*
943
994
  - https://*.silk.co/explore/*
995
+ - https://*.slideshare.net/*/*
996
+ - https://*.sparemin.com/myrecording
997
+ - https://*.sparemin.com/recording-*
998
+ - https://*.staging.panopto.com/*
944
999
  - https://*.stream.co.jp/apiservice/*
945
1000
  - https://*.stream.ne.jp/apiservice/*
1001
+ - https://*.tumblr.com/post/*
1002
+ - https://*.twentythree.net/*
1003
+ - https://*.twitch.tv/*
1004
+ - https://*.uplabs.com/posts/*
1005
+ - https://*.videomarketingplatform.co/*
1006
+ - https://*.vids.io/videos/*
1007
+ - https://*.walkinto.in/*/*
946
1008
  - https://*.wi.st/*
1009
+ - https://*.wikipedia.org/wiki/*
947
1010
  - https://*.wistia.com/*
948
1011
  - https://*.yahoo.com/movies/*
949
1012
  - https://*.youtube.com/playlist*
950
1013
  - https://*.youtube.com/v/*
1014
+ - https://*imgur.com/*
1015
+ - https://*meetup.com/*
951
1016
  - https://*vidyard.com/*
952
1017
  - https://*youtube.com/watch*
953
1018
  - https://23video.com/*
1019
+ - https://60db.co/story/*
1020
+ - https://abcnews.com/*/video/*
1021
+ - https://abcnews.com/video/playerIndex*
1022
+ - https://abcnews.com/video/playerIndex*
1023
+ - https://abcnews.go.com/*/video/*
1024
+ - https://abcnews.go.com/*/video/*
1025
+ - https://abcnews.go.com/video/playerIndex*
1026
+ - https://abcnews.go.com/video/playerIndex*
954
1027
  - https://accredible.com/*
955
1028
  - https://airtable.com/shr*
956
1029
  - https://allihoopa.com/s/*
957
1030
  - https://alpha.vrchive.com/*
1031
+ - https://alugha.com/videos/*
958
1032
  - https://anchor.fm/*
959
1033
  - https://animoto.com/play/*
960
1034
  - https://api.lovelive.tv/v1/*
1035
+ - https://api.peptone.io/v1/visualize/*
961
1036
  - https://app.devhv.com/oembed/*
962
1037
  - https://app.ilosvideos.com/view/*
963
1038
  - https://app.stghv.com/*
1039
+ - https://app.very.gd/p/*
964
1040
  - https://app.videocheckout.com/embed/*
965
1041
  - https://app.wistia.com/embed/medias/*
1042
+ - https://app.wizer.me/learn/*
1043
+ - https://app.wizer.me/preview/*
1044
+ - https://art19.com/shows/*/episodes/*
1045
+ - https://audioboom.com/posts/*
966
1046
  - https://blab.im/*
967
1047
  - https://bop.fm/a/*
968
1048
  - https://bop.fm/p/*
969
1049
  - https://bop.fm/s/*/*
1050
+ - https://boston.com/*video*
1051
+ - https://boston.com/video*
970
1052
  - https://braid.io/embed-tile/*
971
1053
  - https://brainshark.com/*/*
972
1054
  - https://brainsonic.com/*
@@ -974,46 +1056,85 @@
974
1056
  - https://bunkrapp.com/*/*
975
1057
  - https://buzzsprout.com/*
976
1058
  - https://calameo.com/*
1059
+ - https://campaign.theheartstringsproject.com/*
1060
+ - https://cayke.co/*
1061
+ - https://cbsnews.com/video/watch/*
977
1062
  - https://cdn.knightlab.com/libs/juxtapose/*
978
1063
  - https://cdn.knightlab.com/libs/timeline3/*
1064
+ - https://chew.tv/*/*
979
1065
  - https://chirb.it/*
980
- - https://clipmine.com/embed/*
981
- - https://clipmine.com/video/*
1066
+ - https://cincopa.com/~*
982
1067
  - https://clippituser.tv/*
983
1068
  - https://clipter.com/c/*
984
1069
  - https://cloudup.com/*
985
1070
  - https://clyp.it/*
1071
+ - https://cms.megaphone.fm/*
1072
+ - https://cnb.cx/*
1073
+ - https://cnbc.com/id/*/play/1/video/*
1074
+ - https://cnbc.com/id/*?*video*
1075
+ - https://cnn.it/*
986
1076
  - https://codepicnic.com/bites/*
987
1077
  - https://codepicnic.com/consoles/*
1078
+ - https://codiva.io/p/*
988
1079
  - https://content.newsbound.com/*/*
989
1080
  - https://content.streamonecloud.net/embed/*
1081
+ - https://contentupgrade.me/*
1082
+ - https://cooler.tv/*
990
1083
  - https://coub.com/embed/*
991
1084
  - https://coub.com/view/*
992
- - https://crocodoc.com/*
1085
+ - https://datawrapper.dwcdn.net/*
993
1086
  - https://docs.com/*
994
1087
  - https://dreambroker.com/channel/*
1088
+ - https://edition.cnn.com/video/*
1089
+ - https://edition.cnn.com/videos/*
1090
+ - https://ellie-app.com/*/*
1091
+ - https://esplor.io/*
995
1092
  - https://etsy.com/*
1093
+ - https://exploratory.io/viz/*
1094
+ - https://eyrie.io/*
996
1095
  - https://fb.me/*
1096
+ - https://flic.kr/*
997
1097
  - https://flowvella.com/s/*
1098
+ - https://forge.gg/*
998
1099
  - https://foursquare.com/*
999
1100
  - https://fr.peoplbrain.com/tutoriaux/*
1101
+ - https://fraim.com/player/*
1102
+ - https://frontback.me/p/*
1103
+ - https://futurism.com/images/*
1104
+ - https://fwdeveryone.com/t/*
1000
1105
  - https://ganxy.com/*
1106
+ - https://getclippy.co/p/*
1001
1107
  - https://gfycat.com/*
1002
1108
  - https://gifs.com/*
1003
1109
  - https://gifs.com/gif/*
1004
1110
  - https://gist.github.com/*
1005
1111
  - https://glitter.club/*
1006
1112
  - https://google.*/maps/*
1113
+ - https://graphcommons.com/graphs/*
1114
+ - https://graphcommons.com/nodes/*
1007
1115
  - https://graphiq.com/w/*
1008
- - https://hackpad.com/*
1116
+ - https://gty.im/*
1117
+ - https://guardian.co.uk/*/video/*/*/*/*
1118
+ - https://hapyak.com/embed/*
1119
+ - https://hardbound.co/*/*/*
1120
+ - https://huzza.io/*/live-stream/*
1009
1121
  - https://ifttt.com/recipes/*
1010
1122
  - https://iloopit.net/*/*
1011
1123
  - https://img.skitch.com/*
1012
1124
  - https://invis.io/*
1125
+ - https://ipushpull.com/pages/domains/*/pages/*
1013
1126
  - https://issuu.com/*/docs/*
1014
1127
  - https://it.youtube.com/*
1015
- - https://itunes.apple.com/*
1016
1128
  - https://khanacademy.org/*
1129
+ - https://kidoju.com/*
1130
+ - https://kit.com
1131
+ - https://lcontacts.herokuapp.com/embed/button/*
1132
+ - https://linkedin.com/company/*
1133
+ - https://linkedin.com/in/*
1134
+ - https://linkedin.com/in/*
1135
+ - https://linkedin.com/pub/*
1136
+ - https://live.huffingtonpost.com/r/segment/*/*
1137
+ - https://loophouse.tv/l/*
1017
1138
  - https://lynda.com/*
1018
1139
  - https://lynda.com/*
1019
1140
  - https://magisto.com/*
@@ -1021,132 +1142,266 @@
1021
1142
  - https://maps.google.com/?*
1022
1143
  - https://maps.google.com/maps/ms?*
1023
1144
  - https://maps.google.com/maps?*
1145
+ - https://maps.mysidewalk.com/*
1024
1146
  - https://marvelapp.com/*
1147
+ - https://mathembed.com/latex*
1025
1148
  - https://medibang.com/sv/*
1026
- - https://medium.com/*
1027
- - https://medium.com/*/*
1149
+ - https://meetu.ps/*
1028
1150
  - https://megavisor.com/en/view/*
1029
1151
  - https://megavisor.com/view/*
1152
+ - https://minko.io/s/
1030
1153
  - https://mix.office.com/MyMixes/Details/*
1031
1154
  - https://mix.office.com/embed/*
1032
1155
  - https://mix.office.com/mix/*
1033
1156
  - https://mix.office.com/watch/*
1034
1157
  - https://mixbit.com/v/*
1158
+ - https://momento360.com/e/u/*
1159
+ - https://money.cnn.com/video/*
1160
+ - https://money.cnn.com/videos/*
1161
+ - https://msn.foxsports.com/video*
1162
+ - https://msnbc.msn.com/*/watch/*
1163
+ - https://multimedia.foxsports.com/m/video/*/*
1164
+ - https://my.matterport.com/show/*
1035
1165
  - https://my.storygami.com/video/*
1036
1166
  - https://my.webboards.fr/*
1167
+ - https://mybeweeg.com/w/*
1168
+ - https://nbcnews.com/*
1037
1169
  - https://newhive.com/*/*
1038
1170
  - https://newhive.com/*/*
1171
+ - https://nom.com/post/*
1172
+ - https://oddshot.tv/*
1039
1173
  - https://open.spotify.com/*
1174
+ - https://orbitvu.com/001/*
1040
1175
  - https://oumy.com/v/*
1176
+ - https://pastebin.com/*
1041
1177
  - https://platform.vixyvideo.com/*
1042
1178
  - https://platform.vixyvideo.com/*
1179
+ - https://play.radiopublic.com/*
1180
+ - https://play.soundsgood.co/*
1043
1181
  - https://play.spotify.com/*
1182
+ - https://player.megaphone.fm/*
1044
1183
  - https://player.videopath.com/*
1045
1184
  - https://player.vimeo.com/*
1185
+ - https://players.brightcove.net/*
1046
1186
  - https://plays.tv/video/*
1047
1187
  - https://plus.google.com/*
1188
+ - https://polaroidswing.com/p/*
1048
1189
  - https://pollplug.com/poll/*
1049
- - https://portfolium.com/entry/*
1190
+ - https://pollshare.com/poll/*
1191
+ - https://popchest.com/*/
1192
+ - https://powered.by.rabbut.com/p/*
1193
+ - https://producthunt.com/*
1050
1194
  - https://projects.invisionapp.com/share/*
1051
1195
  - https://public.chartblocks.com/c/*
1052
1196
  - https://publicgood.com/campaign/*
1197
+ - https://publicgood.com/org/*
1198
+ - https://publicgood.com/org/*/campaign/*
1053
1199
  - https://publons.com/author/*
1200
+ - https://qanda.co/q/*
1054
1201
  - https://quora.com/*/answer/*
1202
+ - https://qwip.in/watch/*
1055
1203
  - https://qwip.it/watch/*
1056
1204
  - https://rapidengage.com/s/*
1057
1205
  - https://readtapestry.com/s/*/
1058
1206
  - https://redivis.com/r/*
1059
1207
  - https://reelhouse.org/*
1060
1208
  - https://relayto.com/*
1209
+ - https://reuters.com/video/*
1210
+ - https://riffsy.com/*
1061
1211
  - https://rocketium.com/*
1062
1212
  - https://rogertalk.com/*
1213
+ - https://runelm.io/*/*
1063
1214
  - https://screen.yahoo.com/*/*
1215
+ - https://screenhunters.com/*
1064
1216
  - https://scribblemaps.com/maps/view/*/*
1217
+ - https://scribd.com/doc/*
1218
+ - https://scribd.com/documents/*
1219
+ - https://scribd.com/mobile/documents/*
1065
1220
  - https://sendvid.com/*
1066
1221
  - https://services.momindum.com/embedly/*
1067
1222
  - https://sfx.io/*
1223
+ - https://sidewire.com/*/*/*
1068
1224
  - https://sketchfab.com/models/*
1069
1225
  - https://sketchfab.com/show/*
1070
1226
  - https://skip.st/one/*
1071
1227
  - https://skitch.com/*/*/*
1228
+ - https://sleeperbot.com/share/*
1229
+ - https://slidesha.re/*
1072
1230
  - https://slidr.io/*/*
1231
+ - https://snappd\.tv/*
1073
1232
  - https://soundcloud.com/*
1074
1233
  - https://soundcloud.com/*/*
1075
1234
  - https://soundcloud.com/*/sets/*
1076
1235
  - https://soundcloud.com/groups/*
1236
+ - https://spaces.archilogic.com/3d/*
1237
+ - https://spaces.archilogic.com/model/*
1077
1238
  - https://speakerdeck.com/*/*
1239
+ - https://spiegel.de/video/*
1240
+ - https://sproutvideo.com/videos/*
1078
1241
  - https://stepic.org/*
1079
1242
  - https://storify.com/*/*
1243
+ - https://storribook.com/articles/view/*/*
1244
+ - https://storygami.com/v/*
1080
1245
  - https://streamable.com/*
1081
1246
  - https://streamio.com/api/v1/*
1247
+ - https://superstack.io/v/*
1082
1248
  - https://sway.com/*
1083
1249
  - https://talkshow.im/show/*
1250
+ - https://tapewrite.com/*
1251
+ - https://tenor.co/*
1252
+ - https://theguardian.com/*/video/*/*/*/*
1253
+ - https://theonion.com/video/*
1254
+ - https://today.msnbc.msn.com/id/*/ns/*
1255
+ - https://today.msnbc.msn.com/id/*/vp/*
1084
1256
  - https://tr.instela.com/*
1257
+ - https://tumblr.com/*
1085
1258
  - https://tun.in/*
1086
1259
  - https://tunein.com/*
1260
+ - https://twitch.tv/*
1087
1261
  - https://uploadly.com/*
1262
+ - https://upscri.be/*
1088
1263
  - https://urtak.com/clr/*
1089
1264
  - https://urtak.com/u/*
1090
1265
  - https://v.embedly.com/*
1266
+ - https://verse.com/stories/*
1091
1267
  - https://vid.me/*
1092
1268
  - https://vidd.me/*
1093
1269
  - https://video.esri.com/*
1270
+ - https://video.forbes.com/fvn/*
1271
+ - https://video.foxbusiness.com/v/*
1272
+ - https://video.foxnews.com/v/*
1094
1273
  - https://video214.com/play/*
1274
+ - https://vidl.it/*
1095
1275
  - https://view.stacker.cc/*
1276
+ - https://vilynx.com/video/*
1096
1277
  - https://vimeo.com/*
1097
1278
  - https://vine.co/v/*
1098
1279
  - https://vizamp.com/player/*
1280
+ - https://vrbfoto.com/f/*
1099
1281
  - https://vrchive.com/*
1100
1282
  - https://w.graphiq.com/w/*
1283
+ - https://walkinto.in/*/*
1284
+ - https://washingtonpost.com/wp-dyn/*/video/*/*/*/*
1101
1285
  - https://wi.st/*
1102
1286
  - https://wistia.com/*
1287
+ - https://with.in/watch/*
1103
1288
  - https://www.allego.com/*
1289
+ - https://www.altizure.com/project/*
1290
+ - https://www.alugha.com/videos/*
1291
+ - https://www.boston.com/*video*
1292
+ - https://www.boston.com/video*
1104
1293
  - https://www.braid.io/embed-tile/*
1105
1294
  - https://www.brainshark.com/*/*
1106
1295
  - https://www.branchtrack.com/projects/*
1107
1296
  - https://www.calameo.com/*
1297
+ - https://www.canva.com/design/*
1298
+ - https://www.changelog.com/*
1108
1299
  - https://www.clippituser.tv/*
1300
+ - https://www.cnbc.com/id/*/play/1/video/*
1301
+ - https://www.cnbc.com/id/*?*video*
1302
+ - https://www.cnn.com/video/*
1303
+ - https://www.cnn.com/videos/*
1304
+ - https://www.cnn.com/videos/*
1305
+ - https://www.codiva.io/p/*
1109
1306
  - https://www.dreambroker.com/channel/*
1110
1307
  - https://www.etsy.com/*
1111
1308
  - https://www.facebook.com/*/photos/*
1112
1309
  - https://www.facebook.com/*/posts/*
1113
1310
  - https://www.facebook.com/*/videos/*
1311
+ - https://www.facebook.com/events/*
1114
1312
  - https://www.facebook.com/photo.php*
1115
1313
  - https://www.facebook.com/video.php*
1116
1314
  - https://www.flat.io/score/*
1315
+ - https://www.flickr.com/photos/*
1117
1316
  - https://www.foursquare.com/*
1317
+ - https://www.frontback.me/p/*
1318
+ - https://www.fwdeveryone.com/t/*
1118
1319
  - https://www.ganxy.com/*
1320
+ - https://www.genial.ly/*
1321
+ - https://www.gettyimages.com/detail/photo/*
1322
+ - https://www.gettyimages.com/license/*
1323
+ - https://www.getwhichit.com/page/*
1119
1324
  - https://www.gifs.com/*
1120
1325
  - https://www.gifs.com/gif/*
1121
1326
  - https://www.globalgiving.org/funds/*
1122
1327
  - https://www.globalgiving.org/microprojects/*
1123
1328
  - https://www.globalgiving.org/projects/*
1124
1329
  - https://www.google.*/maps/*
1330
+ - https://www.gradba.se/v/*
1125
1331
  - https://www.graphiq.com/w/*
1332
+ - https://www.guardian.co.uk/*/video/*/*/*/*
1333
+ - https://www.hapyak.com/embed/*
1334
+ - https://www.highly.co/hl/*
1126
1335
  - https://www.instagram.com/p/*
1336
+ - https://www.ipushpull.com/pages/domains/*/pages/*
1337
+ - https://www.jauntvr.com/title/*
1127
1338
  - https://www.khanacademy.org/*
1339
+ - https://www.kickstarter.com/projects/*/*
1340
+ - https://www.last.fm/music/*
1341
+ - https://www.last.fm/music/*/*
1342
+ - https://www.last.fm/music/*/_/*
1343
+ - https://www.last.fm/music/+images/*
1344
+ - https://www.last.fm/music/+videos/*
1128
1345
  - https://www.magisto.com/*
1129
1346
  - https://www.maphubs.com/user/*/map/*
1347
+ - https://www.maprosoft.com/app/map*
1348
+ - https://www.maven.video/*
1130
1349
  - https://www.medibang.com/sv/*
1350
+ - https://www.megafono.io/*
1351
+ - https://www.moviemogul.io/*
1352
+ - https://www.msnbc.msn.com/*/watch/*
1353
+ - https://www.msnbc.msn.com/id/*/ns/*
1354
+ - https://www.msnbc.msn.com/id/*/vp/*
1355
+ - https://www.nbcnews.com/*
1131
1356
  - https://www.newhive.com/*/*
1357
+ - https://www.npr.org/*/*/*/*/*
1358
+ - https://www.npr.org/*/*/*/*/*/*
1359
+ - https://www.npr.org/*/*/*/*/*/*/*
1360
+ - https://www.npr.org/templates/story/story.php*
1361
+ - https://www.oddshot.tv/*
1132
1362
  - https://www.oumy.com/v/*
1363
+ - https://www.pastery.net/*
1364
+ - https://www.pexels.com/photo/*
1365
+ - https://www.popchest.com/*/
1133
1366
  - https://www.publons.com/author/*
1134
1367
  - https://www.quora.com/*/answer/*
1368
+ - https://www.qzzr.com/quiz/*
1369
+ - https://www.rdio.com/#/artist/*/album/*
1370
+ - https://www.rdio.com/artist/*/album/*
1135
1371
  - https://www.redivis.com/r/*
1136
1372
  - https://www.reelhouse.org/*
1137
1373
  - https://www.relayto.com/*
1374
+ - https://www.reuters.com/video/*
1138
1375
  - https://www.rogertalk.com/*
1139
1376
  - https://www.scribblemaps.com/maps/view/*/*
1377
+ - https://www.scribd.com/doc/*
1378
+ - https://www.scribd.com/documents/*
1379
+ - https://www.scribd.com/mobile/documents/*
1380
+ - https://www.simplecast.com/s/*
1381
+ - https://www.slideshare.net/*/*
1382
+ - https://www.slideshare.net/mobile/*/*
1383
+ - https://www.sociale.co/question/*
1384
+ - https://www.spiegel.de/video/*
1140
1385
  - https://www.streamio.com/api/v1/*
1141
1386
  - https://www.talkshow.im/show/*
1387
+ - https://www.theguardian.com/*/video/*/*/*/*
1388
+ - https://www.theonion.com/video/*
1389
+ - https://www.vevo.com/video/*
1390
+ - https://www.vevo.com/watch/*
1391
+ - https://www.vibby.com/v/*
1142
1392
  - https://www.vibby.com/watch*
1143
1393
  - https://www.vimeo.com/*
1144
1394
  - https://www.vine.co/v/*
1145
1395
  - https://www.vizamp.com/player/*
1396
+ - https://www.washingtonpost.com/wp-dyn/*/video/*/*/*/*
1146
1397
  - https://www.wedgies.com/question/*
1398
+ - https://www.wikimedia.org/wiki/File*
1399
+ - https://www.wikipedia.org/wiki/*
1400
+ - https://www.yelp.com/*&hrid=.+
1147
1401
  - https://www.youtube.com/attribution_link*
1148
1402
  - https://www.youtube.com/embed/*
1149
1403
  - https://www.youtube.com/gif*
1404
+ - https://www.zeit.de/video/*
1150
1405
  - https://yahoo.com/movies/*
1151
1406
  - https://youtu.be/*
1152
1407
  - https://youtube.ca/*
@@ -1160,3 +1415,7 @@
1160
1415
  - https://youtube.jp/*
1161
1416
  - https://youtube.nl/*
1162
1417
  - https://youtube.pl/*
1418
+ - https://zeit.de/video/*
1419
+ - https?://embed.ly/code*
1420
+ - https?://infogr.am/*
1421
+ - https?://kuula.co/post/*