aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* add extractor_key to fix download archivemobile-webgarret2024-08-061-0/+2
| | | | | | | i can get the same video from two extractors (individual vid/playlist page) but theyre different extractors so the download archive doesnt work if i grab from one page and then the other thank you to pukkandan for telling me how to fix it
* add support for "season"/series pagesgarret2024-08-061-34/+47
| | | | also moved the mobile extracting things to the baseIE
* split mobile extraction into a separate func to use elsewheregarret2024-08-061-5/+7
|
* mobile: add _old_archive_ids for compat with webgarret2024-08-061-0/+3
|
* add test for mobile episodesgarret2024-08-061-0/+29
| | | | parity! (except channel/uploader_url)
* add mobile support in persons extractorgarret2024-08-061-2/+2
|
* add support for episodes from mobile sitegarret2024-08-061-0/+84
| | | | | | | | auth is a bit hmm at the minute, i haven't implemented the multi-area process yet but, it works! a
* construct the chapter API url properly (not stringmashing)garret2024-08-051-4/+5
|
* add tests for RadikoPersonIEgarret2024-08-051-0/+14
|
* add extractor arg to filter for "key station only"garret2024-08-051-0/+3
| | | | | | | | | | | | | | | | | | | | | | Programmes that air on a network of stations have an originating station- a "key" station. e.g. for all night nippon the key station is ニッポン放送 (LFR) radiko's new APIs include a key_station field. I'd only seen such a field in the mobile-web site until now, so I haven't been able do anything with it. But now the PC website's gotten this "persons" API, so I can. this arg is currently only useful for the new "persons" urls, but i suspect it might become more useful as time goes on... example usage: you give the url for the host of a networked show, the default will download from every station (probably not what you want) but if you specify key-station-only, then you get just one download from the originating station i may add a "preference" argument at some point, for if you want it from a specific non-key station, but not right now
* add support for https://radiko.jp/persons/ URLsgarret2024-08-051-0/+38
| | | | | | | | | | | | | | | | | | | those urls give a bio and pic of the person, and recently they've started giving a list of all the programmes that person's appeared in as well. the API is a bit annoying, you have to specify a start and end time to search between, so i had to work out the logic for "everything currently on timefree" also, the site doesn't use the "end_at_lt" parameter, only start_at_lt i tried it in the url on the offchance it would work and save a bit of logic it did so i will keep it, but it probably stands out a quite a bit, idk if the mobile apps use this, or with the end_at_lt parameter the only playlist details I can provide are the ID. There is an API for the actual details, but that's an extra request, and it's protobuf.
* set the ie_key used by extractor_args to "rajiko"garret2024-08-051-1/+1
| | | | | so just the one --extractor-args incantation can be used for both live and timefree (--extractor-args "rajiko:device=pc_html5")
* change names of RadikoTime functions so that datetime is the "default"garret2024-08-052-5/+9
| | | | generally we should work in datetimes, the strings should be the "special" ones
* don't inherit from RadikoBaseIE when not neededgarret2024-08-051-3/+3
|
* fix StationButton regex to allow for http:/wwww. like the othersgarret2024-08-031-1/+1
|
* update + format testsgarret2024-08-031-173/+130
| | | | | | | | | | all tests passed as of Sat, 03 Aug 2024 06:44:00 +0100 updated to present day where necessary rearranged the dicts to make them easier to read + modify 'single quotes' -> "double quotes" (including some other bits i saw along the way) got rid of most of the timefree tests, since the time handling is tested externally now the station websites stopped using the stationbutton (or started rendering it with javascript) so now cocolo is the only webpage test
* update licence exception to reflect new key filegarret2024-07-111-1/+1
|
* update _ANDROID_VERSIONS source commentgarret2024-07-091-1/+1
| | | | the link wasnt dead after all
* clean up whitespace in coordinate dictgarret2024-07-091-8/+8
|
* add "mobile" as a possibility for x-radiko-connectiongarret2024-07-091-1/+1
|
* make variable names clearer in token negotiation bitgarret2024-07-091-11/+11
|
* format some dicts a bit nicergarret2024-07-091-2/+8
|
* bump version to 1.1v1.1garret2024-07-071-1/+1
|
* update readme, tweak japanesegarret2024-07-071-1/+1
|
* exclude tests from final wheelgarret2024-07-071-0/+3
|
* load key from a file with pkgutilgarret2024-07-073-285/+7
| | | | | | | | | | | | | | | | | | | | | | wanted to do this before, but per comment: the official docs led me to believe that importlib_resources was the only way to do it, and that the thing i was trying to do wasn't supported in some python versions so i put it off to one side for later later came (now), and i tried to implement it with importlib.resources didn't work, i looked it up and found this stackoverflow post https://stackoverflow.com/a/58941536 and the second answer, using pkgutil (not importlib.resources), just worked and the syntax/api seems much nicer as well have tested with pip yt-dlp + raw directory plugin, and binary yt-dlp + .whl plugin also on windows, with binary+whl both worked, amazing success! so pkgutil seems like the way to go i also updated the build thing to include .bin files in the extractor dir
* fix the build - wasn't including the extractor dirgarret2024-07-071-3/+0
|
* add release instructionsgarret2024-06-071-0/+46
| | | | so i don't have to figure it out from scratch every time
* set the station's uploader_idgarret2024-06-071-0/+1
| | | | parity with yt-dlp proper
* arrange station metadata dict more logicallygarret2024-06-071-4/+7
|
* link to japanese version of the websitegarret2024-05-201-2/+2
|
* remove explicit dependency on yt-dlpgarret2024-05-181-1/+0
| | | | | | | | | per discussion in the discord https://discord.com/channels/807245652072857610/1112613156934668338/1235992574687445044 one can do stuff like installing yt-dlp with the zip, and plugins with pip so it's better for it to possibly not work, than to possibly fuck everything up also it stops things needlessly hitting my pip index
* sort out package "building" and metadatav1.0garret2024-04-026-10/+38
|
* moving to a place under my sole controlgarret2024-04-011-93/+6
| | | | | information remains available on the website, which has been saved on the internet archive wayback machine
* improve readmegarret2024-03-101-31/+67
| | | | | | added usage instructions/advice added a bit of japanese translation updated required yt-dlp version to reflect reality
* due to the spike in git clones after 48776c3, i have concluded that i should ↵v0.3.1garret2024-03-091-1/+1
| | | | increment the version number more often
* improve report-requesting messagegarret2024-03-061-1/+4
| | | | now links to the actual issue page and prints info useful for debugging
* remove dependency on secretsgarret2024-03-061-3/+2
| | | | | it does not need to be cryptographically strong only using token_hex for convenience
* make random info generator less hackygarret2024-03-061-47/+18
| | | | | | | | | | also fixed a rather embarrassing bug the generated user agent was, for example: Dalvik/2.1.0 (Linux; U; Android {'sdk': '27', 'builds': ['5794017', '6107733', '6037697']};SOV36/6107733) because i put the wrong variable name in the fstring thats alright its only been sending botched identification for its entire existence(!)
* been a while since i last incremented the version numberv0.3.0garret2024-03-061-1/+1
| | | | | | | | one day i will find out what the proper thing to do is i don't really want set "releases", i just want people to pull off the master branch since i try not to push broken code so fingers crossed it should be fine (famous last words)
* support live url shorthandgarret2024-02-021-3/+6
| | | | | makes it a bit easier to use in the cli since you don't need to 'quote' for the #!
* update licence yeargarret2024-01-051-1/+1
|
* reject ffmpeg-incompatible formats for live as wellgarret2024-01-051-10/+12
| | | | there is a live format that also doesn't work
* support downloading as-live formatsgarret2024-01-051-1/+20
| | | | closes #18
* make time classes inherit from datetime.datetimegarret2023-11-102-33/+14
| | | | | | | | | | | so now it's just datetime.datetime with custom input and a few new funcs instead of actually having a datetime.datetime internally and jankily kind-of-exposing it doesn't really affect things currently, but it makes something i want to do possible (and it's generally just the better way of doing it) Co-Authored-By: 9382 <omnomaidan@gmail.com>
* add notes about meaning of the url parametersgarret2023-10-291-2/+2
|
* switch licencegarret2023-10-252-24/+18
| | | | | | i think copyright can be a good thing actually bsd 0-clause is basically the same but without the anti-copyright stuff afaict also corrected spelling
* add token negotiation testsgarret2023-10-251-0/+26
|
* update live testsgarret2023-10-251-12/+14
| | | | | housou daigaku is going away soon, so switching to radio nikkei https://www.ouj.ac.jp/news/2023/information/5-32-2.html
* minor housekeepinggarret2023-10-253-15/+13
| | | | mostly whitespace changes