Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix npo support #31976

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
3b31478
Fix support for NPO downloads
bartbroere Mar 31, 2023
b4776f2
Import from compat
bartbroere Mar 31, 2023
fb2b4e2
Add line comment
bartbroere Mar 31, 2023
9e1acb2
Fix flake8
bartbroere Mar 31, 2023
6328978
Accept suggestions on PR; comply with conventions
bartbroere Apr 3, 2023
0c7261d
Update npo.py
dirkf Apr 6, 2023
c409a8c
Merge branch 'ytdl-org:master' into fix-npo-support
bartbroere Feb 25, 2024
f76d58c
Skip a test
bartbroere Feb 26, 2024
da3d1f4
Add notes on new npo.nl site
bartbroere Mar 1, 2024
5773681
Fix token URL
bartbroere Mar 1, 2024
29724e7
Delete all broken extractors
bartbroere Mar 1, 2024
21eb451
Convert the description into code
bartbroere Mar 1, 2024
0dc7d95
Comply with coding conventions a bit more
bartbroere Mar 1, 2024
fb7b717
Speculate about other ways of getting productId
bartbroere Mar 1, 2024
f9e59b0
Add the possibility to add 'hls' later
bartbroere Mar 1, 2024
8b1a7d9
Use provided util
bartbroere Mar 1, 2024
34b5b20
Refactor into reusable method
bartbroere Mar 3, 2024
4fc4238
Fix lint
bartbroere Mar 5, 2024
28ba01f
Add Ongehoord Nederland and test URL for BNNVARA
bartbroere Mar 5, 2024
eb6e396
First version of a VPRO regex
bartbroere Mar 5, 2024
d36d50f
Re-add Zapp
bartbroere Mar 5, 2024
d426a92
Encoding suggestion from PR
bartbroere Mar 5, 2024
3b3d73c
Use program-detail endpoint and remove a test
bartbroere Mar 6, 2024
4b24e5f
Re-add SchoolTV
bartbroere Mar 6, 2024
681b390
Fix flake8 and better error reporting
bartbroere Mar 6, 2024
159f825
Add scaffolding for last few extractors and change order so the PR di…
bartbroere Mar 6, 2024
0cbcd1a
Make diff better
bartbroere Mar 6, 2024
0ab79c3
Reusable code for two NTR sites
bartbroere Mar 7, 2024
c08f29f
Update unit tests
bartbroere Mar 10, 2024
28624cf
Work work
bartbroere Mar 10, 2024
1ca4e68
Add an MD5
bartbroere Mar 10, 2024
4398f68
Fix zapp extractor
bartbroere Mar 11, 2024
58d7a00
Resolve some of the pull request feedback
bartbroere Mar 11, 2024
d4250c8
Merge branch 'ytdl-org:master' into fix-npo-support
bartbroere Mar 12, 2024
ad64f37
Improve regex
bartbroere Mar 14, 2024
bc86c5f
Make regex more specific and remove redundant .*
bartbroere Mar 14, 2024
4c90b2f
Adhere to code style
bartbroere Mar 14, 2024
007bbea
Remove afspelen and trailing slashes with one regex
bartbroere Mar 14, 2024
a60972e
Fix indent from suggestion
bartbroere Mar 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions youtube_dl/extractor/extractors.py
Expand Up @@ -848,14 +848,13 @@
from .noz import NozIE
from .npo import (
AndereTijdenIE,
BNNVaraIE,
NPOIE,
NPOLiveIE,
NPORadioIE,
NPORadioFragmentIE,
ONIE,
SchoolTVIE,
HetKlokhuisIE,
VPROIE,
WNLIE,
ZAPPIE,
)
from .npr import NprIE
from .nrk import (
Expand Down