mark-deco-cli 1.1.0 → 1.2.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.
package/dist/index.cjs CHANGED
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
2
  /*!
3
3
  * name: mark-deco-cli
4
- * version: 1.1.0
4
+ * version: 1.2.0
5
5
  * description: Command-line interface for mark-deco Markdown to HTML conversion processor
6
6
  * author: Kouji Matsui (@kekyo@mi.kekyo.net)
7
7
  * license: MIT
8
8
  * repository.url: https://github.com/kekyo/mark-deco
9
- * git.commit.hash: 1671d139a7f806a597d37327b87576bd3e85d817
9
+ * git.commit.hash: ac2db6bda5bcf3c66742d73693edaeef00c9f558
10
10
  */
11
11
 
12
12
  "use strict";
@@ -16,11 +16,11 @@ const path = require("path");
16
16
  const process$1 = require("process");
17
17
  const markDeco = require("mark-deco");
18
18
  const name = "mark-deco-cli";
19
- const version = "1.1.0";
19
+ const version = "1.2.0";
20
20
  const description = "Command-line interface for mark-deco Markdown to HTML conversion processor";
21
21
  const author = "Kouji Matsui (@kekyo@mi.kekyo.net)";
22
22
  const repository_url = "https://github.com/kekyo/mark-deco";
23
- const git_commit_hash = "1671d139a7f806a597d37327b87576bd3e85d817";
23
+ const git_commit_hash = "ac2db6bda5bcf3c66742d73693edaeef00c9f558";
24
24
  const loadConfig = async (configPath) => {
25
25
  if (!configPath) {
26
26
  return {};
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":["../src/generated/packageMetadata.ts","../src/config.ts","../src/io.ts","../../mark-deco/dist/misc.mjs","../src/processor.ts","../src/index.ts"],"sourcesContent":["// @ts-nocheck\n// This file is auto-generated by screw-up plugin\n// Do not edit manually\n\nexport const name = \"mark-deco-cli\";\nexport const version = \"1.1.0\";\nexport const description = \"Command-line interface for mark-deco Markdown to HTML conversion processor\";\nexport const author = \"Kouji Matsui (@kekyo@mi.kekyo.net)\";\nexport const license = \"MIT\";\nexport const repository_url = \"https://github.com/kekyo/mark-deco\";\nexport const git_commit_hash = \"1671d139a7f806a597d37327b87576bd3e85d817\";\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport { readFile } from 'fs/promises';\nimport { resolve } from 'path';\nimport type { BeautifulMermaidPluginOptions } from 'mark-deco';\n\nexport interface Config {\n plugins?: string[];\n noPlugins?: boolean;\n uniqueIdPrefix?: string;\n hierarchicalHeadingId?: boolean;\n contentBasedHeadingId?: boolean;\n headingBaseLevel?: number;\n headerTitleTransform?: 'extract' | 'extractAndRemove' | 'none';\n relativeUrl?: string;\n // Plugin-specific configurations\n oembed?: {\n enabled?: boolean;\n };\n card?: {\n enabled?: boolean;\n };\n mermaid?: {\n enabled?: boolean;\n };\n beautifulMermaid?: BeautifulMermaidPluginOptions & {\n enabled?: boolean;\n };\n}\n\n/**\n * Load configuration from file\n */\nexport const loadConfig = async (configPath?: string): Promise<Config> => {\n if (!configPath) {\n return {};\n }\n\n try {\n const configFile = resolve(configPath);\n const configContent = await readFile(configFile, 'utf-8');\n\n // Support both JSON and JS config files\n if (configPath.endsWith('.json')) {\n return JSON.parse(configContent);\n } else if (\n configPath.endsWith('.js') ||\n configPath.endsWith('.cjs') ||\n configPath.endsWith('.mjs')\n ) {\n // For JS/MJS files, we need to use dynamic import\n const configModule = await import(configFile);\n return configModule.default || configModule;\n } else {\n // Default to JSON parsing\n return JSON.parse(configContent);\n }\n } catch (error) {\n throw new Error(\n `Failed to load config file \"${configPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n};\n\n/**\n * Get default configuration\n */\nexport const getDefaultConfig = (): Config => {\n return {\n plugins: ['oembed', 'card', 'beautiful-mermaid'],\n uniqueIdPrefix: 'section',\n hierarchicalHeadingId: true,\n contentBasedHeadingId: false,\n headingBaseLevel: 1,\n headerTitleTransform: 'extractAndRemove',\n oembed: {\n enabled: true,\n },\n card: {\n enabled: true,\n },\n mermaid: {\n enabled: true,\n },\n beautifulMermaid: {\n enabled: true,\n },\n };\n};\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport { readFile, writeFile } from 'fs/promises';\nimport { stdin } from 'process';\n\n/**\n * Read input from file or stdin\n */\nexport const readInput = async (inputPath?: string): Promise<string> => {\n if (inputPath) {\n // Read from file\n try {\n return await readFile(inputPath, 'utf-8');\n } catch (error) {\n throw new Error(\n `Failed to read input file \"${inputPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n } else {\n // Read from stdin\n return new Promise((resolve, reject) => {\n let data = '';\n\n // Check if stdin is a TTY (interactive mode)\n if (stdin.isTTY) {\n reject(\n new Error(\n 'No input file specified and stdin is not available. Use -i option to specify input file.'\n )\n );\n return;\n }\n\n stdin.setEncoding('utf-8');\n\n stdin.on('data', (chunk) => {\n data += chunk;\n });\n\n stdin.on('end', () => {\n resolve(data);\n });\n\n stdin.on('error', (error) => {\n reject(new Error(`Failed to read from stdin: ${error.message}`));\n });\n });\n }\n};\n\n/**\n * Write output to file or stdout\n */\nexport const writeOutput = async (\n html: string,\n outputPath?: string\n): Promise<void> => {\n if (outputPath) {\n // Write to file\n try {\n await writeFile(outputPath, html, 'utf-8');\n } catch (error) {\n throw new Error(\n `Failed to write output file \"${outputPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n } else {\n // Write to stdout\n try {\n process.stdout.write(html);\n } catch (error) {\n throw new Error(\n `Failed to write to stdout: ${error instanceof Error ? error.message : String(error)}`\n );\n }\n }\n};\n\n/**\n * Write JSON output to file\n */\nexport const writeJsonOutput = async (\n data: unknown,\n outputPath: string\n): Promise<void> => {\n try {\n const jsonContent = JSON.stringify(data, null, 2);\n await writeFile(outputPath, jsonContent, 'utf-8');\n } catch (error) {\n throw new Error(\n `Failed to write JSON output file \"${outputPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n};\n","/*!\n * name: mark-deco\n * version: 1.1.0\n * description: Flexible Markdown to HTML conversion library\n * author: Kouji Matsui (@kekyo@mi.kekyo.net)\n * license: MIT\n * repository.url: https://github.com/kekyo/mark-deco\n * git.commit.hash: 1671d139a7f806a597d37327b87576bd3e85d817\n */\n\nconst resolveUrl = (url, baseUrl) => {\n try {\n if (url.startsWith(\"http://\") || url.startsWith(\"https://\")) {\n return url;\n }\n if (url.startsWith(\"//\")) {\n const baseUrlObj = new URL(baseUrl);\n return `${baseUrlObj.protocol}${url}`;\n }\n return new URL(url, baseUrl).toString();\n } catch (e) {\n return url;\n }\n};\nconst decodeHtmlEntities = (value) => value.replace(/&quot;/g, '\"').replace(/&#x27;/g, \"'\").replace(/&#039;/g, \"'\").replace(/&amp;/g, \"&\");\nconst extractDynamicImageUrl = (value) => {\n if (!value.trim().startsWith(\"{\")) {\n return void 0;\n }\n try {\n const parsed = JSON.parse(value);\n const entries = Object.entries(parsed);\n if (entries.length === 0) {\n return void 0;\n }\n const firstEntry = entries[0];\n if (!firstEntry) {\n return void 0;\n }\n let bestUrl = firstEntry[0];\n let bestArea = 0;\n for (const [url, size] of entries) {\n if (Array.isArray(size) && size.length >= 2) {\n const width = Number(size[0]);\n const height = Number(size[1]);\n const area = Number.isFinite(width) && Number.isFinite(height) ? width * height : 0;\n if (area > bestArea) {\n bestArea = area;\n bestUrl = url;\n }\n }\n }\n return bestUrl;\n } catch (e) {\n return void 0;\n }\n};\nconst extractAmazonImageUrl = (values, context) => {\n for (const rawValue of values) {\n const trimmed = decodeHtmlEntities(rawValue).trim();\n if (!trimmed) {\n continue;\n }\n const dynamicUrl = extractDynamicImageUrl(trimmed);\n if (dynamicUrl) {\n return resolveUrl(dynamicUrl, context.url);\n }\n return resolveUrl(trimmed, context.url);\n }\n return void 0;\n};\nconst amazonImageRules = [\n {\n selector: \"#landingImage\",\n method: \"attr\",\n attr: \"data-a-dynamic-image\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#landingImage\",\n method: \"attr\",\n attr: \"data-old-hires\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#landingImage\",\n method: \"attr\",\n attr: \"src\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#imgTagWrapperId img\",\n method: \"attr\",\n attr: \"data-a-dynamic-image\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#imgTagWrapperId img\",\n method: \"attr\",\n attr: \"data-old-hires\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#imgTagWrapperId img\",\n method: \"attr\",\n attr: \"src\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"img[data-old-hires]\",\n method: \"attr\",\n attr: \"data-old-hires\",\n processor: extractAmazonImageUrl\n },\n {\n selector: 'meta[property=\"og:image\"]',\n method: \"attr\",\n attr: \"content\",\n processor: extractAmazonImageUrl\n },\n {\n selector: 'meta[name=\"twitter:image\"]',\n method: \"attr\",\n attr: \"content\",\n processor: extractAmazonImageUrl\n }\n];\nconst amazonPatterns = [\n \"^https?://(?:www\\\\.)?amazon\\\\.co\\\\.jp/\",\n \"^https?://(?:www\\\\.)?amazon\\\\.com/\",\n \"^https?://amzn\\\\.to/\"\n];\nconst amazonRules = [\n {\n patterns: amazonPatterns,\n postFilters: [\"^https?://(?:www\\\\.)?amazon\\\\.co\\\\.jp/\"],\n locale: \"ja-JP\",\n siteName: \"Amazon Japan\",\n fields: {\n title: {\n required: true,\n rules: [\n {\n selector: \"#productTitle\",\n method: \"text\"\n }\n ]\n },\n image: {\n rules: amazonImageRules\n },\n price: {\n rules: [\n {\n selector: [\n \"span.a-price-whole\",\n \"span.a-price.a-text-price\",\n \".a-offscreen\",\n \"#priceblock_dealprice\",\n \"#priceblock_ourprice\",\n \"#price_inside_buybox\"\n ],\n method: \"text\",\n processor: {\n type: \"currency\",\n params: {\n symbol: \"¥\"\n }\n }\n }\n ]\n },\n reviewCount: {\n rules: [\n {\n selector: \"#acrCustomerReviewText\",\n method: \"text\"\n }\n ]\n },\n rating: {\n rules: [\n {\n selector: \"span.a-icon-alt\",\n method: \"text\",\n processor: {\n type: \"filter\",\n params: {\n contains: \"星\"\n }\n }\n }\n ]\n },\n brand: {\n rules: [\n {\n selector: \"#bylineInfo\",\n method: \"text\",\n processor: (values) => {\n var _a;\n if (values.length === 0 || !values[0]) return void 0;\n const text = values[0];\n const match = text.match(/ブランド:\\s*([^の]+)/);\n return (_a = match == null ? void 0 : match[1]) == null ? void 0 : _a.trim();\n }\n }\n ]\n },\n features: {\n rules: [\n {\n selector: \"#feature-bullets .a-list-item\",\n method: \"text\",\n multiple: true,\n processor: {\n type: \"filter\",\n params: {\n excludeContains: [\"この商品について\"],\n minLength: 5\n }\n }\n }\n ]\n },\n identifier: {\n rules: [\n {\n selector: \"body\",\n method: \"text\",\n processor: (_values, context) => {\n const match = context.url.match(/\\/dp\\/([A-Z0-9]{10,})/);\n return match ? match[1] : void 0;\n }\n }\n ]\n }\n }\n },\n {\n patterns: amazonPatterns,\n postFilters: [\"^https?://(?:www\\\\.)?amazon\\\\.com/\"],\n locale: \"en-US\",\n siteName: \"Amazon US\",\n fields: {\n title: {\n required: true,\n rules: [\n {\n selector: \"#productTitle\",\n method: \"text\"\n }\n ]\n },\n image: {\n rules: amazonImageRules\n },\n price: {\n rules: [\n {\n selector: [\n \"span.a-price-whole\",\n \"span.a-price.a-text-price\",\n \".a-offscreen\",\n \"#priceblock_dealprice\",\n \"#priceblock_ourprice\",\n \"#price_inside_buybox\"\n ],\n method: \"text\",\n processor: {\n type: \"currency\",\n params: {\n symbol: \"$\"\n }\n }\n }\n ]\n },\n reviewCount: {\n rules: [\n {\n selector: \"#acrCustomerReviewText\",\n method: \"text\"\n }\n ]\n },\n rating: {\n rules: [\n {\n selector: \"span.a-icon-alt\",\n method: \"text\",\n processor: {\n type: \"filter\",\n params: {\n contains: \"star\"\n }\n }\n }\n ]\n },\n brand: {\n rules: [\n {\n selector: \"#bylineInfo\",\n method: \"text\",\n processor: (values) => {\n var _a;\n if (values.length === 0 || !values[0]) return void 0;\n const text = values[0];\n const match = text.match(/Brand:\\s*([^V]+?)(?:\\s*Visit|$)/);\n return (_a = match == null ? void 0 : match[1]) == null ? void 0 : _a.trim();\n }\n }\n ]\n },\n features: {\n rules: [\n {\n selector: \"#feature-bullets .a-list-item\",\n method: \"text\",\n multiple: true,\n processor: {\n type: \"filter\",\n params: {\n excludeContains: [\"About this item\"],\n minLength: 5\n }\n }\n }\n ]\n },\n identifier: {\n rules: [\n {\n selector: \"body\",\n method: \"text\",\n processor: (_values, context) => {\n const match = context.url.match(/\\/dp\\/([A-Z0-9]{10,})/);\n return match ? match[1] : void 0;\n }\n }\n ]\n }\n }\n }\n];\nconst downloadedProvidersJson = /* @__PURE__ */ JSON.parse('[{\"provider_name\":\"23HQ\",\"provider_url\":\"http://www.23hq.com\",\"endpoints\":[{\"schemes\":[\"http://www.23hq.com/*/photo/*\"],\"url\":\"http://www.23hq.com/23/oembed\"}]},{\"provider_name\":\"3Q\",\"provider_url\":\"https://3q.video/\",\"endpoints\":[{\"schemes\":[\"https://playout.3qsdn.com/embed/*\"],\"url\":\"https://playout.3qsdn.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Abraia\",\"provider_url\":\"https://abraia.me\",\"endpoints\":[{\"schemes\":[\"https://store.abraia.me/*\"],\"url\":\"https://api.abraia.me/oembed\",\"discovery\":true}]},{\"provider_name\":\"Acast\",\"provider_url\":\"https://embed.acast.com\",\"endpoints\":[{\"schemes\":[\"https://play.acast.com/s/*\"],\"url\":\"https://oembed.acast.com/v1/embed-player\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"ActBlue\",\"provider_url\":\"https://secure.actblue.com\",\"endpoints\":[{\"schemes\":[\"https://secure.actblue.com/donate/*\"],\"url\":\"https://secure.actblue.com/cf/oembed\"}]},{\"provider_name\":\"Adilo\",\"provider_url\":\"https://adilo.bigcommand.com\",\"endpoints\":[{\"schemes\":[\"https://adilo.bigcommand.com/watch/*\"],\"url\":\"https://adilo.bigcommand.com/web/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"afreecaTV\",\"provider_url\":\"https://www.afreecatv.com\",\"endpoints\":[{\"schemes\":[\"https://vod.afreecatv.com/player/\",\"https://v.afree.ca/ST/\",\"https://vod.afreecatv.com/ST/\",\"https://vod.afreecatv.com/PLAYER/STATION/\",\"https://play.afreecatv.com/\"],\"url\":\"https://openapi.afreecatv.com/oembed/embedinfo\",\"discovery\":true}]},{\"provider_name\":\"afreecaTV\",\"provider_url\":\"https://www.sooplive.co.kr\",\"endpoints\":[{\"schemes\":[\"https://vod.sooplive.co.kr/player/\",\"https://v.afree.ca/ST/\",\"https://vod.sooplive.co.kr/ST/\",\"https://vod.sooplive.co.kr/PLAYER/STATION/\",\"https://play.sooplive.co.kr/\"],\"url\":\"https://openapi.sooplive.co.kr/oembed/embedinfo\",\"discovery\":true}]},{\"provider_name\":\"Altium LLC\",\"provider_url\":\"https://altium.com\",\"endpoints\":[{\"schemes\":[\"https://altium.com/viewer/*\"],\"url\":\"https://viewer.altium.com/shell/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Altru\",\"provider_url\":\"https://www.altrulabs.com\",\"endpoints\":[{\"schemes\":[\"https://app.altrulabs.com/*/*?answer_id=*\",\"https://app.altrulabs.com/player/*\"],\"url\":\"https://api.altrulabs.com/api/v1/social/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"amCharts Live Editor\",\"provider_url\":\"https://live.amcharts.com/\",\"endpoints\":[{\"schemes\":[\"http://live.amcharts.com/*\",\"https://live.amcharts.com/*\"],\"url\":\"https://live.amcharts.com/oembed\"}]},{\"provider_name\":\"Amtraker\",\"provider_url\":\"https://amtraker.com\",\"endpoints\":[{\"schemes\":[\"https://amtraker.com/trains/*\",\"https://amtraker.com/trains/*/*\",\"https://*.amtraker.com/trains/*\",\"https://*.amtraker.com/trains/*/*\"],\"url\":\"https://api.amtraker.com/v3/oembed\",\"discovery\":true}]},{\"provider_name\":\"Animatron\",\"provider_url\":\"https://www.animatron.com/\",\"endpoints\":[{\"schemes\":[\"https://www.animatron.com/project/*\",\"https://animatron.com/project/*\"],\"url\":\"https://animatron.com/oembed/json\",\"discovery\":true}]},{\"provider_name\":\"Animoto\",\"provider_url\":\"http://animoto.com/\",\"endpoints\":[{\"schemes\":[\"http://animoto.com/play/*\"],\"url\":\"http://animoto.com/oembeds/create\"}]},{\"provider_name\":\"AnnieMusic\",\"provider_url\":\"https://anniemusic.app\",\"endpoints\":[{\"schemes\":[\"https://anniemusic.app/t/*\",\"https://anniemusic.app/p/*\"],\"url\":\"https://api.anniemusic.app/api/v1/oembed\"}]},{\"provider_name\":\"ArcGIS StoryMaps\",\"provider_url\":\"https://storymaps.arcgis.com\",\"endpoints\":[{\"schemes\":[\"https://storymaps.arcgis.com/stories/*\"],\"url\":\"https://storymaps.arcgis.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Archivos\",\"provider_url\":\"https://app.archivos.digital\",\"endpoints\":[{\"schemes\":[\"https://app.archivos.digital/app/view/*\"],\"url\":\"https://app.archivos.digital/oembed/\"}]},{\"provider_name\":\"AssemblrWorld\",\"provider_url\":\"https://assemblrworld.com/\",\"endpoints\":[{\"schemes\":[\"http://*.studio.assemblrworld.com/creation/*\",\"http://studio.assemblrworld.com/creation/*\",\"http://*.app-edu.assemblrworld.com/Creation/*\",\"http://app-edu.assemblrworld.com/Creation/*\",\"http://assemblr.world/*\",\"http://editor.assemblrworld.com/*\",\"http://*.assemblrworld.com/creation/*\",\"http://*.assemblrworld.com/Creation/*\",\"https://*.studio.assemblrworld.com/creation/*\",\"https://studio.assemblrworld.com/creation/*\",\"https://*.app-edu.assemblrworld.com/Creation/*\",\"https://app-edu.assemblrworld.com/Creation/*\",\"https://assemblr.world/*\",\"https://editor.assemblrworld.com/*\",\"https://*.assemblrworld.com/creation/*\",\"https://*.assemblrworld.com/Creation/*\"],\"url\":\"https://studio.assemblrworld.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"audio.com\",\"provider_url\":\"https://audio.com/\",\"endpoints\":[{\"schemes\":[\"https://audio.com/*\",\"https://www.audio.com/*\",\"http://audio.com/*\",\"http://www.audio.com/*\"],\"url\":\"https://api.audio.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Audioboom\",\"provider_url\":\"https://audioboom.com\",\"endpoints\":[{\"schemes\":[\"https://audioboom.com/channels/*\",\"https://audioboom.com/channel/*\",\"https://audioboom.com/playlists/*\",\"https://audioboom.com/podcasts/*\",\"https://audioboom.com/podcast/*\",\"https://audioboom.com/posts/*\",\"https://audioboom.com/episodes/*\"],\"url\":\"https://audioboom.com/publishing/oembed.{format}\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"AudioClip\",\"provider_url\":\"https://audioclip.naver.com\",\"endpoints\":[{\"schemes\":[\"https://audioclip.naver.com/channels/*/clips/*\",\"https://audioclip.naver.com/audiobooks/*\"],\"url\":\"https://audioclip.naver.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Audiomack\",\"provider_url\":\"https://audiomack.com\",\"endpoints\":[{\"schemes\":[\"https://audiomack.com/*/song/*\",\"https://audiomack.com/*/album/*\",\"https://audiomack.com/*/playlist/*\"],\"url\":\"https://audiomack.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Audiomeans\",\"provider_url\":\"https://audiomeans.fr\",\"endpoints\":[{\"schemes\":[\"https://podcasts.audiomeans.fr/*\"],\"url\":\"https://podcasts.audiomeans.fr/services/oembed\",\"discovery\":false,\"formats\":[\"json\"]}]},{\"provider_name\":\"Backtracks\",\"provider_url\":\"https://backtracks.fm\",\"endpoints\":[{\"schemes\":[\"https://backtracks.fm/*/*/e/*\",\"https://backtracks.fm/*/s/*/*\",\"https://backtracks.fm/*/*/*/*/e/*/*\",\"https://backtracks.fm/*\",\"http://backtracks.fm/*\"],\"url\":\"https://backtracks.fm/oembed\",\"discovery\":true}]},{\"provider_name\":\"Balsamiq Cloud\",\"provider_url\":\"https://balsamiq.cloud/\",\"endpoints\":[{\"schemes\":[\"https://balsamiq.cloud/*\"],\"url\":\"https://balsamiq.cloud/oembed\",\"discovery\":true}]},{\"provider_name\":\"Beams.fm\",\"provider_url\":\"http://beams.fm\",\"endpoints\":[{\"schemes\":[\"https://beams.fm/*\"],\"url\":\"https://api.beams.fm/oEmbed\",\"discovery\":true}]},{\"provider_name\":\"Beautiful.AI\",\"provider_url\":\"https://www.beautiful.ai/\",\"endpoints\":[{\"url\":\"https://www.beautiful.ai/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Behance\",\"provider_url\":\"https://www.behance.net\",\"endpoints\":[{\"schemes\":[\"https://www.behance.net/gallery/*/*\",\"https://www.behance.net/*/services/*/*\"],\"url\":\"https://www.behance.net/services/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"biqnetwork\",\"provider_url\":\"https://biqapp.com/\",\"endpoints\":[{\"schemes\":[\"https://cloud.biqapp.com/*\"],\"url\":\"https://biqapp.com/api/v1/video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Bitchute\",\"provider_url\":\"https://bitchute.com/\",\"endpoints\":[{\"url\":\"https://api.bitchute.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Blackfire.io\",\"provider_url\":\"https://blackfire.io\",\"endpoints\":[{\"schemes\":[\"https://blackfire.io/profiles/*/graph\",\"https://blackfire.io/profiles/compare/*/graph\"],\"url\":\"https://blackfire.io/oembed\",\"discovery\":true}]},{\"provider_name\":\"Blogcast\",\"provider_url\":\"https://blogcast.host/\",\"endpoints\":[{\"schemes\":[\"https://blogcast.host/embed/*\",\"https://blogcast.host/embedly/*\"],\"url\":\"https://blogcast.host/oembed\",\"discovery\":true}]},{\"provider_name\":\"Bluesky Social\",\"provider_url\":\"https://bsky.app\",\"endpoints\":[{\"schemes\":[\"https://bsky.app/profile/*/post/*\"],\"url\":\"https://embed.bsky.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"Bookingmood\",\"provider_url\":\"https://www.bookingmood.com\",\"endpoints\":[{\"schemes\":[\"https://www.bookingmood.com/embed/*/*\"],\"url\":\"https://bookingmood.com/api/oembed\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Bornetube\",\"provider_url\":\"https://www.bornetube.dk/\",\"endpoints\":[{\"schemes\":[\"https://www.bornetube.dk/media/*\",\"https://www.bornetube.dk/video/*\"],\"url\":\"https://www.bornetube.dk/media/lasync/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Box Office Buz\",\"provider_url\":\"http://boxofficebuz.com\",\"endpoints\":[{\"url\":\"http://boxofficebuz.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"BrioVR\",\"provider_url\":\"https://view.briovr.com/\",\"endpoints\":[{\"schemes\":[\"https://view.briovr.com/api/v1/worlds/oembed/*\"],\"url\":\"https://view.briovr.com/api/v1/worlds/oembed/\"}]},{\"provider_name\":\"Bumper\",\"provider_url\":\"http://www.bumper.com\",\"endpoints\":[{\"schemes\":[\"https://www.bumper.com/oembed/bumper\",\"https://www.bumper.com/oembed-s/bumper\"],\"url\":\"https://www.bumper.com/oembed/bumper\",\"discovery\":true}]},{\"provider_name\":\"Bunny\",\"provider_url\":\"https://bunny.net/\",\"endpoints\":[{\"schemes\":[\"https://iframe.mediadelivery.net/*\",\"http://iframe.mediadelivery.net/*\",\"https://video.bunnycdn.com/*\",\"http://video.bunnycdn.com/*\"],\"url\":\"https://video.bunnycdn.com/OEmbed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Buttondown\",\"provider_url\":\"https://buttondown.email/\",\"endpoints\":[{\"schemes\":[\"https://buttondown.email/*\"],\"url\":\"https://buttondown.email/embed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Byzart Project\",\"provider_url\":\"https://cmc.byzart.eu\",\"endpoints\":[{\"schemes\":[\"https://cmc.byzart.eu/files/*\"],\"url\":\"https://cmc.byzart.eu/oembed/\",\"discovery\":false}]},{\"provider_name\":\"Cacoo\",\"provider_url\":\"https://cacoo.com\",\"endpoints\":[{\"schemes\":[\"https://cacoo.com/diagrams/*\"],\"url\":\"http://cacoo.com/oembed.{format}\"}]},{\"provider_name\":\"Canva\",\"provider_url\":\"https://www.canva.com\",\"endpoints\":[{\"schemes\":[\"https://www.canva.com/design/*/view\"],\"url\":\"https://www.canva.com/_oembed\",\"discovery\":true}]},{\"provider_name\":\"Cardinal Blue\",\"provider_url\":\"https://minesweeper.today/\",\"endpoints\":[{\"schemes\":[\"http://minesweeper.today/*\",\"https://minesweeper.today/*\"],\"url\":\"https://minesweeper.today/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"castmake\",\"provider_url\":\"https://www.castmake-ai.com\",\"endpoints\":[{\"schemes\":[\"https://www.castmake-ai.com/c/*/episodes/*\"],\"url\":\"http://castmake-ai.com/api/embed\",\"discovery\":true}]},{\"provider_name\":\"CatBoat\",\"provider_url\":\"http://img.catbo.at/\",\"endpoints\":[{\"schemes\":[\"http://img.catbo.at/*\"],\"url\":\"http://img.catbo.at/oembed.json\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Celero\",\"provider_url\":\"https://www.celero.io\",\"endpoints\":[{\"schemes\":[\"https://embeds.celero.io/*\"],\"url\":\"https://api.celero.io/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Ceros\",\"provider_url\":\"http://www.ceros.com/\",\"endpoints\":[{\"schemes\":[\"http://view.ceros.com/*\",\"https://view.ceros.com/*\"],\"url\":\"http://view.ceros.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Chainflix\",\"provider_url\":\"https://chainflix.net\",\"endpoints\":[{\"schemes\":[\"https://chainflix.net/video/*\",\"https://chainflix.net/video/embed/*\",\"https://*.chainflix.net/video/*\",\"https://*.chainflix.net/video/embed/*\"],\"url\":\"https://www.chainflix.net/video/oembed\",\"discovery\":true}]},{\"provider_name\":\"ChartBlocks\",\"provider_url\":\"http://www.chartblocks.com/\",\"endpoints\":[{\"schemes\":[\"http://public.chartblocks.com/c/*\"],\"url\":\"http://embed.chartblocks.com/1.0/oembed\"}]},{\"provider_name\":\"chirbit.com\",\"provider_url\":\"http://www.chirbit.com/\",\"endpoints\":[{\"schemes\":[\"http://chirb.it/*\"],\"url\":\"http://chirb.it/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"CHROCO\",\"provider_url\":\"https://chroco.ooo/\",\"endpoints\":[{\"schemes\":[\"https://chroco.ooo/mypage/*\",\"https://chroco.ooo/story/*\"],\"url\":\"https://chroco.ooo/embed\",\"discovery\":true}]},{\"provider_name\":\"CircuitLab\",\"provider_url\":\"https://www.circuitlab.com/\",\"endpoints\":[{\"schemes\":[\"https://www.circuitlab.com/circuit/*\"],\"url\":\"https://www.circuitlab.com/circuit/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Clipland\",\"provider_url\":\"http://www.clipland.com/\",\"endpoints\":[{\"schemes\":[\"http://www.clipland.com/v/*\",\"https://www.clipland.com/v/*\"],\"url\":\"https://www.clipland.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Clyp\",\"provider_url\":\"http://clyp.it/\",\"endpoints\":[{\"schemes\":[\"http://clyp.it/*\",\"http://clyp.it/playlist/*\"],\"url\":\"http://api.clyp.it/oembed/\",\"discovery\":true}]},{\"provider_name\":\"CoCo Corp\",\"provider_url\":\"https://ilovecoco.video\",\"endpoints\":[{\"schemes\":[\"https://app.ilovecoco.video/*/embed\"],\"url\":\"https://app.ilovecoco.video/api/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"CodeHS\",\"provider_url\":\"http://www.codehs.com\",\"endpoints\":[{\"schemes\":[\"https://codehs.com/editor/share_abacus/*\"],\"url\":\"https://codehs.com/api/sharedprogram/1/oembed/\",\"discovery\":true}]},{\"provider_name\":\"CodePen\",\"provider_url\":\"https://codepen.io\",\"endpoints\":[{\"schemes\":[\"http://codepen.io/*\",\"https://codepen.io/*\"],\"url\":\"https://codepen.io/api/oembed\"}]},{\"provider_name\":\"Codepoints\",\"provider_url\":\"https://codepoints.net\",\"endpoints\":[{\"schemes\":[\"http://codepoints.net/*\",\"https://codepoints.net/*\",\"http://www.codepoints.net/*\",\"https://www.codepoints.net/*\"],\"url\":\"https://codepoints.net/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"CodeSandbox\",\"provider_url\":\"https://codesandbox.io\",\"endpoints\":[{\"schemes\":[\"https://codesandbox.io/s/*\",\"https://codesandbox.io/embed/*\"],\"url\":\"https://codesandbox.io/oembed\"}]},{\"provider_name\":\"CollegeHumor\",\"provider_url\":\"http://www.collegehumor.com/\",\"endpoints\":[{\"schemes\":[\"http://www.collegehumor.com/video/*\"],\"url\":\"http://www.collegehumor.com/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Commaful\",\"provider_url\":\"https://commaful.com\",\"endpoints\":[{\"schemes\":[\"https://commaful.com/play/*\"],\"url\":\"https://commaful.com/api/oembed/\"}]},{\"provider_name\":\"Coub\",\"provider_url\":\"http://coub.com/\",\"endpoints\":[{\"schemes\":[\"http://coub.com/view/*\",\"http://coub.com/embed/*\"],\"url\":\"http://coub.com/api/oembed.{format}\"}]},{\"provider_name\":\"Crowd Ranking\",\"provider_url\":\"http://crowdranking.com\",\"endpoints\":[{\"schemes\":[\"http://crowdranking.com/*/*\"],\"url\":\"http://crowdranking.com/api/oembed.{format}\"}]},{\"provider_name\":\"Crumb.sh\",\"provider_url\":\"https://crumb.sh\",\"endpoints\":[{\"schemes\":[\"https://crumb.sh/*\"],\"url\":\"https://crumb.sh/oembed/\"}]},{\"provider_name\":\"Cueup DJ Booking\",\"provider_url\":\"https://cueup.io\",\"endpoints\":[{\"schemes\":[\"https://cueup.io/user/*/sounds/*\"],\"url\":\"https://gql.cueup.io/oembed\"}]},{\"provider_name\":\"Curated\",\"provider_url\":\"https://curated.co/\",\"endpoints\":[{\"schemes\":[\"https://*.curated.co/*\"],\"url\":\"https://api.curated.co/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"CustomerDB\",\"provider_url\":\"http://customerdb.com/\",\"endpoints\":[{\"schemes\":[\"https://app.customerdb.com/share/*\"],\"url\":\"https://app.customerdb.com/embed\"}]},{\"provider_name\":\"dadan\",\"provider_url\":\"https://www.dadan.io\",\"endpoints\":[{\"schemes\":[\"https://app.dadan.io/*\",\"https://stage.dadan.io/*\"],\"url\":\"https://app.dadan.io/api/video/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Dailymotion\",\"provider_url\":\"https://www.dailymotion.com\",\"endpoints\":[{\"schemes\":[\"https://www.dailymotion.com/video/*\",\"https://geo.dailymotion.com/player.html?video=*\"],\"url\":\"https://www.dailymotion.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"DALEXNI\",\"provider_url\":\"https://dalexni.com/\",\"endpoints\":[{\"schemes\":[\"https://dalexni.com/i/*\"],\"url\":\"https://dalexni.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Datawrapper\",\"provider_url\":\"http://www.datawrapper.de\",\"endpoints\":[{\"schemes\":[\"https://datawrapper.dwcdn.net/*\"],\"url\":\"https://api.datawrapper.de/v3/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Deseret News\",\"provider_url\":\"https://www.deseret.com\",\"endpoints\":[{\"schemes\":[\"https://*.deseret.com/*\"],\"url\":\"https://embed.deseret.com/\"}]},{\"provider_name\":\"Deviantart.com\",\"provider_url\":\"http://www.deviantart.com\",\"endpoints\":[{\"schemes\":[\"http://*.deviantart.com/art/*\",\"http://*.deviantart.com/*#/d*\",\"http://fav.me/*\",\"http://sta.sh/*\",\"https://*.deviantart.com/art/*\",\"https://*.deviantart.com/*/art/*\",\"https://sta.sh/*\",\"https://*.deviantart.com/*#/d*\"],\"url\":\"http://backend.deviantart.com/oembed\"}]},{\"provider_name\":\"Digiteka\",\"provider_url\":\"https://www.ultimedia.com/\",\"endpoints\":[{\"schemes\":[\"https://www.ultimedia.com/central/video/edit/id/*/topic_id/*/\",\"https://www.ultimedia.com/default/index/videogeneric/id/*/showtitle/1/viewnc/1\",\"https://www.ultimedia.com/default/index/videogeneric/id/*\"],\"url\":\"https://www.ultimedia.com/api/search/oembed\",\"discovery\":true}]},{\"provider_name\":\"DocDroid\",\"provider_url\":\"https://www.docdroid.net/\",\"endpoints\":[{\"schemes\":[\"https://*.docdroid.net/*\",\"http://*.docdroid.net/*\",\"https://docdro.id/*\",\"http://docdro.id/*\",\"https://*.docdroid.com/*\",\"http://*.docdroid.com/*\"],\"url\":\"https://www.docdroid.net/api/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Docswell\",\"provider_url\":\"https://docswell.com\",\"endpoints\":[{\"schemes\":[\"http://docswell.com/s/*/*\",\"https://docswell.com/s/*/*\",\"http://www.docswell.com/s/*/*\",\"https://www.docswell.com/s/*/*\"],\"url\":\"https://www.docswell.com/service/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Dotsub\",\"provider_url\":\"http://dotsub.com/\",\"endpoints\":[{\"schemes\":[\"http://dotsub.com/view/*\"],\"url\":\"http://dotsub.com/services/oembed\"}]},{\"provider_name\":\"Dream Broker\",\"provider_url\":\"https://dreambroker.com\",\"endpoints\":[{\"schemes\":[\"https://www.dreambroker.com/channel/*/*\"],\"url\":\"https://dreambroker.com/channel/oembed\",\"discovery\":true}]},{\"provider_name\":\"DTube\",\"provider_url\":\"https://d.tube/\",\"endpoints\":[{\"schemes\":[\"https://d.tube/v/*\"],\"url\":\"https://api.d.tube/oembed\",\"discovery\":true}]},{\"provider_name\":\"EchoesHQ\",\"provider_url\":\"https://echoeshq.com\",\"endpoints\":[{\"schemes\":[\"http://app.echoeshq.com/embed/*\"],\"url\":\"https://api.echoeshq.com/oembed\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"eduMedia\",\"provider_url\":\"https://www.edumedia-sciences.com/\",\"endpoints\":[{\"url\":\"https://www.edumedia-sciences.com/oembed.json\",\"discovery\":true},{\"url\":\"https://www.edumedia-sciences.com/oembed.xml\",\"discovery\":true}]},{\"provider_name\":\"EgliseInfo\",\"provider_url\":\"http://egliseinfo.catholique.fr/\",\"endpoints\":[{\"schemes\":[\"http://egliseinfo.catholique.fr/*\"],\"url\":\"http://egliseinfo.catholique.fr/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Embedery\",\"provider_url\":\"https://embedery.com/\",\"endpoints\":[{\"schemes\":[\"https://embedery.com/widget/*\"],\"url\":\"https://embedery.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ethfiddle\",\"provider_url\":\"https://www.ethfiddle.com/\",\"endpoints\":[{\"schemes\":[\"https://ethfiddle.com/*\"],\"url\":\"https://ethfiddle.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"EventLive\",\"provider_url\":\"https://eventlive.pro\",\"endpoints\":[{\"schemes\":[\"https://evt.live/*\",\"https://evt.live/*/*\",\"https://live.eventlive.pro/*\",\"https://live.eventlive.pro/*/*\"],\"url\":\"https://evt.live/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"everviz\",\"provider_url\":\"https://everviz.com\",\"endpoints\":[{\"schemes\":[\"https://app.everviz.com/embed/*\",\"http://app.everviz.com/embed/*\"],\"url\":\"https://api.everviz.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ex.Co\",\"provider_url\":\"https://ex.co\",\"endpoints\":[{\"schemes\":[\"https://app.ex.co/stories/*\",\"https://www.playbuzz.com/*\"],\"url\":\"https://oembed.ex.co/item\",\"discovery\":false}]},{\"provider_name\":\"Eyrie\",\"provider_url\":\"https://eyrie.io/\",\"endpoints\":[{\"schemes\":[\"https://eyrie.io/board/*\",\"https://eyrie.io/sparkfun/*\"],\"url\":\"https://eyrie.io/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Facebook\",\"provider_url\":\"https://www.facebook.com/\",\"endpoints\":[{\"schemes\":[\"https://www.facebook.com/*/posts/*\",\"https://www.facebook.com/*/activity/*\",\"https://www.facebook.com/*/photos/*\",\"https://www.facebook.com/photo.php?fbid=*\",\"https://www.facebook.com/photos/*\",\"https://www.facebook.com/permalink.php?story_fbid=*\",\"https://www.facebook.com/media/set?set=*\",\"https://www.facebook.com/questions/*\",\"https://www.facebook.com/notes/*/*/*\"],\"url\":\"https://graph.facebook.com/v16.0/oembed_post\",\"discovery\":false},{\"schemes\":[\"https://www.facebook.com/*/videos/*\",\"https://www.facebook.com/video.php?id=*\",\"https://www.facebook.com/video.php?v=*\"],\"url\":\"https://graph.facebook.com/v16.0/oembed_video\",\"discovery\":false},{\"schemes\":[\"https://www.facebook.com/*\"],\"url\":\"https://graph.facebook.com/v16.0/oembed_page\",\"discovery\":false}]},{\"provider_name\":\"Fader\",\"provider_url\":\"https://app.getfader.com\",\"endpoints\":[{\"schemes\":[\"https://app.getfader.com/projects/*/publish\"],\"url\":\"https://app.getfader.com/api/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Faithlife TV\",\"provider_url\":\"https://faithlifetv.com\",\"endpoints\":[{\"schemes\":[\"https://faithlifetv.com/items/*\",\"https://faithlifetv.com/items/resource/*/*\",\"https://faithlifetv.com/media/*\",\"https://faithlifetv.com/media/assets/*\",\"https://faithlifetv.com/media/resource/*/*\"],\"url\":\"https://faithlifetv.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Figma\",\"provider_url\":\"https://www.figma.com\",\"endpoints\":[{\"schemes\":[\"https://www.figma.com/file/*\"],\"url\":\"https://www.figma.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Firework\",\"provider_url\":\"https://fireworktv.com/\",\"endpoints\":[{\"schemes\":[\"https://*.fireworktv.com/*\",\"https://*.fireworktv.com/embed/*/v/*\"],\"url\":\"https://www.fireworktv.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"FITE\",\"provider_url\":\"https://www.fite.tv/\",\"endpoints\":[{\"schemes\":[\"https://www.fite.tv/watch/*\"],\"url\":\"https://www.fite.tv/oembed\",\"discovery\":true}]},{\"provider_name\":\"Flat\",\"provider_url\":\"https://flat.io\",\"endpoints\":[{\"schemes\":[\"https://flat.io/score/*\",\"https://*.flat.io/score/*\"],\"url\":\"https://flat.io/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Flickr\",\"provider_url\":\"https://www.flickr.com/\",\"endpoints\":[{\"schemes\":[\"http://*.flickr.com/photos/*\",\"http://flic.kr/p/*\",\"http://flic.kr/s/*\",\"https://*.flickr.com/photos/*\",\"https://flic.kr/p/*\",\"https://flic.kr/s/*\",\"https://*.*.flickr.com/*/*\",\"http://*.*.flickr.com/*/*\"],\"url\":\"https://www.flickr.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Flourish\",\"provider_url\":\"https://flourish.studio/\",\"endpoints\":[{\"schemes\":[\"https://public.flourish.studio/visualisation/*\",\"https://public.flourish.studio/story/*\"],\"url\":\"https://app.flourish.studio/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"FlowHubOrg\",\"provider_url\":\"https://flows.flowhub.org\",\"endpoints\":[{\"url\":\"https://flowhub.org/o/embed\",\"schemes\":[\"https://flowhub.org/f/*\",\"https://flowhub.org/s/*\"],\"discovery\":true}]},{\"provider_name\":\"Fooday\",\"provider_url\":\"https://fooday.app\",\"endpoints\":[{\"schemes\":[\"https://fooday.app/*/reviews/*\",\"https://fooday.app/*/spots/*\"],\"url\":\"https://fooday.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"FOX SPORTS Australia\",\"provider_url\":\"http://www.foxsports.com.au\",\"endpoints\":[{\"schemes\":[\"http://fiso.foxsports.com.au/isomorphic-widget/*\",\"https://fiso.foxsports.com.au/isomorphic-widget/*\"],\"url\":\"https://fiso.foxsports.com.au/oembed\"}]},{\"provider_name\":\"Framatube\",\"provider_url\":\"https://framatube.org/\",\"endpoints\":[{\"schemes\":[\"https://framatube.org/w/*\"],\"url\":\"https://framatube.org/services/oembed\"}]},{\"provider_name\":\"FrameBuzz\",\"provider_url\":\"https://framebuzz.com/\",\"endpoints\":[{\"schemes\":[\"http://framebuzz.com/v/*\",\"https://framebuzz.com/v/*\"],\"url\":\"https://framebuzz.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Framer\",\"provider_url\":\"https://www.framer.com\",\"endpoints\":[{\"schemes\":[\"https://framer.com/share/*\",\"https://framer.com/embed/*\"],\"url\":\"https://api.framer.com/web/oembed\",\"discovery\":true}]},{\"provider_name\":\"Geograph Britain and Ireland\",\"provider_url\":\"https://www.geograph.org.uk/\",\"endpoints\":[{\"schemes\":[\"http://*.geograph.org.uk/*\",\"http://*.geograph.co.uk/*\",\"http://*.geograph.ie/*\",\"http://*.wikimedia.org/*_geograph.org.uk_*\"],\"url\":\"http://api.geograph.org.uk/api/oembed\"}]},{\"provider_name\":\"Geograph Channel Islands\",\"provider_url\":\"http://channel-islands.geograph.org/\",\"endpoints\":[{\"schemes\":[\"http://*.geograph.org.gg/*\",\"http://*.geograph.org.je/*\",\"http://channel-islands.geograph.org/*\",\"http://channel-islands.geographs.org/*\",\"http://*.channel.geographs.org/*\"],\"url\":\"http://www.geograph.org.gg/api/oembed\"}]},{\"provider_name\":\"Geograph Germany\",\"provider_url\":\"http://geo-en.hlipp.de/\",\"endpoints\":[{\"schemes\":[\"http://geo-en.hlipp.de/*\",\"http://geo.hlipp.de/*\",\"http://germany.geograph.org/*\"],\"url\":\"http://geo.hlipp.de/restapi.php/api/oembed\"}]},{\"provider_name\":\"Getty Images\",\"provider_url\":\"http://www.gettyimages.com/\",\"endpoints\":[{\"schemes\":[\"http://gty.im/*\"],\"url\":\"http://embed.gettyimages.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Gifnote\",\"provider_url\":\"https://www.gifnote.com/\",\"endpoints\":[{\"url\":\"https://www.gifnote.com/services/oembed\",\"schemes\":[\"https://www.gifnote.com/play/*\"],\"discovery\":true}]},{\"provider_name\":\"GIPHY\",\"provider_url\":\"https://giphy.com\",\"endpoints\":[{\"schemes\":[\"https://giphy.com/gifs/*\",\"https://giphy.com/clips/*\",\"http://gph.is/*\",\"https://media.giphy.com/media/*/giphy.gif\"],\"url\":\"https://giphy.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"GloriaTV\",\"provider_url\":\"https://gloria.tv/\",\"endpoints\":[{\"url\":\"https://gloria.tv/oembed/\",\"discovery\":true}]},{\"provider_name\":\"GMetri\",\"provider_url\":\"https://www.gmetri.com/\",\"endpoints\":[{\"schemes\":[\"https://view.gmetri.com/*\",\"https://*.gmetri.com/*\"],\"url\":\"https://embed.gmetri.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Gong\",\"provider_url\":\"https://www.gong.io/\",\"endpoints\":[{\"schemes\":[\"https://app.gong.io/call?id=*\"],\"url\":\"https://app.gong.io/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Grain\",\"provider_url\":\"https://grain.com\",\"endpoints\":[{\"schemes\":[\"https://grain.co/highlight/*\",\"https://grain.co/share/*\",\"https://grain.com/share/*\"],\"url\":\"https://api.grain.com/_/api/oembed\"}]},{\"provider_name\":\"GT Channel\",\"provider_url\":\"https://gtchannel.com\",\"endpoints\":[{\"schemes\":[\"https://gtchannel.com/watch/*\"],\"url\":\"https://api.luminery.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Gumlet\",\"provider_url\":\"https://www.gumlet.com/\",\"endpoints\":[{\"schemes\":[\"https://gumlet.tv/watch/*\",\"https://play.gumlet.io/embed/*\"],\"url\":\"https://api.gumlet.com/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Gyazo\",\"provider_url\":\"https://gyazo.com\",\"endpoints\":[{\"schemes\":[\"https://gyazo.com/*\"],\"url\":\"https://api.gyazo.com/api/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"HASH\",\"provider_url\":\"https://hash.ai\",\"endpoints\":[{\"schemes\":[\"https://core.hash.ai/@*\"],\"url\":\"https://api.hash.ai/oembed\",\"discovery\":false}]},{\"provider_name\":\"hearthis.at\",\"provider_url\":\"https://hearthis.at/\",\"endpoints\":[{\"schemes\":[\"https://hearthis.at/*/*/\",\"https://hearthis.at/*/set/*/\"],\"url\":\"https://hearthis.at/oembed/?format=json\",\"discovery\":true}]},{\"provider_name\":\"helenenglish_education\",\"provider_url\":\"https://helenenglish.education/\",\"endpoints\":[{\"schemes\":[\"https://helenenglish.education/widget*\"],\"url\":\"https://helenenglish.education/embed\",\"discovery\":true}]},{\"provider_name\":\"Heyzine\",\"provider_url\":\"https://heyzine.com\",\"endpoints\":[{\"schemes\":[\"https://heyzine.com/flip-book/*\",\"https://*.hflip.co/*\",\"https://*.aflip.in/*\"],\"url\":\"https://heyzine.com/api1/oembed\",\"discovery\":true}]},{\"provider_name\":\"hihaho\",\"provider_url\":\"https://www.hihaho.com\",\"endpoints\":[{\"schemes\":[\"https://player.hihaho.com/*\"],\"url\":\"https://player.hihaho.com/services/oembed\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"HippoVideo\",\"provider_url\":\"https://hippovideo.io\",\"endpoints\":[{\"schemes\":[\"http://*.hippovideo.io/*\",\"https://*.hippovideo.io/*\"],\"url\":\"https://www.hippovideo.io/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Homey\",\"provider_url\":\"https://homey.app\",\"endpoints\":[{\"schemes\":[\"https://homey.app/f/*\",\"https://homey.app/*/flow/*\"],\"url\":\"https://homey.app/api/oembed/flow\",\"discovery\":true}]},{\"provider_name\":\"Hopvue\",\"provider_url\":\"https://www.hopvue.com\",\"endpoints\":[{\"schemes\":[\"https://*.hopvue.com/*\"],\"url\":\"https://portal.hopvue.com/api/oembed/\",\"discovery\":true}]},{\"provider_name\":\"HuffDuffer\",\"provider_url\":\"http://huffduffer.com\",\"endpoints\":[{\"schemes\":[\"http://huffduffer.com/*/*\"],\"url\":\"http://huffduffer.com/oembed\"}]},{\"provider_name\":\"Hulu\",\"provider_url\":\"http://www.hulu.com/\",\"endpoints\":[{\"schemes\":[\"http://www.hulu.com/watch/*\"],\"url\":\"http://www.hulu.com/api/oembed.{format}\"}]},{\"provider_name\":\"Icosa Gallery\",\"provider_url\":\"https://icosa.gallery\",\"endpoints\":[{\"schemes\":[\"https://icosa.gallery/view/*\"],\"url\":\"https://api.icosa.gallery/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ideamapper\",\"provider_url\":\"https://ideamapper.com/\",\"endpoints\":[{\"schemes\":[\"https://oembed.ideamapper.com/*\"],\"url\":\"https://oembed.ideamapper.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Idomoo\",\"provider_url\":\"https://idomoo.com/\",\"endpoints\":[{\"schemes\":[\"https://*.idomoo.com/*\"],\"url\":\"https://oembed.idomoo.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"iFixit\",\"provider_url\":\"http://www.iFixit.com\",\"endpoints\":[{\"schemes\":[\"http://www.ifixit.com/Guide/View/*\"],\"url\":\"http://www.ifixit.com/Embed\"}]},{\"provider_name\":\"IFTTT\",\"provider_url\":\"http://www.ifttt.com/\",\"endpoints\":[{\"schemes\":[\"http://ifttt.com/recipes/*\"],\"url\":\"http://www.ifttt.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Ignite\",\"provider_url\":\"https://ignite.video/\",\"endpoints\":[{\"schemes\":[\"https://*.videocdn.net/player/*\",\"https://*.euvideocdn.com/player/*\"],\"url\":\"https://app.ignitevideo.cloud/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"iHeartRadio\",\"provider_url\":\"https://www.iheart.com\",\"endpoints\":[{\"schemes\":[\"https://www.iheart.com/podcast/*/*\"],\"url\":\"https://www.iheart.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"iMenuPro\",\"provider_url\":\"https://imenupro.com\",\"endpoints\":[{\"schemes\":[\"http://qr.imenupro.com/*\",\"https://qr.imenupro.com/*\"],\"url\":\"https://qr.imenupro.com/api/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Incredible\",\"provider_url\":\"https://incredible.dev\",\"endpoints\":[{\"schemes\":[\"https://incredible.dev/watch/*\"],\"url\":\"https://oembed.incredible.dev/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Indaco\",\"provider_url\":\"https://player.indacolive.com/\",\"endpoints\":[{\"schemes\":[\"https://player.indacolive.com/player/jwp/clients/*\"],\"url\":\"https://player.indacolive.com/services/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Infogram\",\"provider_url\":\"https://infogram.com/\",\"endpoints\":[{\"schemes\":[\"https://infogram.com/*\"],\"url\":\"https://infogram.com/oembed\"}]},{\"provider_name\":\"Infoveave\",\"provider_url\":\"https://infoveave.net/\",\"endpoints\":[{\"schemes\":[\"https://*.infoveave.net/E/*\",\"https://*.infoveave.net/P/*\"],\"url\":\"https://infoveave.net/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Injurymap\",\"provider_url\":\"https://www.injurymap.com/\",\"endpoints\":[{\"schemes\":[\"https://www.injurymap.com/exercises/*\"],\"url\":\"https://www.injurymap.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Inoreader\",\"provider_url\":\"https://www.inoreader.com\",\"endpoints\":[{\"schemes\":[\"https://www.inoreader.com/oembed/\"],\"url\":\"https://www.inoreader.com/oembed/api/\",\"discovery\":true}]},{\"provider_name\":\"inphood\",\"provider_url\":\"http://inphood.com/\",\"endpoints\":[{\"schemes\":[\"http://*.inphood.com/*\"],\"url\":\"http://api.inphood.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Insight Timer\",\"provider_url\":\"https://insighttimer.com/\",\"endpoints\":[{\"schemes\":[\"https://insighttimer.com/*\"],\"url\":\"https://widgets.insighttimer.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Instagram\",\"provider_url\":\"https://instagram.com\",\"endpoints\":[{\"schemes\":[\"http://instagram.com/*/p/*\",\"http://www.instagram.com/*/p/*\",\"https://instagram.com/*/p/*\",\"https://www.instagram.com/*/p/*\",\"http://instagram.com/p/*\",\"http://instagr.am/p/*\",\"http://www.instagram.com/p/*\",\"http://www.instagr.am/p/*\",\"https://instagram.com/p/*\",\"https://instagr.am/p/*\",\"https://www.instagram.com/p/*\",\"https://www.instagr.am/p/*\",\"http://instagram.com/tv/*\",\"http://instagr.am/tv/*\",\"http://www.instagram.com/tv/*\",\"http://www.instagr.am/tv/*\",\"https://instagram.com/tv/*\",\"https://instagr.am/tv/*\",\"https://www.instagram.com/tv/*\",\"https://www.instagr.am/tv/*\",\"http://www.instagram.com/reel/*\",\"https://www.instagram.com/reel/*\",\"http://instagram.com/reel/*\",\"https://instagram.com/reel/*\",\"http://instagr.am/reel/*\",\"https://instagr.am/reel/*\"],\"url\":\"https://graph.facebook.com/v16.0/instagram_oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Insticator Inc\",\"provider_url\":\"https://www.insticator.com/\",\"endpoints\":[{\"schemes\":[\"https://ppa.insticator.com/embed-unit/*\"],\"url\":\"https://www.insticator.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Issuu\",\"provider_url\":\"https://issuu.com/\",\"endpoints\":[{\"schemes\":[\"https://issuu.com/*/docs/*\"],\"url\":\"https://issuu.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Itabtech infosys\",\"provider_url\":\"https://samay.itabtechinfosys.com/\",\"endpoints\":[{\"schemes\":[\"https://samay.itabtechinfosys.com/*\"],\"url\":\"https://samay.itabtechinfosys.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"itemis CREATE\",\"provider_url\":\"https://play.itemis.io\",\"endpoints\":[{\"schemes\":[\"https://play.itemis.io/*\"],\"url\":\"https://create.storage.api.itemis.io/api/embed\"}]},{\"provider_name\":\"Jovian\",\"provider_url\":\"https://jovian.com/\",\"endpoints\":[{\"schemes\":[\"https://jovian.ml/*\",\"https://jovian.ml/viewer*\",\"https://*.jovian.ml/*\",\"https://jovian.ai/*\",\"https://jovian.ai/viewer*\",\"https://*.jovian.ai/*\",\"https://jovian.com/*\",\"https://jovian.com/viewer*\",\"https://*.jovian.com/*\"],\"url\":\"https://api.jovian.com/oembed.json\",\"discovery\":true}]},{\"provider_name\":\"KakaoTv\",\"provider_url\":\"https://tv.kakao.com/\",\"endpoints\":[{\"schemes\":[\"https://tv.kakao.com/channel/*/cliplink/*\",\"https://tv.kakao.com/m/channel/*/cliplink/*\",\"https://tv.kakao.com/channel/v/*\",\"https://tv.kakao.com/channel/*/livelink/*\",\"https://tv.kakao.com/m/channel/*/livelink/*\",\"https://tv.kakao.com/channel/l/*\"],\"url\":\"https://tv.kakao.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kickstarter\",\"provider_url\":\"http://www.kickstarter.com\",\"endpoints\":[{\"schemes\":[\"http://www.kickstarter.com/projects/*\"],\"url\":\"http://www.kickstarter.com/services/oembed\"}]},{\"provider_name\":\"Kidoju\",\"provider_url\":\"https://www.kidoju.com/\",\"endpoints\":[{\"schemes\":[\"https://www.kidoju.com/en/x/*/*\",\"https://www.kidoju.com/fr/x/*/*\"],\"url\":\"https://www.kidoju.com/api/oembed\"}]},{\"provider_name\":\"Kirim.Email\",\"provider_url\":\"https://kirim.email/\",\"endpoints\":[{\"schemes\":[\"https://halaman.email/form/*\",\"https://aplikasi.kirim.email/form/*\"],\"url\":\"https://halaman.email/service/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kit\",\"provider_url\":\"https://kit.co/\",\"endpoints\":[{\"schemes\":[\"http://kit.co/*/*\",\"https://kit.co/*/*\"],\"url\":\"https://embed.kit.co/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kitchenbowl\",\"provider_url\":\"http://www.kitchenbowl.com\",\"endpoints\":[{\"schemes\":[\"http://www.kitchenbowl.com/recipe/*\"],\"url\":\"http://www.kitchenbowl.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"kmdr\",\"provider_url\":\"https://kmdr.sh\",\"endpoints\":[{\"schemes\":[\"https://app.kmdr.sh/h/*\",\"https://app.kmdr.sh/history/*\"],\"url\":\"https://api.kmdr.sh/services/oembed\"}]},{\"provider_name\":\"Knacki\",\"provider_url\":\"http://jdr.knacki.info\",\"endpoints\":[{\"schemes\":[\"http://jdr.knacki.info/meuh/*\",\"https://jdr.knacki.info/meuh/*\"],\"url\":\"https://jdr.knacki.info/oembed\"}]},{\"provider_name\":\"Knowledge Pad\",\"provider_url\":\"https://knowledgepad.co/\",\"endpoints\":[{\"schemes\":[\"https://knowledgepad.co/#/knowledge/*\"],\"url\":\"https://api.spoonacular.com/knowledge/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Kooapp\",\"provider_url\":\"https://kooapp.com\",\"endpoints\":[{\"schemes\":[\"https://*.kooapp.com/koo/*\",\"http://*.kooapp.com/koo/*\"],\"url\":\"https://embed.kooapp.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kurozora\",\"provider_url\":\"https://kurozora.app/\",\"endpoints\":[{\"schemes\":[\"https://kurozora.app/episodes/*\",\"https://kurozora.app/songs/*\"],\"url\":\"https://kurozora.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"LearningApps.org\",\"provider_url\":\"http://learningapps.org/\",\"endpoints\":[{\"schemes\":[\"http://learningapps.org/*\"],\"url\":\"http://learningapps.org/oembed.php\",\"discovery\":true}]},{\"provider_name\":\"LeMans.Pod\",\"provider_url\":\"https://umotion-test.univ-lemans.fr/\",\"endpoints\":[{\"schemes\":[\"https://umotion-test.univ-lemans.fr/video/*\"],\"url\":\"https://umotion-test.univ-lemans.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"Lille.Pod\",\"provider_url\":\"https://pod.univ-lille.fr/\",\"endpoints\":[{\"schemes\":[\"https://pod.univ-lille.fr/video/*\"],\"url\":\"https://pod.univ-lille.fr/video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Line Place\",\"provider_url\":\"https://place.line.me\",\"endpoints\":[{\"schemes\":[\"https://place.line.me/businesses/*\"],\"url\":\"https://place.line.me/oembed\"}]},{\"provider_name\":\"Linkstackz\",\"provider_url\":\"https://www.linkstackz.com/\",\"endpoints\":[{\"schemes\":[\"https://linkstackz.com/irf/*\",\"https://linkstackz.com/post/*\"],\"url\":\"https://api.linkstackz.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Livestream\",\"provider_url\":\"https://livestream.com/\",\"endpoints\":[{\"schemes\":[\"https://livestream.com/accounts/*/events/*\",\"https://livestream.com/accounts/*/events/*/videos/*\",\"https://livestream.com/*/events/*\",\"https://livestream.com/*/events/*/videos/*\",\"https://livestream.com/*/*\",\"https://livestream.com/*/*/videos/*\"],\"url\":\"https://livestream.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Loom\",\"provider_url\":\"https://www.loom.com/\",\"endpoints\":[{\"schemes\":[\"https://loom.com/i/*\",\"https://loom.com/share/*\"],\"url\":\"https://www.loom.com/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"LottieFiles\",\"provider_url\":\"https://lottiefiles.com/\",\"endpoints\":[{\"schemes\":[\"https://lottiefiles.com/*\",\"https://*.lottiefiles.com/*\",\"https://*.lottie.host/*\",\"https://lottie.host/*\"],\"url\":\"https://embed.lottiefiles.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Ludus\",\"provider_url\":\"https://ludus.one\",\"endpoints\":[{\"schemes\":[\"https://app.ludus.one/*\"],\"url\":\"https://app.ludus.one/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Lumiere\",\"provider_url\":\"https://latd.com\",\"endpoints\":[{\"schemes\":[\"https://*.lumiere.is/v/*\"],\"url\":\"https://admin.lumiere.is/api/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"marimo\",\"provider_url\":\"https://marimo.io/\",\"endpoints\":[{\"schemes\":[\"https://marimo.app/*\"],\"url\":\"https://marimo.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"MathEmbed\",\"provider_url\":\"http://mathembed.com\",\"endpoints\":[{\"schemes\":[\"http://mathembed.com/latex?inputText=*\",\"http://mathembed.com/latex?inputText=*\"],\"url\":\"http://mathembed.com/oembed\"}]},{\"provider_name\":\"Matterport\",\"provider_url\":\"https://matterport.com/\",\"endpoints\":[{\"url\":\"https://my.matterport.com/api/v1/models/oembed/\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"me.me\",\"provider_url\":\"https://me.me/\",\"endpoints\":[{\"schemes\":[\"https://me.me/i/*\"],\"url\":\"https://me.me/oembed\",\"discovery\":true}]},{\"provider_name\":\"Mediastream\",\"provider_url\":\"https://mdstrm.com/\",\"endpoints\":[{\"schemes\":[\"https://mdstrm.com/embed/*\",\"https://mdstrm.com/live-stream/*\",\"https://mdstrm.com/image/*\"],\"url\":\"https://mdstrm.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Medienarchiv der Künste - Zürcher Hochschule der Künste\",\"provider_url\":\"https://medienarchiv.zhdk.ch/\",\"endpoints\":[{\"schemes\":[\"https://medienarchiv.zhdk.ch/entries/*\"],\"url\":\"https://medienarchiv.zhdk.ch/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Mermaid Ink\",\"provider_url\":\"https://mermaid.ink\",\"endpoints\":[{\"schemes\":[\"https://mermaid.ink/img/*\",\"https://mermaid.ink/svg/*\"],\"url\":\"https://mermaid.ink/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Microsoft Stream\",\"provider_url\":\"https://stream.microsoft.com\",\"endpoints\":[{\"schemes\":[\"https://*.microsoftstream.com/video/*\",\"https://*.microsoftstream.com/channel/*\"],\"url\":\"https://web.microsoftstream.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Minerva\",\"provider_url\":\"https://www.minervaknows.com\",\"endpoints\":[{\"schemes\":[\"https://www.minervaknows.com/featured-recipes/*\",\"https://www.minervaknows.com/themes/*\",\"https://www.minervaknows.com/themes/*/recipes/*\",\"https://app.minervaknows.com/recipes/*\",\"https://app.minervaknows.com/recipes/*/follow\"],\"url\":\"https://oembed.minervaknows.com\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Miro\",\"provider_url\":\"https://miro.com/\",\"endpoints\":[{\"schemes\":[\"https://miro.com/app/board/*\"],\"url\":\"https://miro.com/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"MixCloud\",\"provider_url\":\"https://mixcloud.com/\",\"endpoints\":[{\"schemes\":[\"http://www.mixcloud.com/*/*/\",\"https://www.mixcloud.com/*/*/\"],\"url\":\"https://www.mixcloud.com/oembed/\"}]},{\"provider_name\":\"Mixpanel\",\"provider_url\":\"https://mixpanel.com/\",\"endpoints\":[{\"schemes\":[\"https://mixpanel.com/*\",\"https://*.mixpanel.com/*\"],\"url\":\"https://mixpanel.com/api/app/embed/oembed/\"}]},{\"provider_name\":\"Moby Picture\",\"provider_url\":\"http://www.mobypicture.com\",\"endpoints\":[{\"schemes\":[\"http://www.mobypicture.com/user/*/view/*\",\"http://moby.to/*\"],\"url\":\"http://api.mobypicture.com/oEmbed\"}]},{\"provider_name\":\"Music Box Maniacs\",\"provider_url\":\"https://musicboxmaniacs.com/\",\"endpoints\":[{\"schemes\":[\"https://musicboxmaniacs.com/explore/melody/*\"],\"url\":\"https://musicboxmaniacs.com/embed/\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"myBeweeg\",\"provider_url\":\"https://mybeweeg.com\",\"endpoints\":[{\"schemes\":[\"https://mybeweeg.com/w/*\"],\"url\":\"https://mybeweeg.com/services/oembed\"}]},{\"provider_name\":\"MySQL Visual Explain\",\"provider_url\":\"https://mysqlexplain.com\",\"endpoints\":[{\"schemes\":[\"https://mysqlexplain.com/explain/*\",\"https://embed.mysqlexplain.com/explain/*\"],\"url\":\"https://api.mysqlexplain.com/v2/oembed.json\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Namchey\",\"provider_url\":\"https://namchey.com\",\"endpoints\":[{\"schemes\":[\"https://namchey.com/embeds/*\"],\"url\":\"https://namchey.com/api/oembed\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"nanoo.tv\",\"provider_url\":\"https://www.nanoo.tv/\",\"endpoints\":[{\"schemes\":[\"http://*.nanoo.tv/link/*\",\"http://nanoo.tv/link/*\",\"http://*.nanoo.pro/link/*\",\"http://nanoo.pro/link/*\",\"https://*.nanoo.tv/link/*\",\"https://nanoo.tv/link/*\",\"https://*.nanoo.pro/link/*\",\"https://nanoo.pro/link/*\",\"http://media.zhdk.ch/signatur/*\",\"http://new.media.zhdk.ch/signatur/*\",\"https://media.zhdk.ch/signatur/*\",\"https://new.media.zhdk.ch/signatur/*\"],\"url\":\"https://www.nanoo.tv/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Nasjonalbiblioteket\",\"provider_url\":\"https://www.nb.no/\",\"endpoints\":[{\"schemes\":[\"https://www.nb.no/items/*\"],\"url\":\"https://api.nb.no/catalog/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Natural Atlas\",\"provider_url\":\"https://naturalatlas.com/\",\"endpoints\":[{\"schemes\":[\"https://naturalatlas.com/*\",\"https://naturalatlas.com/*/*\",\"https://naturalatlas.com/*/*/*\",\"https://naturalatlas.com/*/*/*/*\"],\"url\":\"https://naturalatlas.com/oembed.{format}\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"NDLA - Norwegian Digital Learning Arena\",\"provider_url\":\"https://ndla.no\",\"endpoints\":[{\"schemes\":[\"https://ndla.no/*\",\"https://ndla.no/article/*\",\"https://ndla.no/audio/*\",\"https://ndla.no/concept/*\",\"https://ndla.no/image/*\",\"https://ndla.no/video/*\"],\"url\":\"https://ndla.no/oembed\",\"discovery\":false}]},{\"provider_name\":\"Nebula\",\"provider_url\":\"https://nebula.tv\",\"endpoints\":[{\"url\":\"https://nebula.tv/api/oembed\",\"formats\":[\"json\"],\"schemes\":[\"https://nebula.tv/videos/*\"]}]},{\"provider_name\":\"Nebula Beta\",\"provider_url\":\"https://beta.nebula.tv\",\"endpoints\":[{\"url\":\"https://beta.nebula.tv/api/oembed\",\"formats\":[\"json\"],\"schemes\":[\"https://beta.nebula.tv/videos/*\"]}]},{\"provider_name\":\"Needle Cloud\",\"provider_url\":\"https://cloud.needle.tools\",\"endpoints\":[{\"schemes\":[\"https://cloud.needle.tools/-/assets/*/file\",\"https://cloud.needle.tools/view?file=*\",\"https://*.needle.run/*\"],\"url\":\"https://cloud.needle.tools/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"neetoRecord\",\"provider_url\":\"https://neetorecord.com\",\"endpoints\":[{\"schemes\":[\"https://*.neetorecord.com/watch/*\"],\"url\":\"https://api.neetorecord.com/api/v1/oembed\"}]},{\"provider_name\":\"nfb.ca\",\"provider_url\":\"http://www.nfb.ca/\",\"endpoints\":[{\"schemes\":[\"http://*.nfb.ca/film/*\"],\"url\":\"http://www.nfb.ca/remote/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"NoPaste\",\"provider_url\":\"https://nopaste.ml\",\"endpoints\":[{\"schemes\":[\"https://nopaste.ml/*\"],\"url\":\"https://oembed.nopaste.ml\",\"discovery\":false}]},{\"provider_name\":\"Observable\",\"provider_url\":\"https://observablehq.com\",\"endpoints\":[{\"schemes\":[\"https://observablehq.com/@*/*\",\"https://observablehq.com/d/*\",\"https://observablehq.com/embed/*\"],\"url\":\"https://api.observablehq.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Odds.com.au\",\"provider_url\":\"https://www.odds.com.au\",\"endpoints\":[{\"schemes\":[\"https://www.odds.com.au/*\",\"https://odds.com.au/*\"],\"url\":\"https://www.odds.com.au/api/oembed/\"}]},{\"provider_name\":\"Odesli (formerly Songlink)\",\"provider_url\":\"https://odesli.co\",\"endpoints\":[{\"schemes\":[\"https://song.link/*\",\"https://album.link/*\",\"https://artist.link/*\",\"https://playlist.link/*\",\"https://pods.link/*\",\"https://mylink.page/*\",\"https://odesli.co/*\"],\"url\":\"https://song.link/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Odysee\",\"provider_url\":\"https://odysee.com\",\"endpoints\":[{\"schemes\":[\"https://odysee.com/*/*\",\"https://odysee.com/*\"],\"url\":\"https://odysee.com/$/oembed\",\"discovery\":true}]},{\"provider_name\":\"Official FM\",\"provider_url\":\"http://official.fm\",\"endpoints\":[{\"schemes\":[\"http://official.fm/tracks/*\",\"http://official.fm/playlists/*\"],\"url\":\"http://official.fm/services/oembed.{format}\"}]},{\"provider_name\":\"Omniscope\",\"provider_url\":\"https://omniscope.me/\",\"endpoints\":[{\"schemes\":[\"https://omniscope.me/*\"],\"url\":\"https://omniscope.me/_global_/oembed/json\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Omny Studio\",\"provider_url\":\"https://omnystudio.com\",\"endpoints\":[{\"schemes\":[\"https://omny.fm/shows/*\"],\"url\":\"https://omny.fm/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Orbitvu\",\"provider_url\":\"https://orbitvu.co\",\"endpoints\":[{\"schemes\":[\"https://orbitvu.co/001/*/ov3601/view\",\"https://orbitvu.co/001/*/ov3601/*/view\",\"https://orbitvu.co/001/*/ov3602/*/view\",\"https://orbitvu.co/001/*/2/orbittour/*/view\",\"https://orbitvu.co/001/*/1/2/orbittour/*/view\",\"http://orbitvu.co/001/*/ov3601/view\",\"http://orbitvu.co/001/*/ov3601/*/view\",\"http://orbitvu.co/001/*/ov3602/*/view\",\"http://orbitvu.co/001/*/2/orbittour/*/view\",\"http://orbitvu.co/001/*/1/2/orbittour/*/view\"],\"url\":\"http://orbitvu.co/service/oembed\",\"discovery\":true}]},{\"provider_name\":\"Origits\",\"provider_url\":\"https://origits.com/\",\"endpoints\":[{\"schemes\":[\"https://origits.com/v/*\"],\"url\":\"https://origits.net/oembed\",\"discovery\":true},{\"schemes\":[\"https://origits.com/v/*\"],\"url\":\"https://origits.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Outplayed.tv\",\"provider_url\":\"https://outplayed.tv/\",\"endpoints\":[{\"schemes\":[\"https://outplayed.tv/media/*\"],\"url\":\"https://outplayed.tv/oembed\",\"discovery\":true}]},{\"provider_name\":\"Overflow\",\"provider_url\":\"https://overflow.io\",\"endpoints\":[{\"schemes\":[\"https://overflow.io/s/*\",\"https://overflow.io/embed/*\"],\"url\":\"https://overflow.io/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"OZ\",\"provider_url\":\"https://www.oz.com/\",\"endpoints\":[{\"schemes\":[\"https://www.oz.com/*/video/*\"],\"url\":\"https://core.oz.com/oembed\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Padlet\",\"provider_url\":\"https://padlet.com/\",\"endpoints\":[{\"schemes\":[\"https://padlet.com/*\"],\"url\":\"https://padlet.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Panda Video\",\"provider_url\":\"https://pandavideo.com/\",\"endpoints\":[{\"schemes\":[\"https://*.tv.pandavideo.com.br/embed/?v=*\",\"https://*.tv.pandavideo.com.br/*/playlist.m3u8\",\"https://dashboard.pandavideo.com.br/#/videos/*\"],\"url\":\"https://api-v2.pandavideo.com.br/oembed\",\"discovery\":true}]},{\"provider_name\":\"Pastery\",\"provider_url\":\"https://www.pastery.net\",\"endpoints\":[{\"schemes\":[\"http://pastery.net/*\",\"https://pastery.net/*\",\"http://www.pastery.net/*\",\"https://www.pastery.net/*\"],\"url\":\"https://www.pastery.net/oembed\",\"discovery\":true}]},{\"provider_name\":\"PeerTube.TV\",\"provider_url\":\"https://peertube.tv/\",\"endpoints\":[{\"schemes\":[\"https://peertube.tv/w/*\"],\"url\":\"https://peertube.tv/services/oembed\"}]},{\"provider_name\":\"Picturelfy\",\"provider_url\":\"https://www.picturelfy.com/\",\"endpoints\":[{\"schemes\":[\"http://www.picturelfy.com/p/*\",\"https://www.picturelfy.com/p/*\"],\"url\":\"https://api.picturelfy.com/service/oembed/\",\"discovery\":false}]},{\"provider_name\":\"Piggy\",\"provider_url\":\"https://piggy.to\",\"endpoints\":[{\"schemes\":[\"https://piggy.to/@*/*\",\"https://piggy.to/view/*\"],\"url\":\"https://piggy.to/oembed\"}]},{\"provider_name\":\"Pikasso\",\"provider_url\":\"https://builder.pikasso.xyz\",\"endpoints\":[{\"schemes\":[\"https://*.builder.pikasso.xyz/embed/*\"],\"url\":\"https://builder.pikasso.xyz/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"PingVP\",\"provider_url\":\"https://www.pingvp.com/\",\"endpoints\":[{\"url\":\"https://beta.pingvp.com.kpnis.nl/p/oembed.php\",\"discovery\":true}]},{\"provider_name\":\"Pinpoll\",\"provider_url\":\"https://www.pinpoll.com/products/tools\",\"endpoints\":[{\"schemes\":[\"https://tools.pinpoll.com/embed/*\"],\"url\":\"https://tools.pinpoll.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Pinterest\",\"provider_url\":\"https://www.pinterest.com\",\"endpoints\":[{\"schemes\":[\"https://www.pinterest.com/*\"],\"url\":\"https://www.pinterest.com/oembed.json\",\"discovery\":true}]},{\"provider_name\":\"PitchHub\",\"provider_url\":\"https://www.pitchhub.com/\",\"endpoints\":[{\"schemes\":[\"https://player.pitchhub.com/en/public/player/*\"],\"url\":\"https://player.pitchhub.com/en/public/oembed\",\"discovery\":true}]},{\"provider_name\":\"Pixdor\",\"provider_url\":\"http://www.pixdor.com/\",\"endpoints\":[{\"schemes\":[\"https://store.pixdor.com/place-marker-widget/*/show\",\"https://store.pixdor.com/map/*/show\"],\"url\":\"https://store.pixdor.com/oembed\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"Plusdocs\",\"provider_url\":\"http://plusdocs.com\",\"endpoints\":[{\"schemes\":[\"https://app.plusdocs.com/*/snapshots/*\",\"https://app.plusdocs.com/*/pages/edit/*\",\"https://app.plusdocs.com/*/pages/share/*\"],\"url\":\"https://app.plusdocs.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Podbean\",\"provider_url\":\"http://podbean.com\",\"endpoints\":[{\"schemes\":[\"https://*.podbean.com/e/*\",\"http://*.podbean.com/e/*\"],\"url\":\"https://api.podbean.com/v1/oembed\"}]},{\"provider_name\":\"Poll Daddy\",\"provider_url\":\"http://polldaddy.com\",\"endpoints\":[{\"schemes\":[\"http://*.polldaddy.com/s/*\",\"http://*.polldaddy.com/poll/*\",\"http://*.polldaddy.com/ratings/*\"],\"url\":\"http://polldaddy.com/oembed/\"}]},{\"provider_name\":\"Portfolium\",\"provider_url\":\"https://portfolium.com\",\"endpoints\":[{\"schemes\":[\"https://portfolium.com/entry/*\"],\"url\":\"https://api.portfolium.com/oembed\"}]},{\"provider_name\":\"Present\",\"provider_url\":\"https://present.do\",\"endpoints\":[{\"schemes\":[\"https://present.do/decks/*\"],\"url\":\"https://gateway.cobalt.run/present/decks/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Prezi Video\",\"provider_url\":\"https://prezi.com/\",\"endpoints\":[{\"schemes\":[\"https://prezi.com/v/*\",\"https://*.prezi.com/v/*\"],\"url\":\"https://prezi.com/v/oembed\",\"discovery\":true}]},{\"provider_name\":\"QTpi\",\"provider_url\":\"https://qtpi.gg/\",\"endpoints\":[{\"schemes\":[\"https://qtpi.gg/fashion/*\"],\"url\":\"https://qtpi.gg/fashion/oembed\",\"discovery\":true}]},{\"provider_name\":\"Quartr\",\"provider_url\":\"http://quartr.com\",\"endpoints\":[{\"schemes\":[\"https://quartr.com/*\",\"https://web.quartr.com/*\"],\"url\":\"https://web.quartr.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Quiz.biz\",\"provider_url\":\"http://www.quiz.biz/\",\"endpoints\":[{\"schemes\":[\"http://www.quiz.biz/quizz-*.html\"],\"url\":\"http://www.quiz.biz/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Quizz.biz\",\"provider_url\":\"http://www.quizz.biz/\",\"endpoints\":[{\"schemes\":[\"http://www.quizz.biz/quizz-*.html\"],\"url\":\"http://www.quizz.biz/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"RadioPublic\",\"provider_url\":\"https://radiopublic.com\",\"endpoints\":[{\"schemes\":[\"https://play.radiopublic.com/*\",\"https://radiopublic.com/*\",\"https://www.radiopublic.com/*\",\"http://play.radiopublic.com/*\",\"http://radiopublic.com/*\",\"http://www.radiopublic.com/*\",\"https://*.radiopublic.com/*\"],\"url\":\"https://oembed.radiopublic.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Raindrop\",\"provider_url\":\"https://raindrop.io\",\"endpoints\":[{\"schemes\":[\"https://raindrop.io/*\",\"https://raindrop.io/*/*\",\"https://raindrop.io/*/*/*\",\"https://raindrop.io/*/*/*/*\"],\"url\":\"https://pub.raindrop.io/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"rcvis\",\"provider_url\":\"https://www.rcvis.com/\",\"endpoints\":[{\"schemes\":[\"https://www.rcvis.com/v/*\",\"https://www.rcvis.com/visualize=*\",\"https://www.rcvis.com/ve/*\",\"https://www.rcvis.com/visualizeEmbedded=*\"],\"url\":\"https://animatron.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Reddit\",\"provider_url\":\"https://reddit.com/\",\"endpoints\":[{\"schemes\":[\"https://reddit.com/r/*/comments/*/*\",\"https://www.reddit.com/r/*/comments/*/*\"],\"url\":\"https://www.reddit.com/oembed\"}]},{\"provider_name\":\"Redlof-Medien\",\"provider_url\":\"https://redlof-medien.de\",\"endpoints\":[{\"schemes\":[\"https://redlof-medien.de/*\",\"https://www.redlof-medien.de/*\"],\"url\":\"https://redlof-medien.de/wp-json/oembed/1.0/embed\",\"discovery\":true},{\"schemes\":[\"https://show.wexcreator.com/*\",\"https://showroom.redlof-medien.de/*\"],\"url\":\"https://api.wexcreator.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"ReleaseWire\",\"provider_url\":\"http://www.releasewire.com/\",\"endpoints\":[{\"schemes\":[\"http://rwire.com/*\"],\"url\":\"http://publisher.releasewire.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Replit\",\"provider_url\":\"https://replit.com/\",\"endpoints\":[{\"schemes\":[\"https://repl.it/@*/*\",\"https://replit.com/@*/*\"],\"url\":\"https://replit.com/data/oembed\",\"discovery\":true}]},{\"provider_name\":\"ReverbNation\",\"provider_url\":\"https://www.reverbnation.com/\",\"endpoints\":[{\"schemes\":[\"https://www.reverbnation.com/*\",\"https://www.reverbnation.com/*/songs/*\"],\"url\":\"https://www.reverbnation.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Roomshare\",\"provider_url\":\"http://roomshare.jp\",\"endpoints\":[{\"schemes\":[\"http://roomshare.jp/post/*\",\"http://roomshare.jp/en/post/*\"],\"url\":\"http://roomshare.jp/en/oembed.{format}\"}]},{\"provider_name\":\"RoosterTeeth\",\"provider_url\":\"https://roosterteeth.com\",\"endpoints\":[{\"schemes\":[\"https://roosterteeth.com/*\"],\"url\":\"https://roosterteeth.com/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Rumble\",\"provider_url\":\"https://rumble.com/\",\"endpoints\":[{\"url\":\"https://rumble.com/api/Media/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Runkit\",\"provider_url\":\"https://runkit.com\",\"endpoints\":[{\"schemes\":[\"http://embed.runkit.com/*,\",\"https://embed.runkit.com/*,\"],\"url\":\"https://embed.runkit.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Saooti\",\"provider_url\":\"https://octopus.saooti.com\",\"endpoints\":[{\"schemes\":[\"https://octopus.saooti.com/main/pub/podcast/*\"],\"url\":\"https://octopus.saooti.com/oembed\"}]},{\"provider_name\":\"Sapo Videos\",\"provider_url\":\"http://videos.sapo.pt\",\"endpoints\":[{\"schemes\":[\"http://videos.sapo.pt/*\"],\"url\":\"http://videos.sapo.pt/oembed\"}]},{\"provider_name\":\"Satcat\",\"provider_url\":\"https://www.satcat.com/\",\"endpoints\":[{\"schemes\":[\"https://www.satcat.com/sats/*\"],\"url\":\"https://www.satcat.com/api/sats/oembed\",\"discovery\":true}]},{\"provider_name\":\"sbedit\",\"provider_url\":\"https://sbedit.net\",\"endpoints\":[{\"schemes\":[\"https://sbedit.net/*\"],\"url\":\"https://sbedit.net/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Scenes\",\"provider_url\":\"https://getscenes.com\",\"endpoints\":[{\"schemes\":[\"https://getscenes.com/e/*\",\"https://getscenes.com/event/*\"],\"url\":\"https://getscenes.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Screen9\",\"provider_url\":\"http://www.screen9.com/\",\"endpoints\":[{\"schemes\":[\"https://console.screen9.com/*\",\"https://*.screen9.tv/*\"],\"url\":\"https://api.screen9.com/oembed\"}]},{\"provider_name\":\"Screencast.com\",\"provider_url\":\"http://www.screencast.com/\",\"endpoints\":[{\"schemes\":[\"http://www.screencast.com/*\"],\"url\":\"https://api.screencast.com/external/oembed\",\"discovery\":true}]},{\"provider_name\":\"Screenr\",\"provider_url\":\"http://www.screenr.com/\",\"endpoints\":[{\"schemes\":[\"http://www.screenr.com/*/\"],\"url\":\"http://www.screenr.com/api/oembed.{format}\"}]},{\"provider_name\":\"ScribbleMaps\",\"provider_url\":\"https://scribblemaps.com\",\"endpoints\":[{\"schemes\":[\"http://www.scribblemaps.com/maps/view/*\",\"https://www.scribblemaps.com/maps/view/*\",\"http://scribblemaps.com/maps/view/*\",\"https://scribblemaps.com/maps/view/*\"],\"url\":\"https://scribblemaps.com/api/services/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Scribd\",\"provider_url\":\"http://www.scribd.com/\",\"endpoints\":[{\"schemes\":[\"http://www.scribd.com/doc/*\"],\"url\":\"http://www.scribd.com/services/oembed/\"}]},{\"provider_name\":\"SendtoNews\",\"provider_url\":\"http://www.sendtonews.com/\",\"endpoints\":[{\"schemes\":[\"https://embed.sendtonews.com/oembed/*\"],\"url\":\"https://embed.sendtonews.com/services/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"SharedFile\",\"provider_url\":\"https://shared-file-kappa.vercel.app/file/\",\"endpoints\":[{\"schemes\":[\"https://shared-file-kappa.vercel.app/file/*\"],\"url\":\"https://shared-file-kappa.vercel.app/file/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Shopshare\",\"provider_url\":\"https://shopshare.tv\",\"endpoints\":[{\"schemes\":[\"https://shopshare.tv/shopboard/*\",\"https://shopshare.tv/shopcast/*\"],\"url\":\"https://shopshare.tv/api/shopcast/oembed\",\"discovery\":true}]},{\"provider_name\":\"ShortNote\",\"provider_url\":\"https://www.shortnote.jp/\",\"endpoints\":[{\"schemes\":[\"https://www.shortnote.jp/view/notes/*\"],\"url\":\"https://www.shortnote.jp/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Shoudio\",\"provider_url\":\"http://shoudio.com\",\"endpoints\":[{\"schemes\":[\"http://shoudio.com/*\",\"http://shoud.io/*\"],\"url\":\"http://shoudio.com/api/oembed\"}]},{\"provider_name\":\"Show by Animaker\",\"provider_url\":\"https://getshow.io/\",\"endpoints\":[{\"schemes\":[\"https://app.getshow.io/iframe/*\",\"https://*.getshow.io/share/*\"],\"url\":\"https://api.getshow.io/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Show the Way, actionable location info\",\"provider_url\":\"https://showtheway.io\",\"endpoints\":[{\"schemes\":[\"https://showtheway.io/to/*\"],\"url\":\"https://showtheway.io/oembed\",\"discovery\":true}]},{\"provider_name\":\"Simplecast\",\"provider_url\":\"https://simplecast.com\",\"endpoints\":[{\"schemes\":[\"https://simplecast.com/s/*\"],\"url\":\"https://simplecast.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Sizzle\",\"provider_url\":\"https://onsizzle.com/\",\"endpoints\":[{\"schemes\":[\"https://onsizzle.com/i/*\"],\"url\":\"https://onsizzle.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sketchfab\",\"provider_url\":\"http://sketchfab.com\",\"endpoints\":[{\"schemes\":[\"http://sketchfab.com/*models/*\",\"https://sketchfab.com/*models/*\",\"https://sketchfab.com/*/folders/*\"],\"url\":\"http://sketchfab.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Skoletube\",\"provider_url\":\"https://www.skoletube.dk/\",\"endpoints\":[{\"schemes\":[\"https://www.skoletube.dk/media/*\",\"https://www.skoletube.dk/video/*\",\"https://www.studietube.dk/media/*\",\"https://www.studietube.dk/video/*\"],\"url\":\"https://www.skoletube.dk/media/lasync/oembed/\",\"discovery\":true}]},{\"provider_name\":\"SlideShare\",\"provider_url\":\"http://www.slideshare.net/\",\"endpoints\":[{\"schemes\":[\"https://www.slideshare.net/*/*\",\"http://www.slideshare.net/*/*\",\"https://fr.slideshare.net/*/*\",\"http://fr.slideshare.net/*/*\",\"https://de.slideshare.net/*/*\",\"http://de.slideshare.net/*/*\",\"https://es.slideshare.net/*/*\",\"http://es.slideshare.net/*/*\",\"https://pt.slideshare.net/*/*\",\"http://pt.slideshare.net/*/*\"],\"url\":\"https://www.slideshare.net/api/oembed/2\",\"discovery\":true}]},{\"provider_name\":\"SmashNotes\",\"provider_url\":\"https://smashnotes.com\",\"endpoints\":[{\"schemes\":[\"https://smashnotes.com/p/*\",\"https://smashnotes.com/p/*/e/* - https://smashnotes.com/p/*/e/*/s/*\"],\"url\":\"https://smashnotes.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Smeme\",\"provider_url\":\"https://smeme.com\",\"endpoints\":[{\"schemes\":[\"https://open.smeme.com/*\"],\"url\":\"https://open.smeme.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Smrthi\",\"provider_url\":\"https://www.smrthi.com\",\"endpoints\":[{\"schemes\":[\"https://www.smrthi.com/book/*\"],\"url\":\"https://www.smrthi.com/api/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"SmugMug\",\"provider_url\":\"https://www.smugmug.com/\",\"endpoints\":[{\"schemes\":[\"http://*.smugmug.com/*\",\"https://*.smugmug.com/*\"],\"url\":\"https://api.smugmug.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"SocialExplorer\",\"provider_url\":\"https://www.socialexplorer.com/\",\"endpoints\":[{\"schemes\":[\"https://www.socialexplorer.com/*/explore\",\"https://www.socialexplorer.com/*/view\",\"https://www.socialexplorer.com/*/edit\",\"https://www.socialexplorer.com/*/embed\"],\"url\":\"https://www.socialexplorer.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"SoundCloud\",\"provider_url\":\"http://soundcloud.com/\",\"endpoints\":[{\"schemes\":[\"http://soundcloud.com/*\",\"https://soundcloud.com/*\",\"https://on.soundcloud.com/*\",\"https://soundcloud.app.goog.gl/*\"],\"url\":\"https://soundcloud.com/oembed\"}]},{\"provider_name\":\"SpeakerDeck\",\"provider_url\":\"https://speakerdeck.com\",\"endpoints\":[{\"schemes\":[\"http://speakerdeck.com/*/*\",\"https://speakerdeck.com/*/*\"],\"url\":\"https://speakerdeck.com/oembed.json\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Spotify\",\"provider_url\":\"https://spotify.com/\",\"endpoints\":[{\"schemes\":[\"https://open.spotify.com/*\",\"spotify:*\",\"https://spotify.link/*\"],\"url\":\"https://open.spotify.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Spotlightr\",\"provider_url\":\"https://spotlightr.com\",\"endpoints\":[{\"schemes\":[\"https://*.spotlightr.com/watch/*\",\"https://*.spotlightr.com/publish/*\",\"https://*.cdn.spotlightr.com/watch/*\",\"https://*.cdn.spotlightr.com/publish/*\"],\"url\":\"https://api.spotlightr.com/getOEmbed\",\"discovery\":true}]},{\"provider_name\":\"Spreaker\",\"provider_url\":\"https://www.spreaker.com/\",\"endpoints\":[{\"schemes\":[\"http://*.spreaker.com/*\",\"https://*.spreaker.com/*\"],\"url\":\"https://api.spreaker.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"SproutVideo\",\"provider_url\":\"https://sproutvideo.com\",\"endpoints\":[{\"schemes\":[\"https://sproutvideo.com/videos/*\",\"https://*.vids.io/videos/*\"],\"url\":\"http://sproutvideo.com/oembed.{format}\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"Spyke\",\"provider_url\":\"https://spyke.social\",\"endpoints\":[{\"schemes\":[\"http://spyke.social/p/*\",\"http://spyke.social/u/*\",\"http://spyke.social/g/*\",\"http://spyke.social/c/*\",\"https://spyke.social/p/*\",\"https://spyke.social/u/*\",\"https://spyke.social/g/*\",\"https://spyke.social/c/*\",\"http://www.spyke.social/p/*\",\"http://www.spyke.social/u/*\",\"http://www.spyke.social/g/*\",\"http://www.spyke.social/c/*\",\"https://www.spyke.social/p/*\",\"https://www.spyke.social/u/*\",\"https://www.spyke.social/g/*\",\"https://www.spyke.social/c/*\"],\"url\":\"https://api.spyke.social/embed/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Stanford Digital Repository\",\"provider_url\":\"https://purl.stanford.edu/\",\"endpoints\":[{\"schemes\":[\"https://purl.stanford.edu/*\"],\"url\":\"https://purl.stanford.edu/embed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Streamable\",\"provider_url\":\"https://streamable.com/\",\"endpoints\":[{\"schemes\":[\"http://streamable.com/*\",\"https://streamable.com/*\"],\"url\":\"https://api.streamable.com/oembed.json\",\"discovery\":true}]},{\"provider_name\":\"Streamio\",\"provider_url\":\"https://www.streamio.com\",\"endpoints\":[{\"schemes\":[\"https://s3m.io/*\",\"https://23m.io/*\"],\"url\":\"https://streamio.com/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Subscribi\",\"provider_url\":\"https://subscribi.io/\",\"endpoints\":[{\"schemes\":[\"https://subscribi.io/api/oembed*\"],\"url\":\"https://subscribi.io/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sudomemo\",\"provider_url\":\"https://www.sudomemo.net/\",\"endpoints\":[{\"schemes\":[\"https://www.sudomemo.net/watch/*\",\"http://www.sudomemo.net/watch/*\",\"https://flipnot.es/*\",\"http://flipnot.es/*\"],\"url\":\"https://www.sudomemo.net/oembed\",\"discovery\":true}]},{\"provider_name\":\"Supercut\",\"provider_url\":\"https://supercut.video/\",\"endpoints\":[{\"schemes\":[\"https://supercut.video/share/*\"],\"url\":\"https://supercut.video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sutori\",\"provider_url\":\"https://www.sutori.com/\",\"endpoints\":[{\"schemes\":[\"https://www.sutori.com/story/*\"],\"url\":\"https://www.sutori.com/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Sway\",\"provider_url\":\"https://www.sway.com\",\"endpoints\":[{\"schemes\":[\"https://sway.com/*\",\"https://www.sway.com/*\"],\"url\":\"https://sway.com/api/v1.0/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sway Office\",\"provider_url\":\"https://sway.office.com\",\"endpoints\":[{\"schemes\":[\"https://sway.office.com/*\"],\"url\":\"https://sway.office.com/api/v1.0/oembed\",\"discovery\":true}]},{\"provider_name\":\"Synthesia\",\"provider_url\":\"https://www.synthesia.io/\",\"endpoints\":[{\"schemes\":[\"https://share.synthesia.io/*\"],\"url\":\"https://69jr5v75rc.execute-api.eu-west-1.amazonaws.com/prod/v2/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Tech Post Cast\",\"provider_url\":\"https://techpostcast.com\",\"endpoints\":[{\"schemes\":[\"https://techpostcast.com/headline-topic-programs/*\"],\"url\":\"https://techpostcast.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"TED\",\"provider_url\":\"https://www.ted.com\",\"endpoints\":[{\"schemes\":[\"http://ted.com/talks/*\",\"https://ted.com/talks/*\",\"https://www.ted.com/talks/*\"],\"url\":\"https://www.ted.com/services/v1/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"The DAM consultants\",\"provider_url\":\"https://hubspot-media-bridge.thedamconsultants.com/\",\"endpoints\":[{\"schemes\":[\"https://hubspot-media-bridge.thedamconsultants.com/*\"],\"url\":\"https://hubspot-media-bridge.thedamconsultants.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"The New York Times\",\"provider_url\":\"https://www.nytimes.com\",\"endpoints\":[{\"schemes\":[\"https://www.nytimes.com/svc/oembed\",\"https://nytimes.com/*\",\"https://*.nytimes.com/*\"],\"url\":\"https://www.nytimes.com/svc/oembed/json/\",\"discovery\":true}]},{\"provider_name\":\"They Said So\",\"provider_url\":\"https://theysaidso.com/\",\"endpoints\":[{\"schemes\":[\"https://theysaidso.com/image/*\"],\"url\":\"https://theysaidso.com/extensions/oembed/\",\"discovery\":true}]},{\"provider_name\":\"TickCounter\",\"provider_url\":\"https://www.tickcounter.com\",\"endpoints\":[{\"schemes\":[\"http://www.tickcounter.com/widget/*\",\"http://www.tickcounter.com/countdown/*\",\"http://www.tickcounter.com/countup/*\",\"http://www.tickcounter.com/ticker/*\",\"http://www.tickcounter.com/clock/*\",\"http://www.tickcounter.com/worldclock/*\",\"https://www.tickcounter.com/widget/*\",\"https://www.tickcounter.com/countdown/*\",\"https://www.tickcounter.com/countup/*\",\"https://www.tickcounter.com/ticker/*\",\"https://www.tickcounter.com/clock/*\",\"https://www.tickcounter.com/worldclock/*\"],\"url\":\"https://www.tickcounter.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"TikTok\",\"provider_url\":\"http://www.tiktok.com/\",\"endpoints\":[{\"schemes\":[\"https://www.tiktok.com/*\",\"https://www.tiktok.com/*/video/*\"],\"url\":\"https://www.tiktok.com/oembed\"}]},{\"provider_name\":\"tksn-me\",\"provider_url\":\"https://tksn.me\",\"endpoints\":[{\"schemes\":[\"https://tksn.me/*\",\"https://*.tksn.me/*\"],\"url\":\"https://tksn.me/api/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Tonic Audio\",\"provider_url\":\"https://tonicaudio.com/\",\"endpoints\":[{\"schemes\":[\"https://tonicaudio.com/take/*\",\"https://tonicaudio.com/song/*\",\"https://tnic.io/song/*\",\"https://tnic.io/take/*\"],\"url\":\"https://tonicaudio.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Toornament\",\"provider_url\":\"https://www.toornament.com/\",\"endpoints\":[{\"schemes\":[\"https://www.toornament.com/tournaments/*/information\",\"https://www.toornament.com/tournaments/*/registration/\",\"https://www.toornament.com/tournaments/*/matches/schedule\",\"https://www.toornament.com/tournaments/*/stages/*/\"],\"url\":\"https://widget.toornament.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Topy\",\"provider_url\":\"http://www.topy.se/\",\"endpoints\":[{\"schemes\":[\"http://www.topy.se/image/*\"],\"url\":\"http://www.topy.se/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Totango\",\"provider_url\":\"https://totango.com\",\"endpoints\":[{\"schemes\":[\"https://app-test.totango.com/*\"],\"url\":\"https://app-test.totango.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Trackspace\",\"provider_url\":\"http://trackspace.upitup.com/\",\"endpoints\":[{\"schemes\":[\"http://trackspace.upitup.com/*\"],\"url\":\"https://trackspace.upitup.com/oembed\"}]},{\"provider_name\":\"Trinity Audio\",\"provider_url\":\"https://trinityaudio.ai\",\"endpoints\":[{\"schemes\":[\"https://trinitymedia.ai/player/*\",\"https://trinitymedia.ai/player/*/*\",\"https://trinitymedia.ai/player/*/*/*\"],\"url\":\"https://trinitymedia.ai/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Tumblr\",\"provider_url\":\"https://www.tumblr.com\",\"endpoints\":[{\"schemes\":[\"https://*.tumblr.com/post/*\"],\"url\":\"https://www.tumblr.com/oembed/1.0\"}]},{\"provider_name\":\"Tuxx\",\"provider_url\":\"https://www.tuxx.be/\",\"endpoints\":[{\"schemes\":[\"https://www.tuxx.be/*\"],\"url\":\"https://www.tuxx.be/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"tvcf\",\"provider_url\":\"http://tvcf.co.kr\",\"endpoints\":[{\"schemes\":[\"https://play.tvcf.co.kr/*\",\"https://*.tvcf.co.kr/*\"],\"url\":\"https://play.tvcf.co.kr/rest/oembed\"}]},{\"provider_name\":\"Twinmotion\",\"provider_url\":\"https://twinmotion.unrealengine.com\",\"endpoints\":[{\"schemes\":[\"https://twinmotion.unrealengine.com/presentation/*\",\"https://twinmotion.unrealengine.com/panorama/*\"],\"url\":\"https://twinmotion.unrealengine.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Twitter\",\"provider_url\":\"http://www.twitter.com/\",\"endpoints\":[{\"schemes\":[\"https://twitter.com/*\",\"https://twitter.com/*/status/*\",\"https://*.twitter.com/*/status/*\"],\"url\":\"https://publish.twitter.com/oembed\"}]},{\"provider_name\":\"TypeCast\",\"provider_url\":\"https://typecast.ai\",\"endpoints\":[{\"schemes\":[\"https://play.typecast.ai/s/*\",\"https://play.typecast.ai/e/*\",\"https://play.typecast.ai/*\"],\"url\":\"https://play.typecast.ai/oembed\"}]},{\"provider_name\":\"Typlog\",\"provider_url\":\"https://typlog.com\",\"endpoints\":[{\"url\":\"https://typlog.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"UAPod\",\"provider_url\":\"https://uapod.univ-antilles.fr/\",\"endpoints\":[{\"schemes\":[\"https://uapod.univ-antilles.fr/video/*\"],\"url\":\"https://uapod.univ-antilles.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"University of Cambridge Map\",\"provider_url\":\"https://map.cam.ac.uk\",\"endpoints\":[{\"schemes\":[\"https://map.cam.ac.uk/*\"],\"url\":\"https://map.cam.ac.uk/oembed/\"}]},{\"provider_name\":\"UnivParis1.Pod\",\"provider_url\":\"https://mediatheque.univ-paris1.fr/\",\"endpoints\":[{\"schemes\":[\"https://mediatheque.univ-paris1.fr/video/*\"],\"url\":\"https://mediatheque.univ-paris1.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"Upec.Pod\",\"provider_url\":\"https://pod.u-pec.fr/\",\"endpoints\":[{\"schemes\":[\"https://pod.u-pec.fr/video/*\"],\"url\":\"https://pod.u-pec.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ustream\",\"provider_url\":\"http://www.ustream.tv\",\"endpoints\":[{\"schemes\":[\"http://*.ustream.tv/*\",\"http://*.ustream.com/*\"],\"url\":\"http://www.ustream.tv/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"uStudio, Inc.\",\"provider_url\":\"https://www.ustudio.com\",\"endpoints\":[{\"schemes\":[\"https://*.ustudio.com/embed/*\",\"https://*.ustudio.com/embed/*/*\"],\"url\":\"https://app.ustudio.com/api/v2/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"VeeR VR\",\"provider_url\":\"http://veer.tv/\",\"endpoints\":[{\"schemes\":[\"http://veer.tv/videos/*\"],\"url\":\"https://api.veer.tv/oembed\",\"discovery\":true},{\"schemes\":[\"http://veervr.tv/videos/*\"],\"url\":\"https://api.veervr.tv/oembed\",\"discovery\":true}]},{\"provider_name\":\"VEVO\",\"provider_url\":\"http://www.vevo.com/\",\"endpoints\":[{\"schemes\":[\"http://www.vevo.com/*\",\"https://www.vevo.com/*\"],\"url\":\"https://www.vevo.com/oembed\",\"discovery\":false}]},{\"provider_name\":\"Videfit\",\"provider_url\":\"https://videfit.com/\",\"endpoints\":[{\"schemes\":[\"https://videfit.com/videos/*\"],\"url\":\"https://videfit.com/oembed\",\"discovery\":false}]},{\"provider_name\":\"VidMount\",\"provider_url\":\"https://vidmount.com/\",\"endpoints\":[{\"schemes\":[\"https://vidmount.com/*\"],\"url\":\"https://vidmount.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Vidyard\",\"provider_url\":\"https://vidyard.com\",\"endpoints\":[{\"schemes\":[\"http://*.vidyard.com/*\",\"https://*.vidyard.com/*\",\"http://*.hubs.vidyard.com/*\",\"https://*.hubs.vidyard.com/*\"],\"url\":\"https://api.vidyard.com/dashboard/v1.1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Vimeo\",\"provider_url\":\"https://vimeo.com/\",\"endpoints\":[{\"schemes\":[\"https://vimeo.com/*\",\"https://vimeo.com/album/*/video/*\",\"https://vimeo.com/channels/*/*\",\"https://vimeo.com/groups/*/videos/*\",\"https://vimeo.com/ondemand/*/*\",\"https://player.vimeo.com/video/*\",\"https://vimeo.com/event/*/*\"],\"url\":\"https://vimeo.com/api/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Viostream\",\"provider_url\":\"https://www.viostream.com\",\"endpoints\":[{\"schemes\":[\"https://share.viostream.com/*\"],\"url\":\"https://play.viostream.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Viously\",\"provider_url\":\"https://www.viously.com\",\"endpoints\":[{\"schemes\":[\"https://www.viously.com/*/*\"],\"url\":\"https://www.viously.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Vizdom\",\"provider_url\":\"https://vizdom.dev\",\"endpoints\":[{\"schemes\":[\"https://vizdom.dev/link/*\"],\"url\":\"https://vizdom.dev/api/v1/oembed\",\"discovery\":true,\"formats\":[\"xml\",\"json\"]}]},{\"provider_name\":\"Vizydrop\",\"provider_url\":\"https://vizydrop.com\",\"endpoints\":[{\"schemes\":[\"https://vizydrop.com/shared/*\"],\"url\":\"https://vizydrop.com/oembed\"}]},{\"provider_name\":\"Vlipsy\",\"provider_url\":\"https://vlipsy.com/\",\"endpoints\":[{\"schemes\":[\"https://vlipsy.com/*\"],\"url\":\"https://vlipsy.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"VLIVE\",\"provider_url\":\"https://www.vlive.tv\",\"endpoints\":[{\"url\":\"https://www.vlive.tv/oembed\",\"schemes\":[\"https://www.vlive.tv/video/*\"],\"formats\":[\"json\"]}]},{\"provider_name\":\"Vouch\",\"provider_url\":\"https://www.vouchfor.com/\",\"endpoints\":[{\"schemes\":[\"https://*.vouchfor.com/*\"],\"url\":\"https://embed.vouchfor.com/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"VoxSnap\",\"provider_url\":\"https://voxsnap.com/\",\"endpoints\":[{\"schemes\":[\"https://article.voxsnap.com/*/*\"],\"url\":\"https://data.voxsnap.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Waltrack\",\"provider_url\":\"https://waltrack/net\",\"endpoints\":[{\"schemes\":[\"https://waltrack.net/product/*\"],\"url\":\"https://waltrack.net/oembed\",\"discovery\":true}]},{\"provider_name\":\"Wave.video\",\"provider_url\":\"https://wave.video\",\"endpoints\":[{\"schemes\":[\"https://watch.wave.video/*\",\"https://embed.wave.video/*\"],\"url\":\"https://embed.wave.video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Web3 is Going Just Great\",\"provider_url\":\"https://www.web3isgoinggreat.com/\",\"endpoints\":[{\"schemes\":[\"https://www.web3isgoinggreat.com/?id=*\",\"https://www.web3isgoinggreat.com/single/*\",\"https://www.web3isgoinggreat.com/embed/*\"],\"url\":\"https://www.web3isgoinggreat.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Webcrumbs\",\"provider_url\":\"https://webcrumbs.org/\",\"endpoints\":[{\"schemes\":[\"https://share.webcrumbs.org/*\",\"https://tools.webcrumbs.org/*\",\"https://www.webcrumbs.org/*\"],\"url\":\"http://share.webcrumbs.org/\",\"discovery\":true}]},{\"provider_name\":\"wecandeo\",\"provider_url\":\"https://www.wecandeo.com/\",\"endpoints\":[{\"schemes\":[\"https://play.wecandeo.com/video/v/*\"],\"url\":\"https://play.wecandeo.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Whimsical\",\"provider_url\":\"https://www.whimsical.com\",\"endpoints\":[{\"schemes\":[\"https://whimsical.com/*\"],\"url\":\"https://whimsical.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Wistia, Inc.\",\"provider_url\":\"https://wistia.com/\",\"endpoints\":[{\"schemes\":[\"https://fast.wistia.com/embed/iframe/*\",\"https://fast.wistia.com/embed/playlists/*\",\"https://*.wistia.com/medias/*\"],\"url\":\"https://fast.wistia.com/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"wizer.me\",\"provider_url\":\"https://www.wizer.me/\",\"endpoints\":[{\"schemes\":[\"https://*.wizer.me/learn/*\",\"https://*.wizer.me/preview/*\"],\"url\":\"https://app.wizer.me/api/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Wokwi\",\"provider_url\":\"https://wokwi.com\",\"endpoints\":[{\"schemes\":[\"https://wokwi.com/share/*\"],\"url\":\"https://wokwi.com/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Wolfram Cloud\",\"provider_url\":\"https://www.wolframcloud.com\",\"endpoints\":[{\"schemes\":[\"https://*.wolframcloud.com/*\"],\"url\":\"https://www.wolframcloud.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"WordPress.com\",\"provider_url\":\"https://wordpress.com/\",\"endpoints\":[{\"schemes\":[\"https://wordpress.com/*\",\"http://wordpress.com/*\",\"https://*.wordpress.com/*\",\"http://*.wordpress.com/*\",\"https://*.*.wordpress.com/*\",\"http://*.*.wordpress.com/*\",\"https://wp.me/*\",\"http://wp.me/*\"],\"url\":\"http://public-api.wordpress.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"X\",\"provider_url\":\"http://www.x.com/\",\"endpoints\":[{\"schemes\":[\"https://x.com/*\",\"https://x.com/*/status/*\",\"https://*.x.com/*/status/*\"],\"url\":\"https://publish.x.com/oembed\"}]},{\"provider_name\":\"YouTube\",\"provider_url\":\"https://www.youtube.com/\",\"endpoints\":[{\"schemes\":[\"https://*.youtube.com/watch*\",\"https://*.youtube.com/v/*\",\"https://youtu.be/*\",\"https://*.youtube.com/playlist?list=*\",\"https://youtube.com/playlist?list=*\",\"https://*.youtube.com/shorts*\",\"https://youtube.com/shorts*\",\"https://*.youtube.com/embed/*\",\"https://*.youtube.com/live*\",\"https://youtube.com/live*\"],\"url\":\"https://www.youtube.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"YUMPU\",\"provider_url\":\"https://www.yumpu.com/\",\"endpoints\":[{\"schemes\":[\"https://www.yumpu.com/*/document/view/*/*\"],\"url\":\"https://www.yumpu.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Zeplin\",\"provider_url\":\"https://zeplin.io\",\"endpoints\":[{\"schemes\":[\"https://app.zeplin.io/project/*/screen/*\",\"https://app.zeplin.io/project/*/screen/*/version/*\",\"https://app.zeplin.io/project/*/styleguide/components?coid=*\",\"https://app.zeplin.io/styleguide/*/components?coid=*\"],\"url\":\"https://app.zeplin.io/embed\",\"discovery\":true}]},{\"provider_name\":\"ZingSoft\",\"provider_url\":\"https://app.zingsoft.com\",\"endpoints\":[{\"schemes\":[\"https://app.zingsoft.com/embed/*\",\"https://app.zingsoft.com/view/*\"],\"url\":\"https://app.zingsoft.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"ZnipeTV\",\"provider_url\":\"https://www.znipe.tv/\",\"endpoints\":[{\"schemes\":[\"https://*.znipe.tv/*\"],\"url\":\"https://api.znipe.tv/v3/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Zoomable\",\"provider_url\":\"https://zoomable.ca/\",\"endpoints\":[{\"schemes\":[\"https://srv2.zoomable.ca/viewer.php*\"],\"url\":\"https://srv2.zoomable.ca/oembed\",\"discovery\":true}]}]');\nconst defaultProviderList = downloadedProvidersJson;\nexport {\n amazonRules,\n defaultProviderList\n};\n//# sourceMappingURL=misc.mjs.map\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport {\n createMarkdownProcessor,\n createOEmbedPlugin,\n createCardPlugin,\n createMermaidPlugin,\n createBeautifulMermaidPlugin,\n createCachedFetcher,\n createMemoryCacheStorage,\n getConsoleLogger,\n} from 'mark-deco';\nimport { defaultProviderList } from 'mark-deco/misc';\nimport type { Config } from './config';\n\n// Import the MarkdownProcessor type - this should be available from mark-deco package\ntype MarkdownProcessor = ReturnType<typeof createMarkdownProcessor>;\n\n/**\n * Setup markdown processor with plugins based on configuration\n */\nexport const setupProcessor = (config: Config): MarkdownProcessor => {\n const plugins = [];\n const logger = getConsoleLogger();\n const fetcher = createCachedFetcher(\n 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.0.0 Safari/537.36',\n 5000,\n createMemoryCacheStorage()\n );\n\n // Determine which plugins to enable\n const enabledPlugins = config.noPlugins\n ? []\n : Array.isArray(config.plugins)\n ? config.plugins\n : ['oembed', 'card', 'beautiful-mermaid'];\n\n // Add oEmbed plugin\n if (enabledPlugins.includes('oembed') && config.oembed?.enabled !== false) {\n plugins.push(createOEmbedPlugin(defaultProviderList, {}));\n }\n\n // Add card plugin\n if (enabledPlugins.includes('card') && config.card?.enabled !== false) {\n plugins.push(createCardPlugin({}));\n }\n\n const useMermaid =\n enabledPlugins.includes('mermaid') && config.mermaid?.enabled !== false;\n const useBeautifulMermaid =\n enabledPlugins.includes('beautiful-mermaid') &&\n config.beautifulMermaid?.enabled !== false;\n\n if (useMermaid && useBeautifulMermaid) {\n throw new Error(\n 'Plugins \"mermaid\" and \"beautiful-mermaid\" are mutually exclusive.'\n );\n }\n\n if (useBeautifulMermaid) {\n const { enabled: _enabled, ...beautifulMermaidOptions } =\n config.beautifulMermaid ?? {};\n plugins.push(createBeautifulMermaidPlugin(beautifulMermaidOptions));\n }\n\n // Add Mermaid plugin\n if (useMermaid) {\n plugins.push(createMermaidPlugin({}));\n }\n\n // Create and return processor\n return createMarkdownProcessor({\n plugins,\n logger,\n fetcher,\n });\n};\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport { Command, Option } from 'commander';\nimport type { HeaderTitleTransform, ResolveUrlContext } from 'mark-deco';\n\nimport {\n author,\n description,\n git_commit_hash,\n name,\n repository_url,\n version,\n} from './generated/packageMetadata';\nimport { loadConfig } from './config';\nimport { readInput, writeOutput, writeJsonOutput } from './io';\nimport { setupProcessor } from './processor';\n\ninterface CLIOptions {\n input?: string;\n config?: string;\n output?: string;\n plugins?: string[];\n noPlugins?: boolean;\n uniqueIdPrefix?: string;\n hierarchicalHeadingId?: boolean;\n contentBasedHeadingId?: boolean;\n headingBaseLevel?: number;\n headerTitleTransform?: HeaderTitleTransform;\n frontmatterOutput?: string;\n headingTreeOutput?: string;\n relativeUrl?: string;\n}\n\nconst program = new Command();\n\nconst isRelativeUrl = (url: string): boolean => {\n if (!url || url.startsWith('#') || url.startsWith('?')) {\n return false;\n }\n if (url.startsWith('/') || url.startsWith('\\\\')) {\n return false;\n }\n return !/^[a-zA-Z][a-zA-Z0-9+.-]*:/.test(url);\n};\n\nconst createRelativeUrlResolver = (relativeUrl: string) => {\n const base = relativeUrl.replace(/\\/+$/, '');\n\n return (url: string, _context: ResolveUrlContext): string => {\n if (!isRelativeUrl(url)) {\n return url;\n }\n\n const normalized = url.startsWith('./') ? url.slice(2) : url;\n if (!base) {\n return `/${normalized}`;\n }\n\n return `${base}/${normalized}`;\n };\n};\n\nconst main = async () => {\n program\n .name(name)\n .summary(description)\n .version(`${version}-${git_commit_hash}`);\n\n program\n .addOption(\n new Option('-i, --input <file>', 'Input markdown file (default: stdin)')\n )\n .addOption(\n new Option('-o, --output <file>', 'Output HTML file (default: stdout)')\n )\n .addOption(new Option('-c, --config <file>', 'Configuration file path'))\n .addOption(\n new Option(\n '-p, --plugins [plugins...]',\n 'Enable specific plugins (oembed, card, beautiful-mermaid, mermaid)'\n )\n )\n .addOption(new Option('--no-plugins', 'Disable all default plugins'))\n .addOption(\n new Option(\n '--unique-id-prefix <prefix>',\n 'Prefix for unique IDs'\n ).default('section')\n )\n .addOption(\n new Option(\n '--hierarchical-heading-id',\n 'Use hierarchical heading IDs'\n ).default(true)\n )\n .addOption(\n new Option(\n '--content-based-heading-id',\n 'Use content-based heading IDs'\n ).default(false)\n )\n .addOption(\n new Option(\n '--heading-base-level <level>',\n 'Base heading level for markdown headings'\n )\n .argParser((value) => Number.parseInt(value, 10))\n .default(1)\n )\n .addOption(\n new Option(\n '--header-title-transform <mode>',\n 'Control how the first base-level heading is applied to frontmatter.title (extract, extractAndRemove, none)'\n ).choices(['extract', 'extractAndRemove', 'none'])\n )\n .addOption(\n new Option(\n '--relative-url <url>',\n 'Prefix relative URLs in output (links, images, raw HTML)'\n )\n )\n .addOption(\n new Option(\n '--frontmatter-output <file>',\n 'Output frontmatter as JSON to specified file'\n )\n )\n .addOption(\n new Option(\n '--heading-tree-output <file>',\n 'Output heading tree as JSON to specified file'\n )\n )\n .action(async () => {\n const options = program.opts<CLIOptions>();\n try {\n // Load configuration\n const config = await loadConfig(options.config);\n\n // Merge CLI options with config\n const mergedOptions = { ...config, ...options };\n\n // Read input\n const markdown = await readInput(options.input);\n\n // Setup processor with plugins\n const processor = setupProcessor(mergedOptions);\n\n // Process markdown\n const headerTitleTransform: HeaderTitleTransform =\n options.headerTitleTransform ??\n config.headerTitleTransform ??\n 'extractAndRemove';\n const headingBaseLevel =\n options.headingBaseLevel ?? config.headingBaseLevel ?? 1;\n const relativeUrl = options.relativeUrl ?? config.relativeUrl;\n const resolveUrl = relativeUrl\n ? createRelativeUrlResolver(relativeUrl)\n : undefined;\n\n const processOptions = {\n useHierarchicalHeadingId: options.hierarchicalHeadingId ?? true,\n useContentStringHeaderId: options.contentBasedHeadingId ?? false,\n headingBaseLevel,\n headerTitleTransform,\n ...(resolveUrl ? { resolveUrl } : {}),\n };\n\n const result = await processor.process(\n markdown,\n options.uniqueIdPrefix || 'section',\n processOptions\n );\n\n // Write output\n await writeOutput(result.html, options.output);\n\n // Write frontmatter if output path is specified\n if (options.frontmatterOutput) {\n await writeJsonOutput(result.frontmatter, options.frontmatterOutput);\n }\n\n // Write heading tree if output path is specified\n if (options.headingTreeOutput) {\n await writeJsonOutput(result.headingTree, options.headingTreeOutput);\n }\n } catch (error) {\n console.error(\n 'Error:',\n error instanceof Error ? error.message : String(error)\n );\n process.exit(1);\n }\n });\n\n // Handle unhandled errors\n process.on('unhandledRejection', (reason, promise) => {\n console.error('Unhandled Rejection at:', promise, 'reason:', reason);\n process.exit(1);\n });\n\n process.on('uncaughtException', (error) => {\n console.error('Uncaught Exception:', error);\n process.exit(1);\n });\n\n // Parse command line arguments\n const userArgs = process.argv.slice(2);\n if (\n userArgs.length === 0 ||\n userArgs.includes('--help') ||\n userArgs.includes('-h')\n ) {\n console.log(`${name} [${version}-${git_commit_hash}]`);\n console.log(description);\n console.log(`Copyright (c) ${author}`);\n console.log(repository_url);\n console.log('License: Under MIT');\n console.log('');\n }\n program.parse();\n};\n\n// Run the main function\nmain().catch((error) => {\n console.error('Failed to start CLI:', error);\n process.exit(1);\n});\n"],"names":["resolve","readFile","stdin","writeFile","getConsoleLogger","createCachedFetcher","createMemoryCacheStorage","createOEmbedPlugin","createCardPlugin","createBeautifulMermaidPlugin","createMermaidPlugin","createMarkdownProcessor","Command","Option"],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","sources":["../src/generated/packageMetadata.ts","../src/config.ts","../src/io.ts","../../mark-deco/dist/misc.mjs","../src/processor.ts","../src/index.ts"],"sourcesContent":["// @ts-nocheck\n// This file is auto-generated by screw-up plugin\n// Do not edit manually\n\nexport const name = \"mark-deco-cli\";\nexport const version = \"1.2.0\";\nexport const description = \"Command-line interface for mark-deco Markdown to HTML conversion processor\";\nexport const author = \"Kouji Matsui (@kekyo@mi.kekyo.net)\";\nexport const license = \"MIT\";\nexport const repository_url = \"https://github.com/kekyo/mark-deco\";\nexport const git_commit_hash = \"ac2db6bda5bcf3c66742d73693edaeef00c9f558\";\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport { readFile } from 'fs/promises';\nimport { resolve } from 'path';\nimport type { BeautifulMermaidPluginOptions } from 'mark-deco';\n\nexport interface Config {\n plugins?: string[];\n noPlugins?: boolean;\n uniqueIdPrefix?: string;\n hierarchicalHeadingId?: boolean;\n contentBasedHeadingId?: boolean;\n headingBaseLevel?: number;\n headerTitleTransform?: 'extract' | 'extractAndRemove' | 'none';\n relativeUrl?: string;\n // Plugin-specific configurations\n oembed?: {\n enabled?: boolean;\n };\n card?: {\n enabled?: boolean;\n };\n mermaid?: {\n enabled?: boolean;\n };\n beautifulMermaid?: BeautifulMermaidPluginOptions & {\n enabled?: boolean;\n };\n}\n\n/**\n * Load configuration from file\n */\nexport const loadConfig = async (configPath?: string): Promise<Config> => {\n if (!configPath) {\n return {};\n }\n\n try {\n const configFile = resolve(configPath);\n const configContent = await readFile(configFile, 'utf-8');\n\n // Support both JSON and JS config files\n if (configPath.endsWith('.json')) {\n return JSON.parse(configContent);\n } else if (\n configPath.endsWith('.js') ||\n configPath.endsWith('.cjs') ||\n configPath.endsWith('.mjs')\n ) {\n // For JS/MJS files, we need to use dynamic import\n const configModule = await import(configFile);\n return configModule.default || configModule;\n } else {\n // Default to JSON parsing\n return JSON.parse(configContent);\n }\n } catch (error) {\n throw new Error(\n `Failed to load config file \"${configPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n};\n\n/**\n * Get default configuration\n */\nexport const getDefaultConfig = (): Config => {\n return {\n plugins: ['oembed', 'card', 'beautiful-mermaid'],\n uniqueIdPrefix: 'section',\n hierarchicalHeadingId: true,\n contentBasedHeadingId: false,\n headingBaseLevel: 1,\n headerTitleTransform: 'extractAndRemove',\n oembed: {\n enabled: true,\n },\n card: {\n enabled: true,\n },\n mermaid: {\n enabled: true,\n },\n beautifulMermaid: {\n enabled: true,\n },\n };\n};\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport { readFile, writeFile } from 'fs/promises';\nimport { stdin } from 'process';\n\n/**\n * Read input from file or stdin\n */\nexport const readInput = async (inputPath?: string): Promise<string> => {\n if (inputPath) {\n // Read from file\n try {\n return await readFile(inputPath, 'utf-8');\n } catch (error) {\n throw new Error(\n `Failed to read input file \"${inputPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n } else {\n // Read from stdin\n return new Promise((resolve, reject) => {\n let data = '';\n\n // Check if stdin is a TTY (interactive mode)\n if (stdin.isTTY) {\n reject(\n new Error(\n 'No input file specified and stdin is not available. Use -i option to specify input file.'\n )\n );\n return;\n }\n\n stdin.setEncoding('utf-8');\n\n stdin.on('data', (chunk) => {\n data += chunk;\n });\n\n stdin.on('end', () => {\n resolve(data);\n });\n\n stdin.on('error', (error) => {\n reject(new Error(`Failed to read from stdin: ${error.message}`));\n });\n });\n }\n};\n\n/**\n * Write output to file or stdout\n */\nexport const writeOutput = async (\n html: string,\n outputPath?: string\n): Promise<void> => {\n if (outputPath) {\n // Write to file\n try {\n await writeFile(outputPath, html, 'utf-8');\n } catch (error) {\n throw new Error(\n `Failed to write output file \"${outputPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n } else {\n // Write to stdout\n try {\n process.stdout.write(html);\n } catch (error) {\n throw new Error(\n `Failed to write to stdout: ${error instanceof Error ? error.message : String(error)}`\n );\n }\n }\n};\n\n/**\n * Write JSON output to file\n */\nexport const writeJsonOutput = async (\n data: unknown,\n outputPath: string\n): Promise<void> => {\n try {\n const jsonContent = JSON.stringify(data, null, 2);\n await writeFile(outputPath, jsonContent, 'utf-8');\n } catch (error) {\n throw new Error(\n `Failed to write JSON output file \"${outputPath}\": ${error instanceof Error ? error.message : String(error)}`\n );\n }\n};\n","/*!\n * name: mark-deco\n * version: 1.2.0\n * description: Flexible Markdown to HTML conversion library\n * author: Kouji Matsui (@kekyo@mi.kekyo.net)\n * license: MIT\n * repository.url: https://github.com/kekyo/mark-deco\n * git.commit.hash: ac2db6bda5bcf3c66742d73693edaeef00c9f558\n */\n\nconst resolveUrl = (url, baseUrl) => {\n try {\n if (url.startsWith(\"http://\") || url.startsWith(\"https://\")) {\n return url;\n }\n if (url.startsWith(\"//\")) {\n const baseUrlObj = new URL(baseUrl);\n return `${baseUrlObj.protocol}${url}`;\n }\n return new URL(url, baseUrl).toString();\n } catch (e) {\n return url;\n }\n};\nconst decodeHtmlEntities = (value) => value.replace(/&quot;/g, '\"').replace(/&#x27;/g, \"'\").replace(/&#039;/g, \"'\").replace(/&amp;/g, \"&\");\nconst extractDynamicImageUrl = (value) => {\n if (!value.trim().startsWith(\"{\")) {\n return void 0;\n }\n try {\n const parsed = JSON.parse(value);\n const entries = Object.entries(parsed);\n if (entries.length === 0) {\n return void 0;\n }\n const firstEntry = entries[0];\n if (!firstEntry) {\n return void 0;\n }\n let bestUrl = firstEntry[0];\n let bestArea = 0;\n for (const [url, size] of entries) {\n if (Array.isArray(size) && size.length >= 2) {\n const width = Number(size[0]);\n const height = Number(size[1]);\n const area = Number.isFinite(width) && Number.isFinite(height) ? width * height : 0;\n if (area > bestArea) {\n bestArea = area;\n bestUrl = url;\n }\n }\n }\n return bestUrl;\n } catch (e) {\n return void 0;\n }\n};\nconst extractAmazonImageUrl = (values, context) => {\n for (const rawValue of values) {\n const trimmed = decodeHtmlEntities(rawValue).trim();\n if (!trimmed) {\n continue;\n }\n const dynamicUrl = extractDynamicImageUrl(trimmed);\n if (dynamicUrl) {\n return resolveUrl(dynamicUrl, context.url);\n }\n return resolveUrl(trimmed, context.url);\n }\n return void 0;\n};\nconst amazonImageRules = [\n {\n selector: \"#landingImage\",\n method: \"attr\",\n attr: \"data-a-dynamic-image\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#landingImage\",\n method: \"attr\",\n attr: \"data-old-hires\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#landingImage\",\n method: \"attr\",\n attr: \"src\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#imgTagWrapperId img\",\n method: \"attr\",\n attr: \"data-a-dynamic-image\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#imgTagWrapperId img\",\n method: \"attr\",\n attr: \"data-old-hires\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"#imgTagWrapperId img\",\n method: \"attr\",\n attr: \"src\",\n processor: extractAmazonImageUrl\n },\n {\n selector: \"img[data-old-hires]\",\n method: \"attr\",\n attr: \"data-old-hires\",\n processor: extractAmazonImageUrl\n },\n {\n selector: 'meta[property=\"og:image\"]',\n method: \"attr\",\n attr: \"content\",\n processor: extractAmazonImageUrl\n },\n {\n selector: 'meta[name=\"twitter:image\"]',\n method: \"attr\",\n attr: \"content\",\n processor: extractAmazonImageUrl\n }\n];\nconst amazonPatterns = [\n \"^https?://(?:www\\\\.)?amazon\\\\.co\\\\.jp/\",\n \"^https?://(?:www\\\\.)?amazon\\\\.com/\",\n \"^https?://amzn\\\\.to/\"\n];\nconst amazonRules = [\n {\n patterns: amazonPatterns,\n postFilters: [\"^https?://(?:www\\\\.)?amazon\\\\.co\\\\.jp/\"],\n locale: \"ja-JP\",\n siteName: \"Amazon Japan\",\n fields: {\n title: {\n required: true,\n rules: [\n {\n selector: \"#productTitle\",\n method: \"text\"\n }\n ]\n },\n image: {\n rules: amazonImageRules\n },\n price: {\n rules: [\n {\n selector: [\n \"span.a-price-whole\",\n \"span.a-price.a-text-price\",\n \".a-offscreen\",\n \"#priceblock_dealprice\",\n \"#priceblock_ourprice\",\n \"#price_inside_buybox\"\n ],\n method: \"text\",\n processor: {\n type: \"currency\",\n params: {\n symbol: \"¥\"\n }\n }\n }\n ]\n },\n reviewCount: {\n rules: [\n {\n selector: \"#acrCustomerReviewText\",\n method: \"text\"\n }\n ]\n },\n rating: {\n rules: [\n {\n selector: \"span.a-icon-alt\",\n method: \"text\",\n processor: {\n type: \"filter\",\n params: {\n contains: \"星\"\n }\n }\n }\n ]\n },\n brand: {\n rules: [\n {\n selector: \"#bylineInfo\",\n method: \"text\",\n processor: (values) => {\n var _a;\n if (values.length === 0 || !values[0]) return void 0;\n const text = values[0];\n const match = text.match(/ブランド:\\s*([^の]+)/);\n return (_a = match == null ? void 0 : match[1]) == null ? void 0 : _a.trim();\n }\n }\n ]\n },\n features: {\n rules: [\n {\n selector: \"#feature-bullets .a-list-item\",\n method: \"text\",\n multiple: true,\n processor: {\n type: \"filter\",\n params: {\n excludeContains: [\"この商品について\"],\n minLength: 5\n }\n }\n }\n ]\n },\n identifier: {\n rules: [\n {\n selector: \"body\",\n method: \"text\",\n processor: (_values, context) => {\n const match = context.url.match(/\\/dp\\/([A-Z0-9]{10,})/);\n return match ? match[1] : void 0;\n }\n }\n ]\n }\n }\n },\n {\n patterns: amazonPatterns,\n postFilters: [\"^https?://(?:www\\\\.)?amazon\\\\.com/\"],\n locale: \"en-US\",\n siteName: \"Amazon US\",\n fields: {\n title: {\n required: true,\n rules: [\n {\n selector: \"#productTitle\",\n method: \"text\"\n }\n ]\n },\n image: {\n rules: amazonImageRules\n },\n price: {\n rules: [\n {\n selector: [\n \"span.a-price-whole\",\n \"span.a-price.a-text-price\",\n \".a-offscreen\",\n \"#priceblock_dealprice\",\n \"#priceblock_ourprice\",\n \"#price_inside_buybox\"\n ],\n method: \"text\",\n processor: {\n type: \"currency\",\n params: {\n symbol: \"$\"\n }\n }\n }\n ]\n },\n reviewCount: {\n rules: [\n {\n selector: \"#acrCustomerReviewText\",\n method: \"text\"\n }\n ]\n },\n rating: {\n rules: [\n {\n selector: \"span.a-icon-alt\",\n method: \"text\",\n processor: {\n type: \"filter\",\n params: {\n contains: \"star\"\n }\n }\n }\n ]\n },\n brand: {\n rules: [\n {\n selector: \"#bylineInfo\",\n method: \"text\",\n processor: (values) => {\n var _a;\n if (values.length === 0 || !values[0]) return void 0;\n const text = values[0];\n const match = text.match(/Brand:\\s*([^V]+?)(?:\\s*Visit|$)/);\n return (_a = match == null ? void 0 : match[1]) == null ? void 0 : _a.trim();\n }\n }\n ]\n },\n features: {\n rules: [\n {\n selector: \"#feature-bullets .a-list-item\",\n method: \"text\",\n multiple: true,\n processor: {\n type: \"filter\",\n params: {\n excludeContains: [\"About this item\"],\n minLength: 5\n }\n }\n }\n ]\n },\n identifier: {\n rules: [\n {\n selector: \"body\",\n method: \"text\",\n processor: (_values, context) => {\n const match = context.url.match(/\\/dp\\/([A-Z0-9]{10,})/);\n return match ? match[1] : void 0;\n }\n }\n ]\n }\n }\n }\n];\nconst downloadedProvidersJson = /* @__PURE__ */ JSON.parse('[{\"provider_name\":\"23HQ\",\"provider_url\":\"http://www.23hq.com\",\"endpoints\":[{\"schemes\":[\"http://www.23hq.com/*/photo/*\"],\"url\":\"http://www.23hq.com/23/oembed\"}]},{\"provider_name\":\"3Q\",\"provider_url\":\"https://3q.video/\",\"endpoints\":[{\"schemes\":[\"https://playout.3qsdn.com/embed/*\"],\"url\":\"https://playout.3qsdn.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Abraia\",\"provider_url\":\"https://abraia.me\",\"endpoints\":[{\"schemes\":[\"https://store.abraia.me/*\"],\"url\":\"https://api.abraia.me/oembed\",\"discovery\":true}]},{\"provider_name\":\"Acast\",\"provider_url\":\"https://embed.acast.com\",\"endpoints\":[{\"schemes\":[\"https://play.acast.com/s/*\"],\"url\":\"https://oembed.acast.com/v1/embed-player\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"ActBlue\",\"provider_url\":\"https://secure.actblue.com\",\"endpoints\":[{\"schemes\":[\"https://secure.actblue.com/donate/*\"],\"url\":\"https://secure.actblue.com/cf/oembed\"}]},{\"provider_name\":\"Adilo\",\"provider_url\":\"https://adilo.bigcommand.com\",\"endpoints\":[{\"schemes\":[\"https://adilo.bigcommand.com/watch/*\"],\"url\":\"https://adilo.bigcommand.com/web/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"afreecaTV\",\"provider_url\":\"https://www.afreecatv.com\",\"endpoints\":[{\"schemes\":[\"https://vod.afreecatv.com/player/\",\"https://v.afree.ca/ST/\",\"https://vod.afreecatv.com/ST/\",\"https://vod.afreecatv.com/PLAYER/STATION/\",\"https://play.afreecatv.com/\"],\"url\":\"https://openapi.afreecatv.com/oembed/embedinfo\",\"discovery\":true}]},{\"provider_name\":\"afreecaTV\",\"provider_url\":\"https://www.sooplive.co.kr\",\"endpoints\":[{\"schemes\":[\"https://vod.sooplive.co.kr/player/\",\"https://v.afree.ca/ST/\",\"https://vod.sooplive.co.kr/ST/\",\"https://vod.sooplive.co.kr/PLAYER/STATION/\",\"https://play.sooplive.co.kr/\"],\"url\":\"https://openapi.sooplive.co.kr/oembed/embedinfo\",\"discovery\":true}]},{\"provider_name\":\"Altium LLC\",\"provider_url\":\"https://altium.com\",\"endpoints\":[{\"schemes\":[\"https://altium.com/viewer/*\"],\"url\":\"https://viewer.altium.com/shell/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Altru\",\"provider_url\":\"https://www.altrulabs.com\",\"endpoints\":[{\"schemes\":[\"https://app.altrulabs.com/*/*?answer_id=*\",\"https://app.altrulabs.com/player/*\"],\"url\":\"https://api.altrulabs.com/api/v1/social/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"amCharts Live Editor\",\"provider_url\":\"https://live.amcharts.com/\",\"endpoints\":[{\"schemes\":[\"http://live.amcharts.com/*\",\"https://live.amcharts.com/*\"],\"url\":\"https://live.amcharts.com/oembed\"}]},{\"provider_name\":\"Amtraker\",\"provider_url\":\"https://amtraker.com\",\"endpoints\":[{\"schemes\":[\"https://amtraker.com/trains/*\",\"https://amtraker.com/trains/*/*\",\"https://*.amtraker.com/trains/*\",\"https://*.amtraker.com/trains/*/*\"],\"url\":\"https://api.amtraker.com/v3/oembed\",\"discovery\":true}]},{\"provider_name\":\"Animatron\",\"provider_url\":\"https://www.animatron.com/\",\"endpoints\":[{\"schemes\":[\"https://www.animatron.com/project/*\",\"https://animatron.com/project/*\"],\"url\":\"https://animatron.com/oembed/json\",\"discovery\":true}]},{\"provider_name\":\"Animoto\",\"provider_url\":\"http://animoto.com/\",\"endpoints\":[{\"schemes\":[\"http://animoto.com/play/*\"],\"url\":\"http://animoto.com/oembeds/create\"}]},{\"provider_name\":\"AnnieMusic\",\"provider_url\":\"https://anniemusic.app\",\"endpoints\":[{\"schemes\":[\"https://anniemusic.app/t/*\",\"https://anniemusic.app/p/*\"],\"url\":\"https://api.anniemusic.app/api/v1/oembed\"}]},{\"provider_name\":\"ArcGIS StoryMaps\",\"provider_url\":\"https://storymaps.arcgis.com\",\"endpoints\":[{\"schemes\":[\"https://storymaps.arcgis.com/stories/*\"],\"url\":\"https://storymaps.arcgis.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Archivos\",\"provider_url\":\"https://app.archivos.digital\",\"endpoints\":[{\"schemes\":[\"https://app.archivos.digital/app/view/*\"],\"url\":\"https://app.archivos.digital/oembed/\"}]},{\"provider_name\":\"AssemblrWorld\",\"provider_url\":\"https://assemblrworld.com/\",\"endpoints\":[{\"schemes\":[\"http://*.studio.assemblrworld.com/creation/*\",\"http://studio.assemblrworld.com/creation/*\",\"http://*.app-edu.assemblrworld.com/Creation/*\",\"http://app-edu.assemblrworld.com/Creation/*\",\"http://assemblr.world/*\",\"http://editor.assemblrworld.com/*\",\"http://*.assemblrworld.com/creation/*\",\"http://*.assemblrworld.com/Creation/*\",\"https://*.studio.assemblrworld.com/creation/*\",\"https://studio.assemblrworld.com/creation/*\",\"https://*.app-edu.assemblrworld.com/Creation/*\",\"https://app-edu.assemblrworld.com/Creation/*\",\"https://assemblr.world/*\",\"https://editor.assemblrworld.com/*\",\"https://*.assemblrworld.com/creation/*\",\"https://*.assemblrworld.com/Creation/*\"],\"url\":\"https://studio.assemblrworld.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"audio.com\",\"provider_url\":\"https://audio.com/\",\"endpoints\":[{\"schemes\":[\"https://audio.com/*\",\"https://www.audio.com/*\",\"http://audio.com/*\",\"http://www.audio.com/*\"],\"url\":\"https://api.audio.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Audioboom\",\"provider_url\":\"https://audioboom.com\",\"endpoints\":[{\"schemes\":[\"https://audioboom.com/channels/*\",\"https://audioboom.com/channel/*\",\"https://audioboom.com/playlists/*\",\"https://audioboom.com/podcasts/*\",\"https://audioboom.com/podcast/*\",\"https://audioboom.com/posts/*\",\"https://audioboom.com/episodes/*\"],\"url\":\"https://audioboom.com/publishing/oembed.{format}\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"AudioClip\",\"provider_url\":\"https://audioclip.naver.com\",\"endpoints\":[{\"schemes\":[\"https://audioclip.naver.com/channels/*/clips/*\",\"https://audioclip.naver.com/audiobooks/*\"],\"url\":\"https://audioclip.naver.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Audiomack\",\"provider_url\":\"https://audiomack.com\",\"endpoints\":[{\"schemes\":[\"https://audiomack.com/*/song/*\",\"https://audiomack.com/*/album/*\",\"https://audiomack.com/*/playlist/*\"],\"url\":\"https://audiomack.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Audiomeans\",\"provider_url\":\"https://audiomeans.fr\",\"endpoints\":[{\"schemes\":[\"https://podcasts.audiomeans.fr/*\"],\"url\":\"https://podcasts.audiomeans.fr/services/oembed\",\"discovery\":false,\"formats\":[\"json\"]}]},{\"provider_name\":\"Backtracks\",\"provider_url\":\"https://backtracks.fm\",\"endpoints\":[{\"schemes\":[\"https://backtracks.fm/*/*/e/*\",\"https://backtracks.fm/*/s/*/*\",\"https://backtracks.fm/*/*/*/*/e/*/*\",\"https://backtracks.fm/*\",\"http://backtracks.fm/*\"],\"url\":\"https://backtracks.fm/oembed\",\"discovery\":true}]},{\"provider_name\":\"Balsamiq Cloud\",\"provider_url\":\"https://balsamiq.cloud/\",\"endpoints\":[{\"schemes\":[\"https://balsamiq.cloud/*\"],\"url\":\"https://balsamiq.cloud/oembed\",\"discovery\":true}]},{\"provider_name\":\"Beams.fm\",\"provider_url\":\"http://beams.fm\",\"endpoints\":[{\"schemes\":[\"https://beams.fm/*\"],\"url\":\"https://api.beams.fm/oEmbed\",\"discovery\":true}]},{\"provider_name\":\"Beautiful.AI\",\"provider_url\":\"https://www.beautiful.ai/\",\"endpoints\":[{\"url\":\"https://www.beautiful.ai/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Behance\",\"provider_url\":\"https://www.behance.net\",\"endpoints\":[{\"schemes\":[\"https://www.behance.net/gallery/*/*\",\"https://www.behance.net/*/services/*/*\"],\"url\":\"https://www.behance.net/services/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"biqnetwork\",\"provider_url\":\"https://biqapp.com/\",\"endpoints\":[{\"schemes\":[\"https://cloud.biqapp.com/*\"],\"url\":\"https://biqapp.com/api/v1/video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Bitchute\",\"provider_url\":\"https://bitchute.com/\",\"endpoints\":[{\"url\":\"https://api.bitchute.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Blackfire.io\",\"provider_url\":\"https://blackfire.io\",\"endpoints\":[{\"schemes\":[\"https://blackfire.io/profiles/*/graph\",\"https://blackfire.io/profiles/compare/*/graph\"],\"url\":\"https://blackfire.io/oembed\",\"discovery\":true}]},{\"provider_name\":\"Blogcast\",\"provider_url\":\"https://blogcast.host/\",\"endpoints\":[{\"schemes\":[\"https://blogcast.host/embed/*\",\"https://blogcast.host/embedly/*\"],\"url\":\"https://blogcast.host/oembed\",\"discovery\":true}]},{\"provider_name\":\"Bluesky Social\",\"provider_url\":\"https://bsky.app\",\"endpoints\":[{\"schemes\":[\"https://bsky.app/profile/*/post/*\"],\"url\":\"https://embed.bsky.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"Bookingmood\",\"provider_url\":\"https://www.bookingmood.com\",\"endpoints\":[{\"schemes\":[\"https://www.bookingmood.com/embed/*/*\"],\"url\":\"https://bookingmood.com/api/oembed\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Bornetube\",\"provider_url\":\"https://www.bornetube.dk/\",\"endpoints\":[{\"schemes\":[\"https://www.bornetube.dk/media/*\",\"https://www.bornetube.dk/video/*\"],\"url\":\"https://www.bornetube.dk/media/lasync/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Box Office Buz\",\"provider_url\":\"http://boxofficebuz.com\",\"endpoints\":[{\"url\":\"http://boxofficebuz.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"BrioVR\",\"provider_url\":\"https://view.briovr.com/\",\"endpoints\":[{\"schemes\":[\"https://view.briovr.com/api/v1/worlds/oembed/*\"],\"url\":\"https://view.briovr.com/api/v1/worlds/oembed/\"}]},{\"provider_name\":\"Bumper\",\"provider_url\":\"http://www.bumper.com\",\"endpoints\":[{\"schemes\":[\"https://www.bumper.com/oembed/bumper\",\"https://www.bumper.com/oembed-s/bumper\"],\"url\":\"https://www.bumper.com/oembed/bumper\",\"discovery\":true}]},{\"provider_name\":\"Bunny\",\"provider_url\":\"https://bunny.net/\",\"endpoints\":[{\"schemes\":[\"https://iframe.mediadelivery.net/*\",\"http://iframe.mediadelivery.net/*\",\"https://video.bunnycdn.com/*\",\"http://video.bunnycdn.com/*\"],\"url\":\"https://video.bunnycdn.com/OEmbed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Buttondown\",\"provider_url\":\"https://buttondown.email/\",\"endpoints\":[{\"schemes\":[\"https://buttondown.email/*\"],\"url\":\"https://buttondown.email/embed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Byzart Project\",\"provider_url\":\"https://cmc.byzart.eu\",\"endpoints\":[{\"schemes\":[\"https://cmc.byzart.eu/files/*\"],\"url\":\"https://cmc.byzart.eu/oembed/\",\"discovery\":false}]},{\"provider_name\":\"Cacoo\",\"provider_url\":\"https://cacoo.com\",\"endpoints\":[{\"schemes\":[\"https://cacoo.com/diagrams/*\"],\"url\":\"http://cacoo.com/oembed.{format}\"}]},{\"provider_name\":\"Canva\",\"provider_url\":\"https://www.canva.com\",\"endpoints\":[{\"schemes\":[\"https://www.canva.com/design/*/view\"],\"url\":\"https://www.canva.com/_oembed\",\"discovery\":true}]},{\"provider_name\":\"Cardinal Blue\",\"provider_url\":\"https://minesweeper.today/\",\"endpoints\":[{\"schemes\":[\"http://minesweeper.today/*\",\"https://minesweeper.today/*\"],\"url\":\"https://minesweeper.today/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"castmake\",\"provider_url\":\"https://www.castmake-ai.com\",\"endpoints\":[{\"schemes\":[\"https://www.castmake-ai.com/c/*/episodes/*\"],\"url\":\"http://castmake-ai.com/api/embed\",\"discovery\":true}]},{\"provider_name\":\"CatBoat\",\"provider_url\":\"http://img.catbo.at/\",\"endpoints\":[{\"schemes\":[\"http://img.catbo.at/*\"],\"url\":\"http://img.catbo.at/oembed.json\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Celero\",\"provider_url\":\"https://www.celero.io\",\"endpoints\":[{\"schemes\":[\"https://embeds.celero.io/*\"],\"url\":\"https://api.celero.io/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Ceros\",\"provider_url\":\"http://www.ceros.com/\",\"endpoints\":[{\"schemes\":[\"http://view.ceros.com/*\",\"https://view.ceros.com/*\"],\"url\":\"http://view.ceros.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Chainflix\",\"provider_url\":\"https://chainflix.net\",\"endpoints\":[{\"schemes\":[\"https://chainflix.net/video/*\",\"https://chainflix.net/video/embed/*\",\"https://*.chainflix.net/video/*\",\"https://*.chainflix.net/video/embed/*\"],\"url\":\"https://www.chainflix.net/video/oembed\",\"discovery\":true}]},{\"provider_name\":\"ChartBlocks\",\"provider_url\":\"http://www.chartblocks.com/\",\"endpoints\":[{\"schemes\":[\"http://public.chartblocks.com/c/*\"],\"url\":\"http://embed.chartblocks.com/1.0/oembed\"}]},{\"provider_name\":\"chirbit.com\",\"provider_url\":\"http://www.chirbit.com/\",\"endpoints\":[{\"schemes\":[\"http://chirb.it/*\"],\"url\":\"http://chirb.it/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"CHROCO\",\"provider_url\":\"https://chroco.ooo/\",\"endpoints\":[{\"schemes\":[\"https://chroco.ooo/mypage/*\",\"https://chroco.ooo/story/*\"],\"url\":\"https://chroco.ooo/embed\",\"discovery\":true}]},{\"provider_name\":\"CircuitLab\",\"provider_url\":\"https://www.circuitlab.com/\",\"endpoints\":[{\"schemes\":[\"https://www.circuitlab.com/circuit/*\"],\"url\":\"https://www.circuitlab.com/circuit/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Clipland\",\"provider_url\":\"http://www.clipland.com/\",\"endpoints\":[{\"schemes\":[\"http://www.clipland.com/v/*\",\"https://www.clipland.com/v/*\"],\"url\":\"https://www.clipland.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Clyp\",\"provider_url\":\"http://clyp.it/\",\"endpoints\":[{\"schemes\":[\"http://clyp.it/*\",\"http://clyp.it/playlist/*\"],\"url\":\"http://api.clyp.it/oembed/\",\"discovery\":true}]},{\"provider_name\":\"CoCo Corp\",\"provider_url\":\"https://ilovecoco.video\",\"endpoints\":[{\"schemes\":[\"https://app.ilovecoco.video/*/embed\"],\"url\":\"https://app.ilovecoco.video/api/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"CodeHS\",\"provider_url\":\"http://www.codehs.com\",\"endpoints\":[{\"schemes\":[\"https://codehs.com/editor/share_abacus/*\"],\"url\":\"https://codehs.com/api/sharedprogram/1/oembed/\",\"discovery\":true}]},{\"provider_name\":\"CodePen\",\"provider_url\":\"https://codepen.io\",\"endpoints\":[{\"schemes\":[\"http://codepen.io/*\",\"https://codepen.io/*\"],\"url\":\"https://codepen.io/api/oembed\"}]},{\"provider_name\":\"Codepoints\",\"provider_url\":\"https://codepoints.net\",\"endpoints\":[{\"schemes\":[\"http://codepoints.net/*\",\"https://codepoints.net/*\",\"http://www.codepoints.net/*\",\"https://www.codepoints.net/*\"],\"url\":\"https://codepoints.net/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"CodeSandbox\",\"provider_url\":\"https://codesandbox.io\",\"endpoints\":[{\"schemes\":[\"https://codesandbox.io/s/*\",\"https://codesandbox.io/embed/*\"],\"url\":\"https://codesandbox.io/oembed\"}]},{\"provider_name\":\"CollegeHumor\",\"provider_url\":\"http://www.collegehumor.com/\",\"endpoints\":[{\"schemes\":[\"http://www.collegehumor.com/video/*\"],\"url\":\"http://www.collegehumor.com/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Commaful\",\"provider_url\":\"https://commaful.com\",\"endpoints\":[{\"schemes\":[\"https://commaful.com/play/*\"],\"url\":\"https://commaful.com/api/oembed/\"}]},{\"provider_name\":\"Coub\",\"provider_url\":\"http://coub.com/\",\"endpoints\":[{\"schemes\":[\"http://coub.com/view/*\",\"http://coub.com/embed/*\"],\"url\":\"http://coub.com/api/oembed.{format}\"}]},{\"provider_name\":\"Crowd Ranking\",\"provider_url\":\"http://crowdranking.com\",\"endpoints\":[{\"schemes\":[\"http://crowdranking.com/*/*\"],\"url\":\"http://crowdranking.com/api/oembed.{format}\"}]},{\"provider_name\":\"Crumb.sh\",\"provider_url\":\"https://crumb.sh\",\"endpoints\":[{\"schemes\":[\"https://crumb.sh/*\"],\"url\":\"https://crumb.sh/oembed/\"}]},{\"provider_name\":\"Cueup DJ Booking\",\"provider_url\":\"https://cueup.io\",\"endpoints\":[{\"schemes\":[\"https://cueup.io/user/*/sounds/*\"],\"url\":\"https://gql.cueup.io/oembed\"}]},{\"provider_name\":\"Curated\",\"provider_url\":\"https://curated.co/\",\"endpoints\":[{\"schemes\":[\"https://*.curated.co/*\"],\"url\":\"https://api.curated.co/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"CustomerDB\",\"provider_url\":\"http://customerdb.com/\",\"endpoints\":[{\"schemes\":[\"https://app.customerdb.com/share/*\"],\"url\":\"https://app.customerdb.com/embed\"}]},{\"provider_name\":\"dadan\",\"provider_url\":\"https://www.dadan.io\",\"endpoints\":[{\"schemes\":[\"https://app.dadan.io/*\",\"https://stage.dadan.io/*\"],\"url\":\"https://app.dadan.io/api/video/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Dailymotion\",\"provider_url\":\"https://www.dailymotion.com\",\"endpoints\":[{\"schemes\":[\"https://www.dailymotion.com/video/*\",\"https://geo.dailymotion.com/player.html?video=*\"],\"url\":\"https://www.dailymotion.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"DALEXNI\",\"provider_url\":\"https://dalexni.com/\",\"endpoints\":[{\"schemes\":[\"https://dalexni.com/i/*\"],\"url\":\"https://dalexni.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Datawrapper\",\"provider_url\":\"http://www.datawrapper.de\",\"endpoints\":[{\"schemes\":[\"https://datawrapper.dwcdn.net/*\"],\"url\":\"https://api.datawrapper.de/v3/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Deseret News\",\"provider_url\":\"https://www.deseret.com\",\"endpoints\":[{\"schemes\":[\"https://*.deseret.com/*\"],\"url\":\"https://embed.deseret.com/\"}]},{\"provider_name\":\"Deviantart.com\",\"provider_url\":\"http://www.deviantart.com\",\"endpoints\":[{\"schemes\":[\"http://*.deviantart.com/art/*\",\"http://*.deviantart.com/*#/d*\",\"http://fav.me/*\",\"http://sta.sh/*\",\"https://*.deviantart.com/art/*\",\"https://*.deviantart.com/*/art/*\",\"https://sta.sh/*\",\"https://*.deviantart.com/*#/d*\"],\"url\":\"http://backend.deviantart.com/oembed\"}]},{\"provider_name\":\"Digiteka\",\"provider_url\":\"https://www.ultimedia.com/\",\"endpoints\":[{\"schemes\":[\"https://www.ultimedia.com/central/video/edit/id/*/topic_id/*/\",\"https://www.ultimedia.com/default/index/videogeneric/id/*/showtitle/1/viewnc/1\",\"https://www.ultimedia.com/default/index/videogeneric/id/*\"],\"url\":\"https://www.ultimedia.com/api/search/oembed\",\"discovery\":true}]},{\"provider_name\":\"DocDroid\",\"provider_url\":\"https://www.docdroid.net/\",\"endpoints\":[{\"schemes\":[\"https://*.docdroid.net/*\",\"http://*.docdroid.net/*\",\"https://docdro.id/*\",\"http://docdro.id/*\",\"https://*.docdroid.com/*\",\"http://*.docdroid.com/*\"],\"url\":\"https://www.docdroid.net/api/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Docswell\",\"provider_url\":\"https://docswell.com\",\"endpoints\":[{\"schemes\":[\"http://docswell.com/s/*/*\",\"https://docswell.com/s/*/*\",\"http://www.docswell.com/s/*/*\",\"https://www.docswell.com/s/*/*\"],\"url\":\"https://www.docswell.com/service/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Dotsub\",\"provider_url\":\"http://dotsub.com/\",\"endpoints\":[{\"schemes\":[\"http://dotsub.com/view/*\"],\"url\":\"http://dotsub.com/services/oembed\"}]},{\"provider_name\":\"Dream Broker\",\"provider_url\":\"https://dreambroker.com\",\"endpoints\":[{\"schemes\":[\"https://www.dreambroker.com/channel/*/*\"],\"url\":\"https://dreambroker.com/channel/oembed\",\"discovery\":true}]},{\"provider_name\":\"DTube\",\"provider_url\":\"https://d.tube/\",\"endpoints\":[{\"schemes\":[\"https://d.tube/v/*\"],\"url\":\"https://api.d.tube/oembed\",\"discovery\":true}]},{\"provider_name\":\"EchoesHQ\",\"provider_url\":\"https://echoeshq.com\",\"endpoints\":[{\"schemes\":[\"http://app.echoeshq.com/embed/*\"],\"url\":\"https://api.echoeshq.com/oembed\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"eduMedia\",\"provider_url\":\"https://www.edumedia-sciences.com/\",\"endpoints\":[{\"url\":\"https://www.edumedia-sciences.com/oembed.json\",\"discovery\":true},{\"url\":\"https://www.edumedia-sciences.com/oembed.xml\",\"discovery\":true}]},{\"provider_name\":\"EgliseInfo\",\"provider_url\":\"http://egliseinfo.catholique.fr/\",\"endpoints\":[{\"schemes\":[\"http://egliseinfo.catholique.fr/*\"],\"url\":\"http://egliseinfo.catholique.fr/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Embedery\",\"provider_url\":\"https://embedery.com/\",\"endpoints\":[{\"schemes\":[\"https://embedery.com/widget/*\"],\"url\":\"https://embedery.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ethfiddle\",\"provider_url\":\"https://www.ethfiddle.com/\",\"endpoints\":[{\"schemes\":[\"https://ethfiddle.com/*\"],\"url\":\"https://ethfiddle.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"EventLive\",\"provider_url\":\"https://eventlive.pro\",\"endpoints\":[{\"schemes\":[\"https://evt.live/*\",\"https://evt.live/*/*\",\"https://live.eventlive.pro/*\",\"https://live.eventlive.pro/*/*\"],\"url\":\"https://evt.live/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"everviz\",\"provider_url\":\"https://everviz.com\",\"endpoints\":[{\"schemes\":[\"https://app.everviz.com/embed/*\",\"http://app.everviz.com/embed/*\"],\"url\":\"https://api.everviz.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ex.Co\",\"provider_url\":\"https://ex.co\",\"endpoints\":[{\"schemes\":[\"https://app.ex.co/stories/*\",\"https://www.playbuzz.com/*\"],\"url\":\"https://oembed.ex.co/item\",\"discovery\":false}]},{\"provider_name\":\"Eyrie\",\"provider_url\":\"https://eyrie.io/\",\"endpoints\":[{\"schemes\":[\"https://eyrie.io/board/*\",\"https://eyrie.io/sparkfun/*\"],\"url\":\"https://eyrie.io/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Facebook\",\"provider_url\":\"https://www.facebook.com/\",\"endpoints\":[{\"schemes\":[\"https://www.facebook.com/*/posts/*\",\"https://www.facebook.com/*/activity/*\",\"https://www.facebook.com/*/photos/*\",\"https://www.facebook.com/photo.php?fbid=*\",\"https://www.facebook.com/photos/*\",\"https://www.facebook.com/permalink.php?story_fbid=*\",\"https://www.facebook.com/media/set?set=*\",\"https://www.facebook.com/questions/*\",\"https://www.facebook.com/notes/*/*/*\"],\"url\":\"https://graph.facebook.com/v16.0/oembed_post\",\"discovery\":false},{\"schemes\":[\"https://www.facebook.com/*/videos/*\",\"https://www.facebook.com/video.php?id=*\",\"https://www.facebook.com/video.php?v=*\"],\"url\":\"https://graph.facebook.com/v16.0/oembed_video\",\"discovery\":false},{\"schemes\":[\"https://www.facebook.com/*\"],\"url\":\"https://graph.facebook.com/v16.0/oembed_page\",\"discovery\":false}]},{\"provider_name\":\"Fader\",\"provider_url\":\"https://app.getfader.com\",\"endpoints\":[{\"schemes\":[\"https://app.getfader.com/projects/*/publish\"],\"url\":\"https://app.getfader.com/api/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Faithlife TV\",\"provider_url\":\"https://faithlifetv.com\",\"endpoints\":[{\"schemes\":[\"https://faithlifetv.com/items/*\",\"https://faithlifetv.com/items/resource/*/*\",\"https://faithlifetv.com/media/*\",\"https://faithlifetv.com/media/assets/*\",\"https://faithlifetv.com/media/resource/*/*\"],\"url\":\"https://faithlifetv.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Figma\",\"provider_url\":\"https://www.figma.com\",\"endpoints\":[{\"schemes\":[\"https://www.figma.com/file/*\"],\"url\":\"https://www.figma.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Firework\",\"provider_url\":\"https://fireworktv.com/\",\"endpoints\":[{\"schemes\":[\"https://*.fireworktv.com/*\",\"https://*.fireworktv.com/embed/*/v/*\"],\"url\":\"https://www.fireworktv.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"FITE\",\"provider_url\":\"https://www.fite.tv/\",\"endpoints\":[{\"schemes\":[\"https://www.fite.tv/watch/*\"],\"url\":\"https://www.fite.tv/oembed\",\"discovery\":true}]},{\"provider_name\":\"Flat\",\"provider_url\":\"https://flat.io\",\"endpoints\":[{\"schemes\":[\"https://flat.io/score/*\",\"https://*.flat.io/score/*\"],\"url\":\"https://flat.io/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Flickr\",\"provider_url\":\"https://www.flickr.com/\",\"endpoints\":[{\"schemes\":[\"http://*.flickr.com/photos/*\",\"http://flic.kr/p/*\",\"http://flic.kr/s/*\",\"https://*.flickr.com/photos/*\",\"https://flic.kr/p/*\",\"https://flic.kr/s/*\",\"https://*.*.flickr.com/*/*\",\"http://*.*.flickr.com/*/*\"],\"url\":\"https://www.flickr.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Flourish\",\"provider_url\":\"https://flourish.studio/\",\"endpoints\":[{\"schemes\":[\"https://public.flourish.studio/visualisation/*\",\"https://public.flourish.studio/story/*\"],\"url\":\"https://app.flourish.studio/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"FlowHubOrg\",\"provider_url\":\"https://flows.flowhub.org\",\"endpoints\":[{\"url\":\"https://flowhub.org/o/embed\",\"schemes\":[\"https://flowhub.org/f/*\",\"https://flowhub.org/s/*\"],\"discovery\":true}]},{\"provider_name\":\"Fooday\",\"provider_url\":\"https://fooday.app\",\"endpoints\":[{\"schemes\":[\"https://fooday.app/*/reviews/*\",\"https://fooday.app/*/spots/*\"],\"url\":\"https://fooday.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"FOX SPORTS Australia\",\"provider_url\":\"http://www.foxsports.com.au\",\"endpoints\":[{\"schemes\":[\"http://fiso.foxsports.com.au/isomorphic-widget/*\",\"https://fiso.foxsports.com.au/isomorphic-widget/*\"],\"url\":\"https://fiso.foxsports.com.au/oembed\"}]},{\"provider_name\":\"Framatube\",\"provider_url\":\"https://framatube.org/\",\"endpoints\":[{\"schemes\":[\"https://framatube.org/w/*\"],\"url\":\"https://framatube.org/services/oembed\"}]},{\"provider_name\":\"FrameBuzz\",\"provider_url\":\"https://framebuzz.com/\",\"endpoints\":[{\"schemes\":[\"http://framebuzz.com/v/*\",\"https://framebuzz.com/v/*\"],\"url\":\"https://framebuzz.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Framer\",\"provider_url\":\"https://www.framer.com\",\"endpoints\":[{\"schemes\":[\"https://framer.com/share/*\",\"https://framer.com/embed/*\"],\"url\":\"https://api.framer.com/web/oembed\",\"discovery\":true}]},{\"provider_name\":\"Geograph Britain and Ireland\",\"provider_url\":\"https://www.geograph.org.uk/\",\"endpoints\":[{\"schemes\":[\"http://*.geograph.org.uk/*\",\"http://*.geograph.co.uk/*\",\"http://*.geograph.ie/*\",\"http://*.wikimedia.org/*_geograph.org.uk_*\"],\"url\":\"http://api.geograph.org.uk/api/oembed\"}]},{\"provider_name\":\"Geograph Channel Islands\",\"provider_url\":\"http://channel-islands.geograph.org/\",\"endpoints\":[{\"schemes\":[\"http://*.geograph.org.gg/*\",\"http://*.geograph.org.je/*\",\"http://channel-islands.geograph.org/*\",\"http://channel-islands.geographs.org/*\",\"http://*.channel.geographs.org/*\"],\"url\":\"http://www.geograph.org.gg/api/oembed\"}]},{\"provider_name\":\"Geograph Germany\",\"provider_url\":\"http://geo-en.hlipp.de/\",\"endpoints\":[{\"schemes\":[\"http://geo-en.hlipp.de/*\",\"http://geo.hlipp.de/*\",\"http://germany.geograph.org/*\"],\"url\":\"http://geo.hlipp.de/restapi.php/api/oembed\"}]},{\"provider_name\":\"Getty Images\",\"provider_url\":\"http://www.gettyimages.com/\",\"endpoints\":[{\"schemes\":[\"http://gty.im/*\"],\"url\":\"http://embed.gettyimages.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Gifnote\",\"provider_url\":\"https://www.gifnote.com/\",\"endpoints\":[{\"url\":\"https://www.gifnote.com/services/oembed\",\"schemes\":[\"https://www.gifnote.com/play/*\"],\"discovery\":true}]},{\"provider_name\":\"GIPHY\",\"provider_url\":\"https://giphy.com\",\"endpoints\":[{\"schemes\":[\"https://giphy.com/gifs/*\",\"https://giphy.com/clips/*\",\"http://gph.is/*\",\"https://media.giphy.com/media/*/giphy.gif\"],\"url\":\"https://giphy.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"GloriaTV\",\"provider_url\":\"https://gloria.tv/\",\"endpoints\":[{\"url\":\"https://gloria.tv/oembed/\",\"discovery\":true}]},{\"provider_name\":\"GMetri\",\"provider_url\":\"https://www.gmetri.com/\",\"endpoints\":[{\"schemes\":[\"https://view.gmetri.com/*\",\"https://*.gmetri.com/*\"],\"url\":\"https://embed.gmetri.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Gong\",\"provider_url\":\"https://www.gong.io/\",\"endpoints\":[{\"schemes\":[\"https://app.gong.io/call?id=*\"],\"url\":\"https://app.gong.io/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Grain\",\"provider_url\":\"https://grain.com\",\"endpoints\":[{\"schemes\":[\"https://grain.co/highlight/*\",\"https://grain.co/share/*\",\"https://grain.com/share/*\"],\"url\":\"https://api.grain.com/_/api/oembed\"}]},{\"provider_name\":\"GT Channel\",\"provider_url\":\"https://gtchannel.com\",\"endpoints\":[{\"schemes\":[\"https://gtchannel.com/watch/*\"],\"url\":\"https://api.luminery.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Gumlet\",\"provider_url\":\"https://www.gumlet.com/\",\"endpoints\":[{\"schemes\":[\"https://gumlet.tv/watch/*\",\"https://play.gumlet.io/embed/*\"],\"url\":\"https://api.gumlet.com/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Gyazo\",\"provider_url\":\"https://gyazo.com\",\"endpoints\":[{\"schemes\":[\"https://gyazo.com/*\"],\"url\":\"https://api.gyazo.com/api/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"HASH\",\"provider_url\":\"https://hash.ai\",\"endpoints\":[{\"schemes\":[\"https://core.hash.ai/@*\"],\"url\":\"https://api.hash.ai/oembed\",\"discovery\":false}]},{\"provider_name\":\"hearthis.at\",\"provider_url\":\"https://hearthis.at/\",\"endpoints\":[{\"schemes\":[\"https://hearthis.at/*/*/\",\"https://hearthis.at/*/set/*/\"],\"url\":\"https://hearthis.at/oembed/?format=json\",\"discovery\":true}]},{\"provider_name\":\"helenenglish_education\",\"provider_url\":\"https://helenenglish.education/\",\"endpoints\":[{\"schemes\":[\"https://helenenglish.education/widget*\"],\"url\":\"https://helenenglish.education/embed\",\"discovery\":true}]},{\"provider_name\":\"Heyzine\",\"provider_url\":\"https://heyzine.com\",\"endpoints\":[{\"schemes\":[\"https://heyzine.com/flip-book/*\",\"https://*.hflip.co/*\",\"https://*.aflip.in/*\"],\"url\":\"https://heyzine.com/api1/oembed\",\"discovery\":true}]},{\"provider_name\":\"hihaho\",\"provider_url\":\"https://www.hihaho.com\",\"endpoints\":[{\"schemes\":[\"https://player.hihaho.com/*\"],\"url\":\"https://player.hihaho.com/services/oembed\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"HippoVideo\",\"provider_url\":\"https://hippovideo.io\",\"endpoints\":[{\"schemes\":[\"http://*.hippovideo.io/*\",\"https://*.hippovideo.io/*\"],\"url\":\"https://www.hippovideo.io/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Homey\",\"provider_url\":\"https://homey.app\",\"endpoints\":[{\"schemes\":[\"https://homey.app/f/*\",\"https://homey.app/*/flow/*\"],\"url\":\"https://homey.app/api/oembed/flow\",\"discovery\":true}]},{\"provider_name\":\"Hopvue\",\"provider_url\":\"https://www.hopvue.com\",\"endpoints\":[{\"schemes\":[\"https://*.hopvue.com/*\"],\"url\":\"https://portal.hopvue.com/api/oembed/\",\"discovery\":true}]},{\"provider_name\":\"HuffDuffer\",\"provider_url\":\"http://huffduffer.com\",\"endpoints\":[{\"schemes\":[\"http://huffduffer.com/*/*\"],\"url\":\"http://huffduffer.com/oembed\"}]},{\"provider_name\":\"Hulu\",\"provider_url\":\"http://www.hulu.com/\",\"endpoints\":[{\"schemes\":[\"http://www.hulu.com/watch/*\"],\"url\":\"http://www.hulu.com/api/oembed.{format}\"}]},{\"provider_name\":\"Icosa Gallery\",\"provider_url\":\"https://icosa.gallery\",\"endpoints\":[{\"schemes\":[\"https://icosa.gallery/view/*\"],\"url\":\"https://api.icosa.gallery/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ideamapper\",\"provider_url\":\"https://ideamapper.com/\",\"endpoints\":[{\"schemes\":[\"https://oembed.ideamapper.com/*\"],\"url\":\"https://oembed.ideamapper.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Idomoo\",\"provider_url\":\"https://idomoo.com/\",\"endpoints\":[{\"schemes\":[\"https://*.idomoo.com/*\"],\"url\":\"https://oembed.idomoo.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"iFixit\",\"provider_url\":\"http://www.iFixit.com\",\"endpoints\":[{\"schemes\":[\"http://www.ifixit.com/Guide/View/*\"],\"url\":\"http://www.ifixit.com/Embed\"}]},{\"provider_name\":\"IFTTT\",\"provider_url\":\"http://www.ifttt.com/\",\"endpoints\":[{\"schemes\":[\"http://ifttt.com/recipes/*\"],\"url\":\"http://www.ifttt.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Ignite\",\"provider_url\":\"https://ignite.video/\",\"endpoints\":[{\"schemes\":[\"https://*.videocdn.net/player/*\",\"https://*.euvideocdn.com/player/*\"],\"url\":\"https://app.ignitevideo.cloud/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"iHeartRadio\",\"provider_url\":\"https://www.iheart.com\",\"endpoints\":[{\"schemes\":[\"https://www.iheart.com/podcast/*/*\"],\"url\":\"https://www.iheart.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"iMenuPro\",\"provider_url\":\"https://imenupro.com\",\"endpoints\":[{\"schemes\":[\"http://qr.imenupro.com/*\",\"https://qr.imenupro.com/*\"],\"url\":\"https://qr.imenupro.com/api/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Incredible\",\"provider_url\":\"https://incredible.dev\",\"endpoints\":[{\"schemes\":[\"https://incredible.dev/watch/*\"],\"url\":\"https://oembed.incredible.dev/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Indaco\",\"provider_url\":\"https://player.indacolive.com/\",\"endpoints\":[{\"schemes\":[\"https://player.indacolive.com/player/jwp/clients/*\"],\"url\":\"https://player.indacolive.com/services/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Infogram\",\"provider_url\":\"https://infogram.com/\",\"endpoints\":[{\"schemes\":[\"https://infogram.com/*\"],\"url\":\"https://infogram.com/oembed\"}]},{\"provider_name\":\"Infoveave\",\"provider_url\":\"https://infoveave.net/\",\"endpoints\":[{\"schemes\":[\"https://*.infoveave.net/E/*\",\"https://*.infoveave.net/P/*\"],\"url\":\"https://infoveave.net/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Injurymap\",\"provider_url\":\"https://www.injurymap.com/\",\"endpoints\":[{\"schemes\":[\"https://www.injurymap.com/exercises/*\"],\"url\":\"https://www.injurymap.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Inoreader\",\"provider_url\":\"https://www.inoreader.com\",\"endpoints\":[{\"schemes\":[\"https://www.inoreader.com/oembed/\"],\"url\":\"https://www.inoreader.com/oembed/api/\",\"discovery\":true}]},{\"provider_name\":\"inphood\",\"provider_url\":\"http://inphood.com/\",\"endpoints\":[{\"schemes\":[\"http://*.inphood.com/*\"],\"url\":\"http://api.inphood.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Insight Timer\",\"provider_url\":\"https://insighttimer.com/\",\"endpoints\":[{\"schemes\":[\"https://insighttimer.com/*\"],\"url\":\"https://widgets.insighttimer.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Instagram\",\"provider_url\":\"https://instagram.com\",\"endpoints\":[{\"schemes\":[\"http://instagram.com/*/p/*\",\"http://www.instagram.com/*/p/*\",\"https://instagram.com/*/p/*\",\"https://www.instagram.com/*/p/*\",\"http://instagram.com/p/*\",\"http://instagr.am/p/*\",\"http://www.instagram.com/p/*\",\"http://www.instagr.am/p/*\",\"https://instagram.com/p/*\",\"https://instagr.am/p/*\",\"https://www.instagram.com/p/*\",\"https://www.instagr.am/p/*\",\"http://instagram.com/tv/*\",\"http://instagr.am/tv/*\",\"http://www.instagram.com/tv/*\",\"http://www.instagr.am/tv/*\",\"https://instagram.com/tv/*\",\"https://instagr.am/tv/*\",\"https://www.instagram.com/tv/*\",\"https://www.instagr.am/tv/*\",\"http://www.instagram.com/reel/*\",\"https://www.instagram.com/reel/*\",\"http://instagram.com/reel/*\",\"https://instagram.com/reel/*\",\"http://instagr.am/reel/*\",\"https://instagr.am/reel/*\"],\"url\":\"https://graph.facebook.com/v16.0/instagram_oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Insticator Inc\",\"provider_url\":\"https://www.insticator.com/\",\"endpoints\":[{\"schemes\":[\"https://ppa.insticator.com/embed-unit/*\"],\"url\":\"https://www.insticator.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Issuu\",\"provider_url\":\"https://issuu.com/\",\"endpoints\":[{\"schemes\":[\"https://issuu.com/*/docs/*\"],\"url\":\"https://issuu.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Itabtech infosys\",\"provider_url\":\"https://samay.itabtechinfosys.com/\",\"endpoints\":[{\"schemes\":[\"https://samay.itabtechinfosys.com/*\"],\"url\":\"https://samay.itabtechinfosys.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"itemis CREATE\",\"provider_url\":\"https://play.itemis.io\",\"endpoints\":[{\"schemes\":[\"https://play.itemis.io/*\"],\"url\":\"https://create.storage.api.itemis.io/api/embed\"}]},{\"provider_name\":\"Jovian\",\"provider_url\":\"https://jovian.com/\",\"endpoints\":[{\"schemes\":[\"https://jovian.ml/*\",\"https://jovian.ml/viewer*\",\"https://*.jovian.ml/*\",\"https://jovian.ai/*\",\"https://jovian.ai/viewer*\",\"https://*.jovian.ai/*\",\"https://jovian.com/*\",\"https://jovian.com/viewer*\",\"https://*.jovian.com/*\"],\"url\":\"https://api.jovian.com/oembed.json\",\"discovery\":true}]},{\"provider_name\":\"KakaoTv\",\"provider_url\":\"https://tv.kakao.com/\",\"endpoints\":[{\"schemes\":[\"https://tv.kakao.com/channel/*/cliplink/*\",\"https://tv.kakao.com/m/channel/*/cliplink/*\",\"https://tv.kakao.com/channel/v/*\",\"https://tv.kakao.com/channel/*/livelink/*\",\"https://tv.kakao.com/m/channel/*/livelink/*\",\"https://tv.kakao.com/channel/l/*\"],\"url\":\"https://tv.kakao.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kickstarter\",\"provider_url\":\"http://www.kickstarter.com\",\"endpoints\":[{\"schemes\":[\"http://www.kickstarter.com/projects/*\"],\"url\":\"http://www.kickstarter.com/services/oembed\"}]},{\"provider_name\":\"Kidoju\",\"provider_url\":\"https://www.kidoju.com/\",\"endpoints\":[{\"schemes\":[\"https://www.kidoju.com/en/x/*/*\",\"https://www.kidoju.com/fr/x/*/*\"],\"url\":\"https://www.kidoju.com/api/oembed\"}]},{\"provider_name\":\"Kirim.Email\",\"provider_url\":\"https://kirim.email/\",\"endpoints\":[{\"schemes\":[\"https://halaman.email/form/*\",\"https://aplikasi.kirim.email/form/*\"],\"url\":\"https://halaman.email/service/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kit\",\"provider_url\":\"https://kit.co/\",\"endpoints\":[{\"schemes\":[\"http://kit.co/*/*\",\"https://kit.co/*/*\"],\"url\":\"https://embed.kit.co/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kitchenbowl\",\"provider_url\":\"http://www.kitchenbowl.com\",\"endpoints\":[{\"schemes\":[\"http://www.kitchenbowl.com/recipe/*\"],\"url\":\"http://www.kitchenbowl.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"kmdr\",\"provider_url\":\"https://kmdr.sh\",\"endpoints\":[{\"schemes\":[\"https://app.kmdr.sh/h/*\",\"https://app.kmdr.sh/history/*\"],\"url\":\"https://api.kmdr.sh/services/oembed\"}]},{\"provider_name\":\"Knacki\",\"provider_url\":\"http://jdr.knacki.info\",\"endpoints\":[{\"schemes\":[\"http://jdr.knacki.info/meuh/*\",\"https://jdr.knacki.info/meuh/*\"],\"url\":\"https://jdr.knacki.info/oembed\"}]},{\"provider_name\":\"Knowledge Pad\",\"provider_url\":\"https://knowledgepad.co/\",\"endpoints\":[{\"schemes\":[\"https://knowledgepad.co/#/knowledge/*\"],\"url\":\"https://api.spoonacular.com/knowledge/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Kooapp\",\"provider_url\":\"https://kooapp.com\",\"endpoints\":[{\"schemes\":[\"https://*.kooapp.com/koo/*\",\"http://*.kooapp.com/koo/*\"],\"url\":\"https://embed.kooapp.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Kurozora\",\"provider_url\":\"https://kurozora.app/\",\"endpoints\":[{\"schemes\":[\"https://kurozora.app/episodes/*\",\"https://kurozora.app/songs/*\"],\"url\":\"https://kurozora.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"LearningApps.org\",\"provider_url\":\"http://learningapps.org/\",\"endpoints\":[{\"schemes\":[\"http://learningapps.org/*\"],\"url\":\"http://learningapps.org/oembed.php\",\"discovery\":true}]},{\"provider_name\":\"LeMans.Pod\",\"provider_url\":\"https://umotion-test.univ-lemans.fr/\",\"endpoints\":[{\"schemes\":[\"https://umotion-test.univ-lemans.fr/video/*\"],\"url\":\"https://umotion-test.univ-lemans.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"Lille.Pod\",\"provider_url\":\"https://pod.univ-lille.fr/\",\"endpoints\":[{\"schemes\":[\"https://pod.univ-lille.fr/video/*\"],\"url\":\"https://pod.univ-lille.fr/video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Line Place\",\"provider_url\":\"https://place.line.me\",\"endpoints\":[{\"schemes\":[\"https://place.line.me/businesses/*\"],\"url\":\"https://place.line.me/oembed\"}]},{\"provider_name\":\"Linkstackz\",\"provider_url\":\"https://www.linkstackz.com/\",\"endpoints\":[{\"schemes\":[\"https://linkstackz.com/irf/*\",\"https://linkstackz.com/post/*\"],\"url\":\"https://api.linkstackz.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Livestream\",\"provider_url\":\"https://livestream.com/\",\"endpoints\":[{\"schemes\":[\"https://livestream.com/accounts/*/events/*\",\"https://livestream.com/accounts/*/events/*/videos/*\",\"https://livestream.com/*/events/*\",\"https://livestream.com/*/events/*/videos/*\",\"https://livestream.com/*/*\",\"https://livestream.com/*/*/videos/*\"],\"url\":\"https://livestream.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Loom\",\"provider_url\":\"https://www.loom.com/\",\"endpoints\":[{\"schemes\":[\"https://loom.com/i/*\",\"https://loom.com/share/*\"],\"url\":\"https://www.loom.com/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"LottieFiles\",\"provider_url\":\"https://lottiefiles.com/\",\"endpoints\":[{\"schemes\":[\"https://lottiefiles.com/*\",\"https://*.lottiefiles.com/*\",\"https://*.lottie.host/*\",\"https://lottie.host/*\"],\"url\":\"https://embed.lottiefiles.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Ludus\",\"provider_url\":\"https://ludus.one\",\"endpoints\":[{\"schemes\":[\"https://app.ludus.one/*\"],\"url\":\"https://app.ludus.one/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Lumiere\",\"provider_url\":\"https://latd.com\",\"endpoints\":[{\"schemes\":[\"https://*.lumiere.is/v/*\"],\"url\":\"https://admin.lumiere.is/api/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"marimo\",\"provider_url\":\"https://marimo.io/\",\"endpoints\":[{\"schemes\":[\"https://marimo.app/*\"],\"url\":\"https://marimo.app/oembed\",\"discovery\":true}]},{\"provider_name\":\"MathEmbed\",\"provider_url\":\"http://mathembed.com\",\"endpoints\":[{\"schemes\":[\"http://mathembed.com/latex?inputText=*\",\"http://mathembed.com/latex?inputText=*\"],\"url\":\"http://mathembed.com/oembed\"}]},{\"provider_name\":\"Matterport\",\"provider_url\":\"https://matterport.com/\",\"endpoints\":[{\"url\":\"https://my.matterport.com/api/v1/models/oembed/\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"me.me\",\"provider_url\":\"https://me.me/\",\"endpoints\":[{\"schemes\":[\"https://me.me/i/*\"],\"url\":\"https://me.me/oembed\",\"discovery\":true}]},{\"provider_name\":\"Mediastream\",\"provider_url\":\"https://mdstrm.com/\",\"endpoints\":[{\"schemes\":[\"https://mdstrm.com/embed/*\",\"https://mdstrm.com/live-stream/*\",\"https://mdstrm.com/image/*\"],\"url\":\"https://mdstrm.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Medienarchiv der Künste - Zürcher Hochschule der Künste\",\"provider_url\":\"https://medienarchiv.zhdk.ch/\",\"endpoints\":[{\"schemes\":[\"https://medienarchiv.zhdk.ch/entries/*\"],\"url\":\"https://medienarchiv.zhdk.ch/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Mermaid Ink\",\"provider_url\":\"https://mermaid.ink\",\"endpoints\":[{\"schemes\":[\"https://mermaid.ink/img/*\",\"https://mermaid.ink/svg/*\"],\"url\":\"https://mermaid.ink/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Microsoft Stream\",\"provider_url\":\"https://stream.microsoft.com\",\"endpoints\":[{\"schemes\":[\"https://*.microsoftstream.com/video/*\",\"https://*.microsoftstream.com/channel/*\"],\"url\":\"https://web.microsoftstream.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Minerva\",\"provider_url\":\"https://www.minervaknows.com\",\"endpoints\":[{\"schemes\":[\"https://www.minervaknows.com/featured-recipes/*\",\"https://www.minervaknows.com/themes/*\",\"https://www.minervaknows.com/themes/*/recipes/*\",\"https://app.minervaknows.com/recipes/*\",\"https://app.minervaknows.com/recipes/*/follow\"],\"url\":\"https://oembed.minervaknows.com\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Miro\",\"provider_url\":\"https://miro.com/\",\"endpoints\":[{\"schemes\":[\"https://miro.com/app/board/*\"],\"url\":\"https://miro.com/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"MixCloud\",\"provider_url\":\"https://mixcloud.com/\",\"endpoints\":[{\"schemes\":[\"http://www.mixcloud.com/*/*/\",\"https://www.mixcloud.com/*/*/\"],\"url\":\"https://www.mixcloud.com/oembed/\"}]},{\"provider_name\":\"Mixpanel\",\"provider_url\":\"https://mixpanel.com/\",\"endpoints\":[{\"schemes\":[\"https://mixpanel.com/*\",\"https://*.mixpanel.com/*\"],\"url\":\"https://mixpanel.com/api/app/embed/oembed/\"}]},{\"provider_name\":\"Moby Picture\",\"provider_url\":\"http://www.mobypicture.com\",\"endpoints\":[{\"schemes\":[\"http://www.mobypicture.com/user/*/view/*\",\"http://moby.to/*\"],\"url\":\"http://api.mobypicture.com/oEmbed\"}]},{\"provider_name\":\"Music Box Maniacs\",\"provider_url\":\"https://musicboxmaniacs.com/\",\"endpoints\":[{\"schemes\":[\"https://musicboxmaniacs.com/explore/melody/*\"],\"url\":\"https://musicboxmaniacs.com/embed/\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"myBeweeg\",\"provider_url\":\"https://mybeweeg.com\",\"endpoints\":[{\"schemes\":[\"https://mybeweeg.com/w/*\"],\"url\":\"https://mybeweeg.com/services/oembed\"}]},{\"provider_name\":\"MySQL Visual Explain\",\"provider_url\":\"https://mysqlexplain.com\",\"endpoints\":[{\"schemes\":[\"https://mysqlexplain.com/explain/*\",\"https://embed.mysqlexplain.com/explain/*\"],\"url\":\"https://api.mysqlexplain.com/v2/oembed.json\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Namchey\",\"provider_url\":\"https://namchey.com\",\"endpoints\":[{\"schemes\":[\"https://namchey.com/embeds/*\"],\"url\":\"https://namchey.com/api/oembed\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"nanoo.tv\",\"provider_url\":\"https://www.nanoo.tv/\",\"endpoints\":[{\"schemes\":[\"http://*.nanoo.tv/link/*\",\"http://nanoo.tv/link/*\",\"http://*.nanoo.pro/link/*\",\"http://nanoo.pro/link/*\",\"https://*.nanoo.tv/link/*\",\"https://nanoo.tv/link/*\",\"https://*.nanoo.pro/link/*\",\"https://nanoo.pro/link/*\",\"http://media.zhdk.ch/signatur/*\",\"http://new.media.zhdk.ch/signatur/*\",\"https://media.zhdk.ch/signatur/*\",\"https://new.media.zhdk.ch/signatur/*\"],\"url\":\"https://www.nanoo.tv/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Nasjonalbiblioteket\",\"provider_url\":\"https://www.nb.no/\",\"endpoints\":[{\"schemes\":[\"https://www.nb.no/items/*\"],\"url\":\"https://api.nb.no/catalog/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Natural Atlas\",\"provider_url\":\"https://naturalatlas.com/\",\"endpoints\":[{\"schemes\":[\"https://naturalatlas.com/*\",\"https://naturalatlas.com/*/*\",\"https://naturalatlas.com/*/*/*\",\"https://naturalatlas.com/*/*/*/*\"],\"url\":\"https://naturalatlas.com/oembed.{format}\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"NDLA - Norwegian Digital Learning Arena\",\"provider_url\":\"https://ndla.no\",\"endpoints\":[{\"schemes\":[\"https://ndla.no/*\",\"https://ndla.no/article/*\",\"https://ndla.no/audio/*\",\"https://ndla.no/concept/*\",\"https://ndla.no/image/*\",\"https://ndla.no/video/*\"],\"url\":\"https://ndla.no/oembed\",\"discovery\":false}]},{\"provider_name\":\"Nebula\",\"provider_url\":\"https://nebula.tv\",\"endpoints\":[{\"url\":\"https://nebula.tv/api/oembed\",\"formats\":[\"json\"],\"schemes\":[\"https://nebula.tv/videos/*\"]}]},{\"provider_name\":\"Nebula Beta\",\"provider_url\":\"https://beta.nebula.tv\",\"endpoints\":[{\"url\":\"https://beta.nebula.tv/api/oembed\",\"formats\":[\"json\"],\"schemes\":[\"https://beta.nebula.tv/videos/*\"]}]},{\"provider_name\":\"Needle Cloud\",\"provider_url\":\"https://cloud.needle.tools\",\"endpoints\":[{\"schemes\":[\"https://cloud.needle.tools/-/assets/*/file\",\"https://cloud.needle.tools/view?file=*\",\"https://*.needle.run/*\"],\"url\":\"https://cloud.needle.tools/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"neetoRecord\",\"provider_url\":\"https://neetorecord.com\",\"endpoints\":[{\"schemes\":[\"https://*.neetorecord.com/watch/*\"],\"url\":\"https://api.neetorecord.com/api/v1/oembed\"}]},{\"provider_name\":\"nfb.ca\",\"provider_url\":\"http://www.nfb.ca/\",\"endpoints\":[{\"schemes\":[\"http://*.nfb.ca/film/*\"],\"url\":\"http://www.nfb.ca/remote/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"NoPaste\",\"provider_url\":\"https://nopaste.ml\",\"endpoints\":[{\"schemes\":[\"https://nopaste.ml/*\"],\"url\":\"https://oembed.nopaste.ml\",\"discovery\":false}]},{\"provider_name\":\"Observable\",\"provider_url\":\"https://observablehq.com\",\"endpoints\":[{\"schemes\":[\"https://observablehq.com/@*/*\",\"https://observablehq.com/d/*\",\"https://observablehq.com/embed/*\"],\"url\":\"https://api.observablehq.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Odds.com.au\",\"provider_url\":\"https://www.odds.com.au\",\"endpoints\":[{\"schemes\":[\"https://www.odds.com.au/*\",\"https://odds.com.au/*\"],\"url\":\"https://www.odds.com.au/api/oembed/\"}]},{\"provider_name\":\"Odesli (formerly Songlink)\",\"provider_url\":\"https://odesli.co\",\"endpoints\":[{\"schemes\":[\"https://song.link/*\",\"https://album.link/*\",\"https://artist.link/*\",\"https://playlist.link/*\",\"https://pods.link/*\",\"https://mylink.page/*\",\"https://odesli.co/*\"],\"url\":\"https://song.link/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Odysee\",\"provider_url\":\"https://odysee.com\",\"endpoints\":[{\"schemes\":[\"https://odysee.com/*/*\",\"https://odysee.com/*\"],\"url\":\"https://odysee.com/$/oembed\",\"discovery\":true}]},{\"provider_name\":\"Official FM\",\"provider_url\":\"http://official.fm\",\"endpoints\":[{\"schemes\":[\"http://official.fm/tracks/*\",\"http://official.fm/playlists/*\"],\"url\":\"http://official.fm/services/oembed.{format}\"}]},{\"provider_name\":\"Omniscope\",\"provider_url\":\"https://omniscope.me/\",\"endpoints\":[{\"schemes\":[\"https://omniscope.me/*\"],\"url\":\"https://omniscope.me/_global_/oembed/json\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Omny Studio\",\"provider_url\":\"https://omnystudio.com\",\"endpoints\":[{\"schemes\":[\"https://omny.fm/shows/*\"],\"url\":\"https://omny.fm/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Orbitvu\",\"provider_url\":\"https://orbitvu.co\",\"endpoints\":[{\"schemes\":[\"https://orbitvu.co/001/*/ov3601/view\",\"https://orbitvu.co/001/*/ov3601/*/view\",\"https://orbitvu.co/001/*/ov3602/*/view\",\"https://orbitvu.co/001/*/2/orbittour/*/view\",\"https://orbitvu.co/001/*/1/2/orbittour/*/view\",\"http://orbitvu.co/001/*/ov3601/view\",\"http://orbitvu.co/001/*/ov3601/*/view\",\"http://orbitvu.co/001/*/ov3602/*/view\",\"http://orbitvu.co/001/*/2/orbittour/*/view\",\"http://orbitvu.co/001/*/1/2/orbittour/*/view\"],\"url\":\"http://orbitvu.co/service/oembed\",\"discovery\":true}]},{\"provider_name\":\"Origits\",\"provider_url\":\"https://origits.com/\",\"endpoints\":[{\"schemes\":[\"https://origits.com/v/*\"],\"url\":\"https://origits.net/oembed\",\"discovery\":true},{\"schemes\":[\"https://origits.com/v/*\"],\"url\":\"https://origits.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Outplayed.tv\",\"provider_url\":\"https://outplayed.tv/\",\"endpoints\":[{\"schemes\":[\"https://outplayed.tv/media/*\"],\"url\":\"https://outplayed.tv/oembed\",\"discovery\":true}]},{\"provider_name\":\"Overflow\",\"provider_url\":\"https://overflow.io\",\"endpoints\":[{\"schemes\":[\"https://overflow.io/s/*\",\"https://overflow.io/embed/*\"],\"url\":\"https://overflow.io/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"OZ\",\"provider_url\":\"https://www.oz.com/\",\"endpoints\":[{\"schemes\":[\"https://www.oz.com/*/video/*\"],\"url\":\"https://core.oz.com/oembed\",\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Padlet\",\"provider_url\":\"https://padlet.com/\",\"endpoints\":[{\"schemes\":[\"https://padlet.com/*\"],\"url\":\"https://padlet.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Panda Video\",\"provider_url\":\"https://pandavideo.com/\",\"endpoints\":[{\"schemes\":[\"https://*.tv.pandavideo.com.br/embed/?v=*\",\"https://*.tv.pandavideo.com.br/*/playlist.m3u8\",\"https://dashboard.pandavideo.com.br/#/videos/*\"],\"url\":\"https://api-v2.pandavideo.com.br/oembed\",\"discovery\":true}]},{\"provider_name\":\"Pastery\",\"provider_url\":\"https://www.pastery.net\",\"endpoints\":[{\"schemes\":[\"http://pastery.net/*\",\"https://pastery.net/*\",\"http://www.pastery.net/*\",\"https://www.pastery.net/*\"],\"url\":\"https://www.pastery.net/oembed\",\"discovery\":true}]},{\"provider_name\":\"PeerTube.TV\",\"provider_url\":\"https://peertube.tv/\",\"endpoints\":[{\"schemes\":[\"https://peertube.tv/w/*\"],\"url\":\"https://peertube.tv/services/oembed\"}]},{\"provider_name\":\"Picturelfy\",\"provider_url\":\"https://www.picturelfy.com/\",\"endpoints\":[{\"schemes\":[\"http://www.picturelfy.com/p/*\",\"https://www.picturelfy.com/p/*\"],\"url\":\"https://api.picturelfy.com/service/oembed/\",\"discovery\":false}]},{\"provider_name\":\"Piggy\",\"provider_url\":\"https://piggy.to\",\"endpoints\":[{\"schemes\":[\"https://piggy.to/@*/*\",\"https://piggy.to/view/*\"],\"url\":\"https://piggy.to/oembed\"}]},{\"provider_name\":\"Pikasso\",\"provider_url\":\"https://builder.pikasso.xyz\",\"endpoints\":[{\"schemes\":[\"https://*.builder.pikasso.xyz/embed/*\"],\"url\":\"https://builder.pikasso.xyz/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"PingVP\",\"provider_url\":\"https://www.pingvp.com/\",\"endpoints\":[{\"url\":\"https://beta.pingvp.com.kpnis.nl/p/oembed.php\",\"discovery\":true}]},{\"provider_name\":\"Pinpoll\",\"provider_url\":\"https://www.pinpoll.com/products/tools\",\"endpoints\":[{\"schemes\":[\"https://tools.pinpoll.com/embed/*\"],\"url\":\"https://tools.pinpoll.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Pinterest\",\"provider_url\":\"https://www.pinterest.com\",\"endpoints\":[{\"schemes\":[\"https://www.pinterest.com/*\"],\"url\":\"https://www.pinterest.com/oembed.json\",\"discovery\":true}]},{\"provider_name\":\"PitchHub\",\"provider_url\":\"https://www.pitchhub.com/\",\"endpoints\":[{\"schemes\":[\"https://player.pitchhub.com/en/public/player/*\"],\"url\":\"https://player.pitchhub.com/en/public/oembed\",\"discovery\":true}]},{\"provider_name\":\"Pixdor\",\"provider_url\":\"http://www.pixdor.com/\",\"endpoints\":[{\"schemes\":[\"https://store.pixdor.com/place-marker-widget/*/show\",\"https://store.pixdor.com/map/*/show\"],\"url\":\"https://store.pixdor.com/oembed\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"Plusdocs\",\"provider_url\":\"http://plusdocs.com\",\"endpoints\":[{\"schemes\":[\"https://app.plusdocs.com/*/snapshots/*\",\"https://app.plusdocs.com/*/pages/edit/*\",\"https://app.plusdocs.com/*/pages/share/*\"],\"url\":\"https://app.plusdocs.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Podbean\",\"provider_url\":\"http://podbean.com\",\"endpoints\":[{\"schemes\":[\"https://*.podbean.com/e/*\",\"http://*.podbean.com/e/*\"],\"url\":\"https://api.podbean.com/v1/oembed\"}]},{\"provider_name\":\"Poll Daddy\",\"provider_url\":\"http://polldaddy.com\",\"endpoints\":[{\"schemes\":[\"http://*.polldaddy.com/s/*\",\"http://*.polldaddy.com/poll/*\",\"http://*.polldaddy.com/ratings/*\"],\"url\":\"http://polldaddy.com/oembed/\"}]},{\"provider_name\":\"Portfolium\",\"provider_url\":\"https://portfolium.com\",\"endpoints\":[{\"schemes\":[\"https://portfolium.com/entry/*\"],\"url\":\"https://api.portfolium.com/oembed\"}]},{\"provider_name\":\"Present\",\"provider_url\":\"https://present.do\",\"endpoints\":[{\"schemes\":[\"https://present.do/decks/*\"],\"url\":\"https://gateway.cobalt.run/present/decks/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Prezi Video\",\"provider_url\":\"https://prezi.com/\",\"endpoints\":[{\"schemes\":[\"https://prezi.com/v/*\",\"https://*.prezi.com/v/*\"],\"url\":\"https://prezi.com/v/oembed\",\"discovery\":true}]},{\"provider_name\":\"QTpi\",\"provider_url\":\"https://qtpi.gg/\",\"endpoints\":[{\"schemes\":[\"https://qtpi.gg/fashion/*\"],\"url\":\"https://qtpi.gg/fashion/oembed\",\"discovery\":true}]},{\"provider_name\":\"Quartr\",\"provider_url\":\"http://quartr.com\",\"endpoints\":[{\"schemes\":[\"https://quartr.com/*\",\"https://web.quartr.com/*\"],\"url\":\"https://web.quartr.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Quiz.biz\",\"provider_url\":\"http://www.quiz.biz/\",\"endpoints\":[{\"schemes\":[\"http://www.quiz.biz/quizz-*.html\"],\"url\":\"http://www.quiz.biz/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Quizz.biz\",\"provider_url\":\"http://www.quizz.biz/\",\"endpoints\":[{\"schemes\":[\"http://www.quizz.biz/quizz-*.html\"],\"url\":\"http://www.quizz.biz/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"RadioPublic\",\"provider_url\":\"https://radiopublic.com\",\"endpoints\":[{\"schemes\":[\"https://play.radiopublic.com/*\",\"https://radiopublic.com/*\",\"https://www.radiopublic.com/*\",\"http://play.radiopublic.com/*\",\"http://radiopublic.com/*\",\"http://www.radiopublic.com/*\",\"https://*.radiopublic.com/*\"],\"url\":\"https://oembed.radiopublic.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Raindrop\",\"provider_url\":\"https://raindrop.io\",\"endpoints\":[{\"schemes\":[\"https://raindrop.io/*\",\"https://raindrop.io/*/*\",\"https://raindrop.io/*/*/*\",\"https://raindrop.io/*/*/*/*\"],\"url\":\"https://pub.raindrop.io/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"rcvis\",\"provider_url\":\"https://www.rcvis.com/\",\"endpoints\":[{\"schemes\":[\"https://www.rcvis.com/v/*\",\"https://www.rcvis.com/visualize=*\",\"https://www.rcvis.com/ve/*\",\"https://www.rcvis.com/visualizeEmbedded=*\"],\"url\":\"https://animatron.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Reddit\",\"provider_url\":\"https://reddit.com/\",\"endpoints\":[{\"schemes\":[\"https://reddit.com/r/*/comments/*/*\",\"https://www.reddit.com/r/*/comments/*/*\"],\"url\":\"https://www.reddit.com/oembed\"}]},{\"provider_name\":\"Redlof-Medien\",\"provider_url\":\"https://redlof-medien.de\",\"endpoints\":[{\"schemes\":[\"https://redlof-medien.de/*\",\"https://www.redlof-medien.de/*\"],\"url\":\"https://redlof-medien.de/wp-json/oembed/1.0/embed\",\"discovery\":true},{\"schemes\":[\"https://show.wexcreator.com/*\",\"https://showroom.redlof-medien.de/*\"],\"url\":\"https://api.wexcreator.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"ReleaseWire\",\"provider_url\":\"http://www.releasewire.com/\",\"endpoints\":[{\"schemes\":[\"http://rwire.com/*\"],\"url\":\"http://publisher.releasewire.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Replit\",\"provider_url\":\"https://replit.com/\",\"endpoints\":[{\"schemes\":[\"https://repl.it/@*/*\",\"https://replit.com/@*/*\"],\"url\":\"https://replit.com/data/oembed\",\"discovery\":true}]},{\"provider_name\":\"ReverbNation\",\"provider_url\":\"https://www.reverbnation.com/\",\"endpoints\":[{\"schemes\":[\"https://www.reverbnation.com/*\",\"https://www.reverbnation.com/*/songs/*\"],\"url\":\"https://www.reverbnation.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Roomshare\",\"provider_url\":\"http://roomshare.jp\",\"endpoints\":[{\"schemes\":[\"http://roomshare.jp/post/*\",\"http://roomshare.jp/en/post/*\"],\"url\":\"http://roomshare.jp/en/oembed.{format}\"}]},{\"provider_name\":\"RoosterTeeth\",\"provider_url\":\"https://roosterteeth.com\",\"endpoints\":[{\"schemes\":[\"https://roosterteeth.com/*\"],\"url\":\"https://roosterteeth.com/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Rumble\",\"provider_url\":\"https://rumble.com/\",\"endpoints\":[{\"url\":\"https://rumble.com/api/Media/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Runkit\",\"provider_url\":\"https://runkit.com\",\"endpoints\":[{\"schemes\":[\"http://embed.runkit.com/*,\",\"https://embed.runkit.com/*,\"],\"url\":\"https://embed.runkit.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Saooti\",\"provider_url\":\"https://octopus.saooti.com\",\"endpoints\":[{\"schemes\":[\"https://octopus.saooti.com/main/pub/podcast/*\"],\"url\":\"https://octopus.saooti.com/oembed\"}]},{\"provider_name\":\"Sapo Videos\",\"provider_url\":\"http://videos.sapo.pt\",\"endpoints\":[{\"schemes\":[\"http://videos.sapo.pt/*\"],\"url\":\"http://videos.sapo.pt/oembed\"}]},{\"provider_name\":\"Satcat\",\"provider_url\":\"https://www.satcat.com/\",\"endpoints\":[{\"schemes\":[\"https://www.satcat.com/sats/*\"],\"url\":\"https://www.satcat.com/api/sats/oembed\",\"discovery\":true}]},{\"provider_name\":\"sbedit\",\"provider_url\":\"https://sbedit.net\",\"endpoints\":[{\"schemes\":[\"https://sbedit.net/*\"],\"url\":\"https://sbedit.net/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Scenes\",\"provider_url\":\"https://getscenes.com\",\"endpoints\":[{\"schemes\":[\"https://getscenes.com/e/*\",\"https://getscenes.com/event/*\"],\"url\":\"https://getscenes.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Screen9\",\"provider_url\":\"http://www.screen9.com/\",\"endpoints\":[{\"schemes\":[\"https://console.screen9.com/*\",\"https://*.screen9.tv/*\"],\"url\":\"https://api.screen9.com/oembed\"}]},{\"provider_name\":\"Screencast.com\",\"provider_url\":\"http://www.screencast.com/\",\"endpoints\":[{\"schemes\":[\"http://www.screencast.com/*\"],\"url\":\"https://api.screencast.com/external/oembed\",\"discovery\":true}]},{\"provider_name\":\"Screenr\",\"provider_url\":\"http://www.screenr.com/\",\"endpoints\":[{\"schemes\":[\"http://www.screenr.com/*/\"],\"url\":\"http://www.screenr.com/api/oembed.{format}\"}]},{\"provider_name\":\"ScribbleMaps\",\"provider_url\":\"https://scribblemaps.com\",\"endpoints\":[{\"schemes\":[\"http://www.scribblemaps.com/maps/view/*\",\"https://www.scribblemaps.com/maps/view/*\",\"http://scribblemaps.com/maps/view/*\",\"https://scribblemaps.com/maps/view/*\"],\"url\":\"https://scribblemaps.com/api/services/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Scribd\",\"provider_url\":\"http://www.scribd.com/\",\"endpoints\":[{\"schemes\":[\"http://www.scribd.com/doc/*\"],\"url\":\"http://www.scribd.com/services/oembed/\"}]},{\"provider_name\":\"SendtoNews\",\"provider_url\":\"http://www.sendtonews.com/\",\"endpoints\":[{\"schemes\":[\"https://embed.sendtonews.com/oembed/*\"],\"url\":\"https://embed.sendtonews.com/services/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"SharedFile\",\"provider_url\":\"https://shared-file-kappa.vercel.app/file/\",\"endpoints\":[{\"schemes\":[\"https://shared-file-kappa.vercel.app/file/*\"],\"url\":\"https://shared-file-kappa.vercel.app/file/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Shopshare\",\"provider_url\":\"https://shopshare.tv\",\"endpoints\":[{\"schemes\":[\"https://shopshare.tv/shopboard/*\",\"https://shopshare.tv/shopcast/*\"],\"url\":\"https://shopshare.tv/api/shopcast/oembed\",\"discovery\":true}]},{\"provider_name\":\"ShortNote\",\"provider_url\":\"https://www.shortnote.jp/\",\"endpoints\":[{\"schemes\":[\"https://www.shortnote.jp/view/notes/*\"],\"url\":\"https://www.shortnote.jp/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Shoudio\",\"provider_url\":\"http://shoudio.com\",\"endpoints\":[{\"schemes\":[\"http://shoudio.com/*\",\"http://shoud.io/*\"],\"url\":\"http://shoudio.com/api/oembed\"}]},{\"provider_name\":\"Show by Animaker\",\"provider_url\":\"https://getshow.io/\",\"endpoints\":[{\"schemes\":[\"https://app.getshow.io/iframe/*\",\"https://*.getshow.io/share/*\"],\"url\":\"https://api.getshow.io/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Show the Way, actionable location info\",\"provider_url\":\"https://showtheway.io\",\"endpoints\":[{\"schemes\":[\"https://showtheway.io/to/*\"],\"url\":\"https://showtheway.io/oembed\",\"discovery\":true}]},{\"provider_name\":\"Simplecast\",\"provider_url\":\"https://simplecast.com\",\"endpoints\":[{\"schemes\":[\"https://simplecast.com/s/*\"],\"url\":\"https://simplecast.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Sizzle\",\"provider_url\":\"https://onsizzle.com/\",\"endpoints\":[{\"schemes\":[\"https://onsizzle.com/i/*\"],\"url\":\"https://onsizzle.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sketchfab\",\"provider_url\":\"http://sketchfab.com\",\"endpoints\":[{\"schemes\":[\"http://sketchfab.com/*models/*\",\"https://sketchfab.com/*models/*\",\"https://sketchfab.com/*/folders/*\"],\"url\":\"http://sketchfab.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Skoletube\",\"provider_url\":\"https://www.skoletube.dk/\",\"endpoints\":[{\"schemes\":[\"https://www.skoletube.dk/media/*\",\"https://www.skoletube.dk/video/*\",\"https://www.studietube.dk/media/*\",\"https://www.studietube.dk/video/*\"],\"url\":\"https://www.skoletube.dk/media/lasync/oembed/\",\"discovery\":true}]},{\"provider_name\":\"SlideShare\",\"provider_url\":\"http://www.slideshare.net/\",\"endpoints\":[{\"schemes\":[\"https://www.slideshare.net/*/*\",\"http://www.slideshare.net/*/*\",\"https://fr.slideshare.net/*/*\",\"http://fr.slideshare.net/*/*\",\"https://de.slideshare.net/*/*\",\"http://de.slideshare.net/*/*\",\"https://es.slideshare.net/*/*\",\"http://es.slideshare.net/*/*\",\"https://pt.slideshare.net/*/*\",\"http://pt.slideshare.net/*/*\"],\"url\":\"https://www.slideshare.net/api/oembed/2\",\"discovery\":true}]},{\"provider_name\":\"SmashNotes\",\"provider_url\":\"https://smashnotes.com\",\"endpoints\":[{\"schemes\":[\"https://smashnotes.com/p/*\",\"https://smashnotes.com/p/*/e/* - https://smashnotes.com/p/*/e/*/s/*\"],\"url\":\"https://smashnotes.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Smeme\",\"provider_url\":\"https://smeme.com\",\"endpoints\":[{\"schemes\":[\"https://open.smeme.com/*\"],\"url\":\"https://open.smeme.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Smrthi\",\"provider_url\":\"https://www.smrthi.com\",\"endpoints\":[{\"schemes\":[\"https://www.smrthi.com/book/*\"],\"url\":\"https://www.smrthi.com/api/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"SmugMug\",\"provider_url\":\"https://www.smugmug.com/\",\"endpoints\":[{\"schemes\":[\"http://*.smugmug.com/*\",\"https://*.smugmug.com/*\"],\"url\":\"https://api.smugmug.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"SocialExplorer\",\"provider_url\":\"https://www.socialexplorer.com/\",\"endpoints\":[{\"schemes\":[\"https://www.socialexplorer.com/*/explore\",\"https://www.socialexplorer.com/*/view\",\"https://www.socialexplorer.com/*/edit\",\"https://www.socialexplorer.com/*/embed\"],\"url\":\"https://www.socialexplorer.com/services/oembed/\",\"discovery\":true}]},{\"provider_name\":\"SoundCloud\",\"provider_url\":\"http://soundcloud.com/\",\"endpoints\":[{\"schemes\":[\"http://soundcloud.com/*\",\"https://soundcloud.com/*\",\"https://on.soundcloud.com/*\",\"https://soundcloud.app.goog.gl/*\"],\"url\":\"https://soundcloud.com/oembed\"}]},{\"provider_name\":\"SpeakerDeck\",\"provider_url\":\"https://speakerdeck.com\",\"endpoints\":[{\"schemes\":[\"http://speakerdeck.com/*/*\",\"https://speakerdeck.com/*/*\"],\"url\":\"https://speakerdeck.com/oembed.json\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Spotify\",\"provider_url\":\"https://spotify.com/\",\"endpoints\":[{\"schemes\":[\"https://open.spotify.com/*\",\"spotify:*\",\"https://spotify.link/*\"],\"url\":\"https://open.spotify.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Spotlightr\",\"provider_url\":\"https://spotlightr.com\",\"endpoints\":[{\"schemes\":[\"https://*.spotlightr.com/watch/*\",\"https://*.spotlightr.com/publish/*\",\"https://*.cdn.spotlightr.com/watch/*\",\"https://*.cdn.spotlightr.com/publish/*\"],\"url\":\"https://api.spotlightr.com/getOEmbed\",\"discovery\":true}]},{\"provider_name\":\"Spreaker\",\"provider_url\":\"https://www.spreaker.com/\",\"endpoints\":[{\"schemes\":[\"http://*.spreaker.com/*\",\"https://*.spreaker.com/*\"],\"url\":\"https://api.spreaker.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"SproutVideo\",\"provider_url\":\"https://sproutvideo.com\",\"endpoints\":[{\"schemes\":[\"https://sproutvideo.com/videos/*\",\"https://*.vids.io/videos/*\"],\"url\":\"http://sproutvideo.com/oembed.{format}\",\"formats\":[\"json\",\"xml\"],\"discovery\":true}]},{\"provider_name\":\"Spyke\",\"provider_url\":\"https://spyke.social\",\"endpoints\":[{\"schemes\":[\"http://spyke.social/p/*\",\"http://spyke.social/u/*\",\"http://spyke.social/g/*\",\"http://spyke.social/c/*\",\"https://spyke.social/p/*\",\"https://spyke.social/u/*\",\"https://spyke.social/g/*\",\"https://spyke.social/c/*\",\"http://www.spyke.social/p/*\",\"http://www.spyke.social/u/*\",\"http://www.spyke.social/g/*\",\"http://www.spyke.social/c/*\",\"https://www.spyke.social/p/*\",\"https://www.spyke.social/u/*\",\"https://www.spyke.social/g/*\",\"https://www.spyke.social/c/*\"],\"url\":\"https://api.spyke.social/embed/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Stanford Digital Repository\",\"provider_url\":\"https://purl.stanford.edu/\",\"endpoints\":[{\"schemes\":[\"https://purl.stanford.edu/*\"],\"url\":\"https://purl.stanford.edu/embed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Streamable\",\"provider_url\":\"https://streamable.com/\",\"endpoints\":[{\"schemes\":[\"http://streamable.com/*\",\"https://streamable.com/*\"],\"url\":\"https://api.streamable.com/oembed.json\",\"discovery\":true}]},{\"provider_name\":\"Streamio\",\"provider_url\":\"https://www.streamio.com\",\"endpoints\":[{\"schemes\":[\"https://s3m.io/*\",\"https://23m.io/*\"],\"url\":\"https://streamio.com/api/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Subscribi\",\"provider_url\":\"https://subscribi.io/\",\"endpoints\":[{\"schemes\":[\"https://subscribi.io/api/oembed*\"],\"url\":\"https://subscribi.io/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sudomemo\",\"provider_url\":\"https://www.sudomemo.net/\",\"endpoints\":[{\"schemes\":[\"https://www.sudomemo.net/watch/*\",\"http://www.sudomemo.net/watch/*\",\"https://flipnot.es/*\",\"http://flipnot.es/*\"],\"url\":\"https://www.sudomemo.net/oembed\",\"discovery\":true}]},{\"provider_name\":\"Supercut\",\"provider_url\":\"https://supercut.video/\",\"endpoints\":[{\"schemes\":[\"https://supercut.video/share/*\"],\"url\":\"https://supercut.video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sutori\",\"provider_url\":\"https://www.sutori.com/\",\"endpoints\":[{\"schemes\":[\"https://www.sutori.com/story/*\"],\"url\":\"https://www.sutori.com/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Sway\",\"provider_url\":\"https://www.sway.com\",\"endpoints\":[{\"schemes\":[\"https://sway.com/*\",\"https://www.sway.com/*\"],\"url\":\"https://sway.com/api/v1.0/oembed\",\"discovery\":true}]},{\"provider_name\":\"Sway Office\",\"provider_url\":\"https://sway.office.com\",\"endpoints\":[{\"schemes\":[\"https://sway.office.com/*\"],\"url\":\"https://sway.office.com/api/v1.0/oembed\",\"discovery\":true}]},{\"provider_name\":\"Synthesia\",\"provider_url\":\"https://www.synthesia.io/\",\"endpoints\":[{\"schemes\":[\"https://share.synthesia.io/*\"],\"url\":\"https://69jr5v75rc.execute-api.eu-west-1.amazonaws.com/prod/v2/oembed\",\"formats\":[\"json\"],\"discovery\":true}]},{\"provider_name\":\"Tech Post Cast\",\"provider_url\":\"https://techpostcast.com\",\"endpoints\":[{\"schemes\":[\"https://techpostcast.com/headline-topic-programs/*\"],\"url\":\"https://techpostcast.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"TED\",\"provider_url\":\"https://www.ted.com\",\"endpoints\":[{\"schemes\":[\"http://ted.com/talks/*\",\"https://ted.com/talks/*\",\"https://www.ted.com/talks/*\"],\"url\":\"https://www.ted.com/services/v1/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"The DAM consultants\",\"provider_url\":\"https://hubspot-media-bridge.thedamconsultants.com/\",\"endpoints\":[{\"schemes\":[\"https://hubspot-media-bridge.thedamconsultants.com/*\"],\"url\":\"https://hubspot-media-bridge.thedamconsultants.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"The New York Times\",\"provider_url\":\"https://www.nytimes.com\",\"endpoints\":[{\"schemes\":[\"https://www.nytimes.com/svc/oembed\",\"https://nytimes.com/*\",\"https://*.nytimes.com/*\"],\"url\":\"https://www.nytimes.com/svc/oembed/json/\",\"discovery\":true}]},{\"provider_name\":\"They Said So\",\"provider_url\":\"https://theysaidso.com/\",\"endpoints\":[{\"schemes\":[\"https://theysaidso.com/image/*\"],\"url\":\"https://theysaidso.com/extensions/oembed/\",\"discovery\":true}]},{\"provider_name\":\"TickCounter\",\"provider_url\":\"https://www.tickcounter.com\",\"endpoints\":[{\"schemes\":[\"http://www.tickcounter.com/widget/*\",\"http://www.tickcounter.com/countdown/*\",\"http://www.tickcounter.com/countup/*\",\"http://www.tickcounter.com/ticker/*\",\"http://www.tickcounter.com/clock/*\",\"http://www.tickcounter.com/worldclock/*\",\"https://www.tickcounter.com/widget/*\",\"https://www.tickcounter.com/countdown/*\",\"https://www.tickcounter.com/countup/*\",\"https://www.tickcounter.com/ticker/*\",\"https://www.tickcounter.com/clock/*\",\"https://www.tickcounter.com/worldclock/*\"],\"url\":\"https://www.tickcounter.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"TikTok\",\"provider_url\":\"http://www.tiktok.com/\",\"endpoints\":[{\"schemes\":[\"https://www.tiktok.com/*\",\"https://www.tiktok.com/*/video/*\"],\"url\":\"https://www.tiktok.com/oembed\"}]},{\"provider_name\":\"tksn-me\",\"provider_url\":\"https://tksn.me\",\"endpoints\":[{\"schemes\":[\"https://tksn.me/*\",\"https://*.tksn.me/*\"],\"url\":\"https://tksn.me/api/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Tonic Audio\",\"provider_url\":\"https://tonicaudio.com/\",\"endpoints\":[{\"schemes\":[\"https://tonicaudio.com/take/*\",\"https://tonicaudio.com/song/*\",\"https://tnic.io/song/*\",\"https://tnic.io/take/*\"],\"url\":\"https://tonicaudio.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Toornament\",\"provider_url\":\"https://www.toornament.com/\",\"endpoints\":[{\"schemes\":[\"https://www.toornament.com/tournaments/*/information\",\"https://www.toornament.com/tournaments/*/registration/\",\"https://www.toornament.com/tournaments/*/matches/schedule\",\"https://www.toornament.com/tournaments/*/stages/*/\"],\"url\":\"https://widget.toornament.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Topy\",\"provider_url\":\"http://www.topy.se/\",\"endpoints\":[{\"schemes\":[\"http://www.topy.se/image/*\"],\"url\":\"http://www.topy.se/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Totango\",\"provider_url\":\"https://totango.com\",\"endpoints\":[{\"schemes\":[\"https://app-test.totango.com/*\"],\"url\":\"https://app-test.totango.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Trackspace\",\"provider_url\":\"http://trackspace.upitup.com/\",\"endpoints\":[{\"schemes\":[\"http://trackspace.upitup.com/*\"],\"url\":\"https://trackspace.upitup.com/oembed\"}]},{\"provider_name\":\"Trinity Audio\",\"provider_url\":\"https://trinityaudio.ai\",\"endpoints\":[{\"schemes\":[\"https://trinitymedia.ai/player/*\",\"https://trinitymedia.ai/player/*/*\",\"https://trinitymedia.ai/player/*/*/*\"],\"url\":\"https://trinitymedia.ai/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Tumblr\",\"provider_url\":\"https://www.tumblr.com\",\"endpoints\":[{\"schemes\":[\"https://*.tumblr.com/post/*\"],\"url\":\"https://www.tumblr.com/oembed/1.0\"}]},{\"provider_name\":\"Tuxx\",\"provider_url\":\"https://www.tuxx.be/\",\"endpoints\":[{\"schemes\":[\"https://www.tuxx.be/*\"],\"url\":\"https://www.tuxx.be/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"tvcf\",\"provider_url\":\"http://tvcf.co.kr\",\"endpoints\":[{\"schemes\":[\"https://play.tvcf.co.kr/*\",\"https://*.tvcf.co.kr/*\"],\"url\":\"https://play.tvcf.co.kr/rest/oembed\"}]},{\"provider_name\":\"Twinmotion\",\"provider_url\":\"https://twinmotion.unrealengine.com\",\"endpoints\":[{\"schemes\":[\"https://twinmotion.unrealengine.com/presentation/*\",\"https://twinmotion.unrealengine.com/panorama/*\"],\"url\":\"https://twinmotion.unrealengine.com/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"Twitter\",\"provider_url\":\"http://www.twitter.com/\",\"endpoints\":[{\"schemes\":[\"https://twitter.com/*\",\"https://twitter.com/*/status/*\",\"https://*.twitter.com/*/status/*\"],\"url\":\"https://publish.twitter.com/oembed\"}]},{\"provider_name\":\"TypeCast\",\"provider_url\":\"https://typecast.ai\",\"endpoints\":[{\"schemes\":[\"https://play.typecast.ai/s/*\",\"https://play.typecast.ai/e/*\",\"https://play.typecast.ai/*\"],\"url\":\"https://play.typecast.ai/oembed\"}]},{\"provider_name\":\"Typlog\",\"provider_url\":\"https://typlog.com\",\"endpoints\":[{\"url\":\"https://typlog.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"UAPod\",\"provider_url\":\"https://uapod.univ-antilles.fr/\",\"endpoints\":[{\"schemes\":[\"https://uapod.univ-antilles.fr/video/*\"],\"url\":\"https://uapod.univ-antilles.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"University of Cambridge Map\",\"provider_url\":\"https://map.cam.ac.uk\",\"endpoints\":[{\"schemes\":[\"https://map.cam.ac.uk/*\"],\"url\":\"https://map.cam.ac.uk/oembed/\"}]},{\"provider_name\":\"UnivParis1.Pod\",\"provider_url\":\"https://mediatheque.univ-paris1.fr/\",\"endpoints\":[{\"schemes\":[\"https://mediatheque.univ-paris1.fr/video/*\"],\"url\":\"https://mediatheque.univ-paris1.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"Upec.Pod\",\"provider_url\":\"https://pod.u-pec.fr/\",\"endpoints\":[{\"schemes\":[\"https://pod.u-pec.fr/video/*\"],\"url\":\"https://pod.u-pec.fr/oembed\",\"discovery\":true}]},{\"provider_name\":\"Ustream\",\"provider_url\":\"http://www.ustream.tv\",\"endpoints\":[{\"schemes\":[\"http://*.ustream.tv/*\",\"http://*.ustream.com/*\"],\"url\":\"http://www.ustream.tv/oembed\",\"formats\":[\"json\"]}]},{\"provider_name\":\"uStudio, Inc.\",\"provider_url\":\"https://www.ustudio.com\",\"endpoints\":[{\"schemes\":[\"https://*.ustudio.com/embed/*\",\"https://*.ustudio.com/embed/*/*\"],\"url\":\"https://app.ustudio.com/api/v2/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"VeeR VR\",\"provider_url\":\"http://veer.tv/\",\"endpoints\":[{\"schemes\":[\"http://veer.tv/videos/*\"],\"url\":\"https://api.veer.tv/oembed\",\"discovery\":true},{\"schemes\":[\"http://veervr.tv/videos/*\"],\"url\":\"https://api.veervr.tv/oembed\",\"discovery\":true}]},{\"provider_name\":\"VEVO\",\"provider_url\":\"http://www.vevo.com/\",\"endpoints\":[{\"schemes\":[\"http://www.vevo.com/*\",\"https://www.vevo.com/*\"],\"url\":\"https://www.vevo.com/oembed\",\"discovery\":false}]},{\"provider_name\":\"Videfit\",\"provider_url\":\"https://videfit.com/\",\"endpoints\":[{\"schemes\":[\"https://videfit.com/videos/*\"],\"url\":\"https://videfit.com/oembed\",\"discovery\":false}]},{\"provider_name\":\"VidMount\",\"provider_url\":\"https://vidmount.com/\",\"endpoints\":[{\"schemes\":[\"https://vidmount.com/*\"],\"url\":\"https://vidmount.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"Vidyard\",\"provider_url\":\"https://vidyard.com\",\"endpoints\":[{\"schemes\":[\"http://*.vidyard.com/*\",\"https://*.vidyard.com/*\",\"http://*.hubs.vidyard.com/*\",\"https://*.hubs.vidyard.com/*\"],\"url\":\"https://api.vidyard.com/dashboard/v1.1/oembed\",\"discovery\":true}]},{\"provider_name\":\"Vimeo\",\"provider_url\":\"https://vimeo.com/\",\"endpoints\":[{\"schemes\":[\"https://vimeo.com/*\",\"https://vimeo.com/album/*/video/*\",\"https://vimeo.com/channels/*/*\",\"https://vimeo.com/groups/*/videos/*\",\"https://vimeo.com/ondemand/*/*\",\"https://player.vimeo.com/video/*\",\"https://vimeo.com/event/*/*\"],\"url\":\"https://vimeo.com/api/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Viostream\",\"provider_url\":\"https://www.viostream.com\",\"endpoints\":[{\"schemes\":[\"https://share.viostream.com/*\"],\"url\":\"https://play.viostream.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Viously\",\"provider_url\":\"https://www.viously.com\",\"endpoints\":[{\"schemes\":[\"https://www.viously.com/*/*\"],\"url\":\"https://www.viously.com/oembed\",\"discovery\":true,\"formats\":[\"json\",\"xml\"]}]},{\"provider_name\":\"Vizdom\",\"provider_url\":\"https://vizdom.dev\",\"endpoints\":[{\"schemes\":[\"https://vizdom.dev/link/*\"],\"url\":\"https://vizdom.dev/api/v1/oembed\",\"discovery\":true,\"formats\":[\"xml\",\"json\"]}]},{\"provider_name\":\"Vizydrop\",\"provider_url\":\"https://vizydrop.com\",\"endpoints\":[{\"schemes\":[\"https://vizydrop.com/shared/*\"],\"url\":\"https://vizydrop.com/oembed\"}]},{\"provider_name\":\"Vlipsy\",\"provider_url\":\"https://vlipsy.com/\",\"endpoints\":[{\"schemes\":[\"https://vlipsy.com/*\"],\"url\":\"https://vlipsy.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"VLIVE\",\"provider_url\":\"https://www.vlive.tv\",\"endpoints\":[{\"url\":\"https://www.vlive.tv/oembed\",\"schemes\":[\"https://www.vlive.tv/video/*\"],\"formats\":[\"json\"]}]},{\"provider_name\":\"Vouch\",\"provider_url\":\"https://www.vouchfor.com/\",\"endpoints\":[{\"schemes\":[\"https://*.vouchfor.com/*\"],\"url\":\"https://embed.vouchfor.com/v1/oembed\",\"discovery\":true}]},{\"provider_name\":\"VoxSnap\",\"provider_url\":\"https://voxsnap.com/\",\"endpoints\":[{\"schemes\":[\"https://article.voxsnap.com/*/*\"],\"url\":\"https://data.voxsnap.com/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Waltrack\",\"provider_url\":\"https://waltrack/net\",\"endpoints\":[{\"schemes\":[\"https://waltrack.net/product/*\"],\"url\":\"https://waltrack.net/oembed\",\"discovery\":true}]},{\"provider_name\":\"Wave.video\",\"provider_url\":\"https://wave.video\",\"endpoints\":[{\"schemes\":[\"https://watch.wave.video/*\",\"https://embed.wave.video/*\"],\"url\":\"https://embed.wave.video/oembed\",\"discovery\":true}]},{\"provider_name\":\"Web3 is Going Just Great\",\"provider_url\":\"https://www.web3isgoinggreat.com/\",\"endpoints\":[{\"schemes\":[\"https://www.web3isgoinggreat.com/?id=*\",\"https://www.web3isgoinggreat.com/single/*\",\"https://www.web3isgoinggreat.com/embed/*\"],\"url\":\"https://www.web3isgoinggreat.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Webcrumbs\",\"provider_url\":\"https://webcrumbs.org/\",\"endpoints\":[{\"schemes\":[\"https://share.webcrumbs.org/*\",\"https://tools.webcrumbs.org/*\",\"https://www.webcrumbs.org/*\"],\"url\":\"http://share.webcrumbs.org/\",\"discovery\":true}]},{\"provider_name\":\"wecandeo\",\"provider_url\":\"https://www.wecandeo.com/\",\"endpoints\":[{\"schemes\":[\"https://play.wecandeo.com/video/v/*\"],\"url\":\"https://play.wecandeo.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Whimsical\",\"provider_url\":\"https://www.whimsical.com\",\"endpoints\":[{\"schemes\":[\"https://whimsical.com/*\"],\"url\":\"https://whimsical.com/api/oembed\",\"discovery\":true}]},{\"provider_name\":\"Wistia, Inc.\",\"provider_url\":\"https://wistia.com/\",\"endpoints\":[{\"schemes\":[\"https://fast.wistia.com/embed/iframe/*\",\"https://fast.wistia.com/embed/playlists/*\",\"https://*.wistia.com/medias/*\"],\"url\":\"https://fast.wistia.com/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"wizer.me\",\"provider_url\":\"https://www.wizer.me/\",\"endpoints\":[{\"schemes\":[\"https://*.wizer.me/learn/*\",\"https://*.wizer.me/preview/*\"],\"url\":\"https://app.wizer.me/api/oembed.{format}\",\"discovery\":true}]},{\"provider_name\":\"Wokwi\",\"provider_url\":\"https://wokwi.com\",\"endpoints\":[{\"schemes\":[\"https://wokwi.com/share/*\"],\"url\":\"https://wokwi.com/api/oembed\",\"discovery\":true,\"formats\":[\"json\"]}]},{\"provider_name\":\"Wolfram Cloud\",\"provider_url\":\"https://www.wolframcloud.com\",\"endpoints\":[{\"schemes\":[\"https://*.wolframcloud.com/*\"],\"url\":\"https://www.wolframcloud.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"WordPress.com\",\"provider_url\":\"https://wordpress.com/\",\"endpoints\":[{\"schemes\":[\"https://wordpress.com/*\",\"http://wordpress.com/*\",\"https://*.wordpress.com/*\",\"http://*.wordpress.com/*\",\"https://*.*.wordpress.com/*\",\"http://*.*.wordpress.com/*\",\"https://wp.me/*\",\"http://wp.me/*\"],\"url\":\"http://public-api.wordpress.com/oembed/\",\"discovery\":true}]},{\"provider_name\":\"X\",\"provider_url\":\"http://www.x.com/\",\"endpoints\":[{\"schemes\":[\"https://x.com/*\",\"https://x.com/*/status/*\",\"https://*.x.com/*/status/*\"],\"url\":\"https://publish.x.com/oembed\"}]},{\"provider_name\":\"YouTube\",\"provider_url\":\"https://www.youtube.com/\",\"endpoints\":[{\"schemes\":[\"https://*.youtube.com/watch*\",\"https://*.youtube.com/v/*\",\"https://youtu.be/*\",\"https://*.youtube.com/playlist?list=*\",\"https://youtube.com/playlist?list=*\",\"https://*.youtube.com/shorts*\",\"https://youtube.com/shorts*\",\"https://*.youtube.com/embed/*\",\"https://*.youtube.com/live*\",\"https://youtube.com/live*\"],\"url\":\"https://www.youtube.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"YUMPU\",\"provider_url\":\"https://www.yumpu.com/\",\"endpoints\":[{\"schemes\":[\"https://www.yumpu.com/*/document/view/*/*\"],\"url\":\"https://www.yumpu.com/services/oembed\",\"discovery\":true}]},{\"provider_name\":\"Zeplin\",\"provider_url\":\"https://zeplin.io\",\"endpoints\":[{\"schemes\":[\"https://app.zeplin.io/project/*/screen/*\",\"https://app.zeplin.io/project/*/screen/*/version/*\",\"https://app.zeplin.io/project/*/styleguide/components?coid=*\",\"https://app.zeplin.io/styleguide/*/components?coid=*\"],\"url\":\"https://app.zeplin.io/embed\",\"discovery\":true}]},{\"provider_name\":\"ZingSoft\",\"provider_url\":\"https://app.zingsoft.com\",\"endpoints\":[{\"schemes\":[\"https://app.zingsoft.com/embed/*\",\"https://app.zingsoft.com/view/*\"],\"url\":\"https://app.zingsoft.com/oembed\",\"discovery\":true}]},{\"provider_name\":\"ZnipeTV\",\"provider_url\":\"https://www.znipe.tv/\",\"endpoints\":[{\"schemes\":[\"https://*.znipe.tv/*\"],\"url\":\"https://api.znipe.tv/v3/oembed/\",\"discovery\":true}]},{\"provider_name\":\"Zoomable\",\"provider_url\":\"https://zoomable.ca/\",\"endpoints\":[{\"schemes\":[\"https://srv2.zoomable.ca/viewer.php*\"],\"url\":\"https://srv2.zoomable.ca/oembed\",\"discovery\":true}]}]');\nconst defaultProviderList = downloadedProvidersJson;\nexport {\n amazonRules,\n defaultProviderList\n};\n//# sourceMappingURL=misc.mjs.map\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport {\n createMarkdownProcessor,\n createOEmbedPlugin,\n createCardPlugin,\n createMermaidPlugin,\n createBeautifulMermaidPlugin,\n createCachedFetcher,\n createMemoryCacheStorage,\n getConsoleLogger,\n} from 'mark-deco';\nimport { defaultProviderList } from 'mark-deco/misc';\nimport type { Config } from './config';\n\n// Import the MarkdownProcessor type - this should be available from mark-deco package\ntype MarkdownProcessor = ReturnType<typeof createMarkdownProcessor>;\n\n/**\n * Setup markdown processor with plugins based on configuration\n */\nexport const setupProcessor = (config: Config): MarkdownProcessor => {\n const plugins = [];\n const logger = getConsoleLogger();\n const fetcher = createCachedFetcher(\n 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.0.0 Safari/537.36',\n 5000,\n createMemoryCacheStorage()\n );\n\n // Determine which plugins to enable\n const enabledPlugins = config.noPlugins\n ? []\n : Array.isArray(config.plugins)\n ? config.plugins\n : ['oembed', 'card', 'beautiful-mermaid'];\n\n // Add oEmbed plugin\n if (enabledPlugins.includes('oembed') && config.oembed?.enabled !== false) {\n plugins.push(createOEmbedPlugin(defaultProviderList, {}));\n }\n\n // Add card plugin\n if (enabledPlugins.includes('card') && config.card?.enabled !== false) {\n plugins.push(createCardPlugin({}));\n }\n\n const useMermaid =\n enabledPlugins.includes('mermaid') && config.mermaid?.enabled !== false;\n const useBeautifulMermaid =\n enabledPlugins.includes('beautiful-mermaid') &&\n config.beautifulMermaid?.enabled !== false;\n\n if (useMermaid && useBeautifulMermaid) {\n throw new Error(\n 'Plugins \"mermaid\" and \"beautiful-mermaid\" are mutually exclusive.'\n );\n }\n\n if (useBeautifulMermaid) {\n const { enabled: _enabled, ...beautifulMermaidOptions } =\n config.beautifulMermaid ?? {};\n plugins.push(createBeautifulMermaidPlugin(beautifulMermaidOptions));\n }\n\n // Add Mermaid plugin\n if (useMermaid) {\n plugins.push(createMermaidPlugin({}));\n }\n\n // Create and return processor\n return createMarkdownProcessor({\n plugins,\n logger,\n fetcher,\n });\n};\n","// mark-deco - Flexible Markdown to HTML conversion library\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/mark-deco\n\nimport { Command, Option } from 'commander';\nimport type { HeaderTitleTransform, ResolveUrlContext } from 'mark-deco';\n\nimport {\n author,\n description,\n git_commit_hash,\n name,\n repository_url,\n version,\n} from './generated/packageMetadata';\nimport { loadConfig } from './config';\nimport { readInput, writeOutput, writeJsonOutput } from './io';\nimport { setupProcessor } from './processor';\n\ninterface CLIOptions {\n input?: string;\n config?: string;\n output?: string;\n plugins?: string[];\n noPlugins?: boolean;\n uniqueIdPrefix?: string;\n hierarchicalHeadingId?: boolean;\n contentBasedHeadingId?: boolean;\n headingBaseLevel?: number;\n headerTitleTransform?: HeaderTitleTransform;\n frontmatterOutput?: string;\n headingTreeOutput?: string;\n relativeUrl?: string;\n}\n\nconst program = new Command();\n\nconst isRelativeUrl = (url: string): boolean => {\n if (!url || url.startsWith('#') || url.startsWith('?')) {\n return false;\n }\n if (url.startsWith('/') || url.startsWith('\\\\')) {\n return false;\n }\n return !/^[a-zA-Z][a-zA-Z0-9+.-]*:/.test(url);\n};\n\nconst createRelativeUrlResolver = (relativeUrl: string) => {\n const base = relativeUrl.replace(/\\/+$/, '');\n\n return (url: string, _context: ResolveUrlContext): string => {\n if (!isRelativeUrl(url)) {\n return url;\n }\n\n const normalized = url.startsWith('./') ? url.slice(2) : url;\n if (!base) {\n return `/${normalized}`;\n }\n\n return `${base}/${normalized}`;\n };\n};\n\nconst main = async () => {\n program\n .name(name)\n .summary(description)\n .version(`${version}-${git_commit_hash}`);\n\n program\n .addOption(\n new Option('-i, --input <file>', 'Input markdown file (default: stdin)')\n )\n .addOption(\n new Option('-o, --output <file>', 'Output HTML file (default: stdout)')\n )\n .addOption(new Option('-c, --config <file>', 'Configuration file path'))\n .addOption(\n new Option(\n '-p, --plugins [plugins...]',\n 'Enable specific plugins (oembed, card, beautiful-mermaid, mermaid)'\n )\n )\n .addOption(new Option('--no-plugins', 'Disable all default plugins'))\n .addOption(\n new Option(\n '--unique-id-prefix <prefix>',\n 'Prefix for unique IDs'\n ).default('section')\n )\n .addOption(\n new Option(\n '--hierarchical-heading-id',\n 'Use hierarchical heading IDs'\n ).default(true)\n )\n .addOption(\n new Option(\n '--content-based-heading-id',\n 'Use content-based heading IDs'\n ).default(false)\n )\n .addOption(\n new Option(\n '--heading-base-level <level>',\n 'Base heading level for markdown headings'\n )\n .argParser((value) => Number.parseInt(value, 10))\n .default(1)\n )\n .addOption(\n new Option(\n '--header-title-transform <mode>',\n 'Control how the first base-level heading is applied to frontmatter.title (extract, extractAndRemove, none)'\n ).choices(['extract', 'extractAndRemove', 'none'])\n )\n .addOption(\n new Option(\n '--relative-url <url>',\n 'Prefix relative URLs in output (links, images, raw HTML)'\n )\n )\n .addOption(\n new Option(\n '--frontmatter-output <file>',\n 'Output frontmatter as JSON to specified file'\n )\n )\n .addOption(\n new Option(\n '--heading-tree-output <file>',\n 'Output heading tree as JSON to specified file'\n )\n )\n .action(async () => {\n const options = program.opts<CLIOptions>();\n try {\n // Load configuration\n const config = await loadConfig(options.config);\n\n // Merge CLI options with config\n const mergedOptions = { ...config, ...options };\n\n // Read input\n const markdown = await readInput(options.input);\n\n // Setup processor with plugins\n const processor = setupProcessor(mergedOptions);\n\n // Process markdown\n const headerTitleTransform: HeaderTitleTransform =\n options.headerTitleTransform ??\n config.headerTitleTransform ??\n 'extractAndRemove';\n const headingBaseLevel =\n options.headingBaseLevel ?? config.headingBaseLevel ?? 1;\n const relativeUrl = options.relativeUrl ?? config.relativeUrl;\n const resolveUrl = relativeUrl\n ? createRelativeUrlResolver(relativeUrl)\n : undefined;\n\n const processOptions = {\n useHierarchicalHeadingId: options.hierarchicalHeadingId ?? true,\n useContentStringHeaderId: options.contentBasedHeadingId ?? false,\n headingBaseLevel,\n headerTitleTransform,\n ...(resolveUrl ? { resolveUrl } : {}),\n };\n\n const result = await processor.process(\n markdown,\n options.uniqueIdPrefix || 'section',\n processOptions\n );\n\n // Write output\n await writeOutput(result.html, options.output);\n\n // Write frontmatter if output path is specified\n if (options.frontmatterOutput) {\n await writeJsonOutput(result.frontmatter, options.frontmatterOutput);\n }\n\n // Write heading tree if output path is specified\n if (options.headingTreeOutput) {\n await writeJsonOutput(result.headingTree, options.headingTreeOutput);\n }\n } catch (error) {\n console.error(\n 'Error:',\n error instanceof Error ? error.message : String(error)\n );\n process.exit(1);\n }\n });\n\n // Handle unhandled errors\n process.on('unhandledRejection', (reason, promise) => {\n console.error('Unhandled Rejection at:', promise, 'reason:', reason);\n process.exit(1);\n });\n\n process.on('uncaughtException', (error) => {\n console.error('Uncaught Exception:', error);\n process.exit(1);\n });\n\n // Parse command line arguments\n const userArgs = process.argv.slice(2);\n if (\n userArgs.length === 0 ||\n userArgs.includes('--help') ||\n userArgs.includes('-h')\n ) {\n console.log(`${name} [${version}-${git_commit_hash}]`);\n console.log(description);\n console.log(`Copyright (c) ${author}`);\n console.log(repository_url);\n console.log('License: Under MIT');\n console.log('');\n }\n program.parse();\n};\n\n// Run the main function\nmain().catch((error) => {\n console.error('Failed to start CLI:', error);\n process.exit(1);\n});\n"],"names":["resolve","readFile","stdin","writeFile","getConsoleLogger","createCachedFetcher","createMemoryCacheStorage","createOEmbedPlugin","createCardPlugin","createBeautifulMermaidPlugin","createMermaidPlugin","createMarkdownProcessor","Command","Option"],"mappings":"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"}
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "git": {
3
3
  "tags": [
4
- "1.1.0"
4
+ "1.2.0"
5
5
  ],
6
6
  "branches": [
7
7
  "main"
8
8
  ],
9
- "version": "1.1.0",
9
+ "version": "1.2.0",
10
10
  "commit": {
11
- "hash": "1671d139a7f806a597d37327b87576bd3e85d817",
12
- "shortHash": "1671d13",
13
- "date": "2026-01-30T15:05:45+09:00",
11
+ "hash": "ac2db6bda5bcf3c66742d73693edaeef00c9f558",
12
+ "shortHash": "ac2db6b",
13
+ "date": "2026-01-30T18:55:54+09:00",
14
14
  "message": "Merge branch 'develop'"
15
15
  }
16
16
  },
17
- "version": "1.1.0",
17
+ "version": "1.2.0",
18
18
  "description": "Command-line interface for mark-deco Markdown to HTML conversion processor",
19
19
  "name": "mark-deco-cli",
20
20
  "keywords": [
@@ -64,5 +64,5 @@
64
64
  "vite": ">=6.3.5",
65
65
  "vitest": ">=1.0.0"
66
66
  },
67
- "buildDate": "2026-01-30T15:44:38+09:00"
67
+ "buildDate": "2026-01-30T18:57:21+09:00"
68
68
  }