dirkf
f487b4a02a
[jsinterp] Strip /* comments */ when parsing
...
* NB: _separate() is looking creaky
8 months ago
dirkf
60835ca16c
[jsinterp] Fix and improve "methods"
...
* push, unshift return new length
* impove edge cases for push/pop, shift/unshift, forEach, indexOf, charCodeAt
* increase test coverage
8 months ago
dirkf
94fd774608
[jsinterp] Fix and improve split/join
...
* improve split/join edge cases
* correctly implement regex split (not like re.split)
8 months ago
dirkf
5dee6213ed
[jsinterp] Fix and improve arithmetic operations
...
* addition becomes concat with a string operand
* improve handling of edgier cases
* arithmetic in float like JS (more places need cast to int?)
* increase test coverage
8 months ago
dirkf
81e64cacf2
[jsinterp] Support multiple indexing (eg a[1][2])
...
* extend single indexing with improved RE (should probably use/have used _separate_at_paren())
* fix some cases that should have given undefined, not throwing
* standardise RE group names
* support length of objects, like {1: 2, 3: 4, length: 42}
8 months ago
dirkf
c1a03b1ac3
[jsinterp] Fix and improve loose and strict equality operations
...
* reimplement loose equality according to MDN (eg, 1 == "1")
* improve strict equality (eg, "abc" === "abc" but 'abc' is not 'abc')
* add tests for above
8 months ago
dirkf
118c6d7a17
[jsinterp] Implement `typeof` operator
8 months ago
dirkf
f28d7178e4
[InfoExtractor] Use kwarg maxsplit for re.split
...
* May become kw-only in future Pythons
8 months ago
Bart Broere
6f271423e8
Update tests
10 months ago
Bart Broere
75266ce4ed
Fix old metadata reference
10 months ago
Bart Broere
817e2e5938
Fix some missing imports
10 months ago
Bart Broere
0e1a0cfa03
Apply some more PR feedback
10 months ago
Bart Broere
7f1c09bea1
Use _sort_formats util
10 months ago
Bart Broere
c3026dd70c
Apply suggestion from PR
10 months ago
Bart Broere
41157b2b49
Move GraphQL query into separate variable
10 months ago
Bart Broere
c748eca829
Automatically obtain NextJS buildId and change item to video-item
10 months ago
Bart Broere
6de650f51f
Use traverse_obj in another place as well
11 months ago
Bart Broere
bf91db4846
Use suggested util
11 months ago
Bart Broere
ad6ee6fdd2
Commit two suggestions from the PR
...
Co-authored-by: dirkf <fieldhouse@gmx.net>
11 months ago
Bart Broere
179c8b06b6
Merge branch 'ytdl-org:master' into fix-npo-support
11 months ago
dirkf
c5098961b0
[Youtube] Rework n function extraction pattern
...
Now also succeeds with player b12cc44b
1 year ago
dirkf
dbc08fba83
[jsinterp] Improve slice implementation for player b12cc44b
...
Partly taken from yt-dlp/yt-dlp#10664, thx seproDev
Fixes #32896
1 year ago
Aiur Adept
71223bff39
[Youtube] Fix nsig extraction for player 20dfca59 ( #32891 )
...
* dirkf's patch for nsig extraction
* add generic search per yt-dlp/yt-dlp/pull/10611 - thx bashonly
---------
Co-authored-by: dirkf <fieldhouse@gmx.net>
1 year ago
dirkf
e1b3fa242c
[Youtube] Find `n` function name in player `3400486c`
...
Fixes #32877
1 year ago
dirkf
451046d62a
[Youtube] Make n-sig throttling diagnostic up-to-date
1 year ago
dirkf
16f5bbc464
[YouTube] Fix nsig processing for player `b22ef6e7`
...
* improve extraction of function name (like yt-dlp/yt-dlp#10390 )
* always use JSInterp to extract function code (yt-dlp/yt-dlp#10396 , thx seproDev, pukkandan)
1 year ago
dirkf
d35ce6ce95
[jsinterp] Support functionality for player `b22ef6e7`
...
* support `prototype` for call() and apply() (yt-dlp/yt-dlp#10392 , thx Grub4k)
* map JS `Array` to `list`
1 year ago
dirkf
76ac69917e
[jsinterp] Further improve expression parsing (fix fd8242e
)
...
Passes tests from yt-dlp
1 year ago
dirkf
756f6b45c7
[jsinterp] Re-align JSInterp and tests (esp.) with yt-dlp
...
Thx: various yt-dlp authors
1 year ago
bashonly
43a74c5fa5
[core] Address gaps in allowed extensions
...
Adds some extensions missing in 4652109643
(from yt-dlp/yt-dlp#10362 )
Authored by: bashonly
Co-authored by: dirkf
1 year ago
dirkf
a452f9437c
[core] Fix PR #32830 for fixed extensionless output template
1 year ago
unkernet
36801c62df
[YandexMusic] Save track version in the title field
...
PR #32837
* Add track version to track title
1 year ago
Sergey Musatov
f4b47754d9
[YandexMusic] Download music in High Quality (320 Kbit/s)
...
PR #31159
1 year ago
dirkf
37cea84f77
[core,utils] Support unpublicised `--no-check-extensions`
1 year ago
dirkf
4652109643
[core,utils] Implement unsafe file extension mitigation
...
* from https://github.com/yt-dlp/yt-dlp/security/advisories/GHSA-79w7-vh3h-8g4 , thx grub4k
1 year ago
dirkf
3c466186a8
[utils] Back-port Namespace and MEDIA_EXTENSIONS from yt-dlp
...
Thx pukkandan
* Namespace: https://github.com/yt-dlp/yt-dlp/commit/591bb9d355
* MEDIA_EXTENSIONS: https://github.com/yt-dlp/yt-dlp/commit/8dc5930511
1 year ago
dirkf
4d05f84325
[PalcoMP3] Conform to new linter rule
...
* no space after @ in decorator
1 year ago
dirkf
e0094e63c3
[jsinterp] Various tweaks
...
* treat Infinity like NaN
* cache operator list
1 year ago
dirkf
fd8242e3ef
[jsinterp] Fix and improve expression parsing
...
* improve BODMAS (fixes https://github.com/ytdl-org/youtube-dl/issues/32815 )
* support more weird expressions with multiple unary ops
1 year ago
dirkf
ad01fa6cca
[jsinterp] Add Debugger from yt-dlp
...
* https://github.com/yt-dlp/yt-dlp/commit/8f53dc4
* thx pukkandan
1 year ago
dirkf
2eac0fa379
[utils] Save `orig_msg` in `ExtractorError`
1 year ago
Paper
0153b387e5
[VidLii] Add 720p support ( #30924 )
...
* [VidLii] Add HD support (yt-dlp backport-ish)
* Also fix a bug with the view count
---------
Co-authored-by: dirkf <fieldhouse@gmx.net>
1 year ago
dirkf
a48fe7491d
[ORF] Skip tests with limited availability
1 year ago
dirkf
e20ca543f0
[ORF] Re-factor and update`ORFFM4StoryIE`
...
* fix getting media via DASH instead of inaccessible mp4
* also get in-page YT media
1 year ago
dirkf
e39466051f
[ORF] Support sound.orf.at, updating `ORFRadioIE`
...
* maintain support for xx.orf.at/player/... URLs
* add `ORFRadioCollectionIE` to support playlists in ORF Sound
* back-port and re-work `ORFPodcastIE` from https://github.com/yt-dlp/yt-dlp/pull/8486 , thx Esokrates
1 year ago
dirkf
d95c0d203f
[ORF] Support on.orf.at, replacing `ORFTVthekIE`
...
* add `ORFONIE`, back-porting yt-dlp PR https://github.com/yt-dlp/yt-dlp/pull/9113 and friends: thx HobbyistDev, TuxCoder, seproDev
* re-factor to support livestreams via new `ORFONliveIE`
1 year ago
dirkf
3bde6a5752
[test] Improve download test
...
* skip reason can't be unicode in Py2
* remove duplicate assert...Equal functions
1 year ago
dirkf
50f6c5668a
[core] Re-factor with `_fill_common_fields()` as used in yt-dlp
1 year ago
dirkf
b4ff08bd2d
[core] Safer handling of nested playlist data
1 year ago
kmnx
88bd8b9f87
[mixcloud] updated mixcloud API server address ( #32557 )
...
* updated mixcloud API server address
* fix tests
* etc
---------
Co-authored-by: dirkf <fieldhouse@gmx.net>
1 year ago