File tree 6 files changed +1050
-1014
lines changed
6 files changed +1050
-1014
lines changed Original file line number Diff line number Diff line change 12
12
13
13
strategy :
14
14
matrix :
15
- node_version : [18 .x, 20 .x, 22 .x]
15
+ node_version : [20 .x, 22 .x, 23 .x]
16
16
17
17
steps :
18
18
- uses : actions/checkout@v4
57
57
uses : coverallsapp/github-action@v2
58
58
with :
59
59
parallel-finished : true
60
- carryforward : " run-18 .x,run-20 .x,run-21 .x"
60
+ carryforward : " run-20 .x,run-22 .x,run-23 .x"
61
61
Original file line number Diff line number Diff line change @@ -10,9 +10,7 @@ Extract oEmbed content from given URL.
10
10
11
11
## Demo
12
12
13
- - [ Give it a try!] ( https://extractor-demos.pages.dev/oembed-extractor )
14
- - [ Example FaaS] ( https://extractus.deno.dev/extract?apikey=rn0wbHos2e73W6ghQf705bdF&type=oembed&url=https://www.instagram.com/tv/CVlR5GFqF68/ )
15
-
13
+ - [ Give it a try!] ( https://extractus-demo.vercel.app/oembed )
16
14
17
15
## Install & Usage
18
16
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 4.0.7 " ,
2
+ "version" : " 4.0.8 " ,
3
3
"name" : " @extractus/oembed-extractor" ,
4
4
"description" : " Get oEmbed data from given URL." ,
5
5
"homepage" : " https://github.com/extractus/oembed-extractor" ,
32
32
},
33
33
"dependencies" : {
34
34
"cross-fetch" : " ^4.1.0" ,
35
- "linkedom" : " ^0.18.9 "
35
+ "linkedom" : " ^0.18.10 "
36
36
},
37
37
"devDependencies" : {
38
- "@eslint/js" : " ^9.24 .0" ,
39
- "eslint" : " ^9.24 .0" ,
38
+ "@eslint/js" : " ^9.26 .0" ,
39
+ "eslint" : " ^9.26 .0" ,
40
40
"globals" : " ^16.0.0" ,
41
41
"https-proxy-agent" : " ^7.0.6" ,
42
42
"jest" : " ^29.7.0" ,
43
- "nock" : " ^14.0.3 "
43
+ "nock" : " ^14.0.4 "
44
44
},
45
45
"keywords" : [
46
46
" oembed" ,
Original file line number Diff line number Diff line change 1
- // provider data, synchronized at 2025-04-13T02:12:06.847Z
1
+ // provider data, synchronized at 2025-05-04T13:26:33.140Z
2
2
3
3
/* eslint-disable */
4
4
@@ -804,7 +804,6 @@ export const providers = [
804
804
{
805
805
"s" : [
806
806
"//gumlet\\.tv/watch/*" ,
807
- "//www\\.gumlet\\.com/watch/*" ,
808
807
"//play\\.gumlet\\.io/embed/*"
809
808
] ,
810
809
"e" : "//api.gumlet.com/v1/oembed"
@@ -909,6 +908,13 @@ export const providers = [
909
908
] ,
910
909
"e" : "//www.ifttt.com/oembed/"
911
910
} ,
911
+ {
912
+ "s" : [
913
+ "//*\\.videocdn\\.net/player/*" ,
914
+ "//*\\.euvideocdn\\.com/player/*"
915
+ ] ,
916
+ "e" : "//app.ignitevideo.cloud/api/oembed"
917
+ } ,
912
918
{
913
919
"s" : [
914
920
"//www\\.iheart\\.com/podcast/*/*"
@@ -1171,6 +1177,12 @@ export const providers = [
1171
1177
] ,
1172
1178
"e" : "//admin.lumiere.is/api/services/oembed"
1173
1179
} ,
1180
+ {
1181
+ "s" : [
1182
+ "//marimo\\.app/*"
1183
+ ] ,
1184
+ "e" : "//marimo.app/oembed"
1185
+ } ,
1174
1186
{
1175
1187
"s" : [
1176
1188
"//mathembed\\.com/latex?inputText=*"
Original file line number Diff line number Diff line change 1670
1670
{
1671
1671
"schemes" : [
1672
1672
" https://gumlet.tv/watch/*" ,
1673
- " https://www.gumlet.com/watch/*" ,
1674
1673
" https://play.gumlet.io/embed/*"
1675
1674
],
1676
1675
"url" : " https://api.gumlet.com/v1/oembed" ,
1895
1894
}
1896
1895
]
1897
1896
},
1897
+ {
1898
+ "provider_name" : " Ignite" ,
1899
+ "provider_url" : " https://ignite.video/" ,
1900
+ "endpoints" : [
1901
+ {
1902
+ "schemes" : [
1903
+ " https://*.videocdn.net/player/*" ,
1904
+ " https://*.euvideocdn.com/player/*"
1905
+ ],
1906
+ "url" : " https://app.ignitevideo.cloud/api/oembed" ,
1907
+ "discovery" : true
1908
+ }
1909
+ ]
1910
+ },
1898
1911
{
1899
1912
"provider_name" : " iHeartRadio" ,
1900
1913
"provider_url" : " https://www.iheart.com" ,
2446
2459
}
2447
2460
]
2448
2461
},
2462
+ {
2463
+ "provider_name" : " marimo" ,
2464
+ "provider_url" : " https://marimo.io/" ,
2465
+ "endpoints" : [
2466
+ {
2467
+ "schemes" : [
2468
+ " https://marimo.app/*"
2469
+ ],
2470
+ "url" : " https://marimo.app/oembed" ,
2471
+ "discovery" : true
2472
+ }
2473
+ ]
2474
+ },
2449
2475
{
2450
2476
"provider_name" : " MathEmbed" ,
2451
2477
"provider_url" : " http://mathembed.com" ,
You can’t perform that action at this time.
0 commit comments