diff --git a/plugins/domains/medium.com.js b/plugins/domains/medium.com.js
deleted file mode 100644
index 0581aac06..000000000
--- a/plugins/domains/medium.com.js
+++ /dev/null
@@ -1,43 +0,0 @@
-export default {
-
- re: /^https:\/\/(?:[a-z0-9\-]+\.)?medium\.com\/@?[\w-]+/i,
-
- mixins: [
- "*"
- ],
-
- provides: ['__allowJSRender'],
-
- getLinks: function(og, url) {
-
- if (og.type === 'profile' || og.type === 'medium-com:collection' || og.type === 'article') {
-
- var t = 'profile';
- if (og.type === 'medium-com:collection') {
- t = 'collection';
- } else if (og.type === 'article') {
- t = 'story';
- }
-
- return {
- html: '' + og.title + '',
- rel: [og.type === 'article' ? CONFIG.R.summary : CONFIG.R.app, CONFIG.R.inline, CONFIG.R.ssl],
- type: CONFIG.T.text_html
- };
- }
- },
-
- getData: function(meta, options) {
- if (!meta.og) {
- return {
- __allowJSRender: true
- }
- }
- },
-
- tests: [{skipMethods: ["getData"]},
- "https://medium.com/@startswithabang",
- "https://medium.com/hackerpreneur-magazine/nobody-s-heard-of-you-and-that-s-okay-82792dfecc12",
- "https://medium.com/@AvenueTalentPartners/3-keys-to-doing-better-discovery-and-closing-more-deals-1f8ce7bcac3d"
- ]
-};
diff --git a/plugins/domains/vimeo.com.js b/plugins/domains/vimeo.com.js
index aa55f0b2e..e9c51ecd9 100644
--- a/plugins/domains/vimeo.com.js
+++ b/plugins/domains/vimeo.com.js
@@ -69,7 +69,7 @@ export default {
href: iframe.replaceQuerystring(options.digitize(params)),
type: CONFIG.T.text_html,
rel: CONFIG.R.player,
- "aspect-ratio": oembed.width / oembed.height, // ex. portrait https://vimeo.com/216098214
+ "aspect-ratio": oembed.width / oembed.height, // ex. portrait https://vimeo.com/1191143901
autoplay: "autoplay=1",
options: {
texttrack: {
@@ -109,8 +109,9 @@ export default {
},
"https://vimeo.com/65836516",
"https://vimeo.com/141567420",
- "https://vimeo.com/76979871", // Captions
- "https://vimeo.com/216098214", // Portrait
+ "https://vimeo.com/742007267", // Captions
+ "https://vimeo.com/1191143901", // Portrait
+ "https://player.vimeo.com/video/228044649", // Portrait
"https://player.vimeo.com/video/65836516?&autoplay=1&loop=1",
{
skipMixins: ["oembed-description"],