Skip to content

Commit 2b415ab

Browse files
committed
feat: Ajouter le support de Overcast.
1 parent 4cbbe6a commit 2b415ab

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ des vidéos et des musiques sur **Kodi** :
1717
- liens directs : *avi*, *mkv*, *mp3*, *flac*… et torrent / magnet ;
1818
- YouTube, Twitch, SoundCloud ainsi que Ace Stream, Apple Podcasts, BitChute,
1919
Blog Talk Radio, Dailymotion, DevTube, Facebook, Flickr, Full30, Instagram,
20-
Jamendo, LiveLeak, Mixcloud, Mixer, My Cloud Player, PeerTube, Pippa,
21-
podCloud, Radio, Radioline, Steam, Streamable, TikTok, Vimeo, YT Home ;
20+
Jamendo, LiveLeak, Mixcloud, Mixer, My Cloud Player, Overcast, PeerTube,
21+
Pippa, podCloud, Radio, Radioline, Steam, Streamable, TikTok, Vimeo, YT Home ;
2222
- Allemagne : Arte ;
2323
- Belgique : VRT NU ;
2424
- États-Unis : KCAA Radio ;

locales/en/amo_description.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
direct links: <em>avi</em>, <em>mkv</em>, <em>mp3</em>, <em>flac</em>, ... and torrent / magnet;
55
</li>
66
<li>
7-
YouTube, Twitch, Vimeo, SoundCloud as well as Ace Stream, Apple Podcasts, BitChute, Blog Talk Radio, Dailymotion, DevTube, Facebook, Flickr, Full30, Instagram, Jamendo, LiveLeak, Mixcloud, Mixer, My Cloud Player, PeerTube, Pippa, podCloud, Radio, Radioline, Steam, Streamable, TikTok, YT Home;
7+
YouTube, Twitch, Vimeo, SoundCloud as well as Ace Stream, Apple Podcasts, BitChute, Blog Talk Radio, Dailymotion, DevTube, Facebook, Flickr, Full30, Instagram, Jamendo, LiveLeak, Mixcloud, Mixer, My Cloud Player, Overcast, PeerTube, Pippa, podCloud, Radio, Radioline, Steam, Streamable, TikTok, YT Home;
88
<ul>
99
<li>Germany: Arte;</li>
1010
<li>Belgium: VRT NU;</li>

locales/fr/amo_description.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
liens directs : <em>avi</em>, <em>mkv</em>, <em>mp3</em>, <em>flac</em>… et torrent / magnet ;
55
</li>
66
<li>
7-
YouTube, Twitch, Vimeo, SoundCloud ainsi que Ace Stream, Apple Podcasts, BitChute, Blog Talk Radio, Dailymotion, DevTube, Facebook, Flickr, Full30, Instagram, Jamendo, LiveLeak, Mixcloud, Mixer, My Cloud Player, PeerTube, Pippa, podCloud, Radio, Radioline, Steam, Streamable, TikTok, YT Home ;
7+
YouTube, Twitch, Vimeo, SoundCloud ainsi que Ace Stream, Apple Podcasts, BitChute, Blog Talk Radio, Dailymotion, DevTube, Facebook, Flickr, Full30, Instagram, Jamendo, LiveLeak, Mixcloud, Mixer, My Cloud Player, Overcast, PeerTube, Pippa, podCloud, Radio, Radioline, Steam, Streamable, TikTok, YT Home ;
88
<ul>
99
<li>Allemagne : Arte ;</li>
1010
<li>Belgique : VRT NU ;</li>

test/integration/scraper/overcast.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import assert from "assert";
2+
import { extract } from "../../../src/core/scrapers.js";
3+
4+
describe("Scraper: Overcast", function () {
5+
it("should return video URL", async function () {
6+
const url = "https://overcast.fm/+JUKOBdbAM";
7+
const expected = "https://tracking.feedpress.it/link/17512/13061508" +
8+
"/b6710001_tc.mp3#t=0";
9+
10+
const file = await extract(new URL(url), { "depth": 0 });
11+
assert.strictEqual(file, expected);
12+
});
13+
});

0 commit comments

Comments
 (0)