Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | release v1.8v1.8 | garret1317 | 2025-09-14 | 1 | -1/+1 |
| | |||||
* | Add instructions for obtaining protobug in the warning message | garret1317 | 2025-09-14 | 1 | -1/+1 |
| | |||||
* | add bundle stuff to gitignore | garret1317 | 2025-09-14 | 1 | -0/+2 |
| | |||||
* | Add support for bundled protobug library | garret1317 | 2025-09-14 | 3 | -9/+34 |
| | | | | | github: closes #29 | ||||
* | clean up stray imports in protobufs file | garret1317 | 2025-09-14 | 1 | -3/+0 |
| | |||||
* | the build thing wants me to put a SPDX licence id instead of the classifier | garret1317 | 2025-09-14 | 1 | -1/+1 |
| | | | | | even though the classifier is nicer because it's human readable as well but it won't let me have both in there at once | ||||
* | put protobug as a full dependency so everyone who installs with pip gets it | garret1317 | 2025-09-14 | 1 | -3/+4 |
| | | | | it's pure python with no deps + trusted dev so it's fine | ||||
* | Merge branch 'podcast-protobuf' | garret1317 | 2025-09-14 | 3 | -15/+180 |
|\ | |||||
| * | add protobug as optional dependency | garret1317 | 2025-08-13 | 1 | -0/+3 |
| | | | | | | | | | | tbh i might just wait until its in yt-dlp proper, would make packaging easier... | ||||
| * | ListPodcastEpisodesRequest: dontknow -> sort_by_latest | garret1317 | 2025-08-13 | 1 | -2/+2 |
| | | |||||
| * | convert protobug obj to dict, for traverse_obj | garret1317 | 2025-08-13 | 1 | -1/+2 |
| | | |||||
| * | Implement multi-page podcasts with protobugpodcast-protobuf | garret1317 | 2025-08-11 | 1 | -15/+24 |
| | | | | | | | | needs core change in upstream to work (traverse_obj doesnt work with dataclasses) | ||||
| * | Add podcast protobufs + functions to use them | garret1317 | 2025-08-11 | 1 | -0/+152 |
| | | |||||
* | | disable stream blacklist for live | garret1317 | 2025-09-14 | 1 | -1/+3 |
| | | | | | | | | | | ref https://github.com/garret1317/yt-dlp-rajiko/issues/29#issuecomment-3289577318 github issue #29 | ||||
* | | rename "misc" -> "contrib" | garret1317 | 2025-09-14 | 10 | -2/+2 |
| | | |||||
* | | clarify "indexing (station) regions" text | garret1317 | 2025-09-13 | 1 | -1/+1 |
| | | |||||
* | | Update stream monitor script to be more readable when changes actually happen | garret1317 | 2025-09-12 | 1 | -8/+21 |
| | | |||||
* | | Don't return any formats when we don't actually have any | garret1317 | 2025-09-11 | 1 | -3/+7 |
| | | |||||
* | | update some comments | garret1317 | 2025-09-11 | 1 | -2/+2 |
| | | |||||
* | | add support for "r_seasons" programme pages | garret1317 | 2025-08-29 | 2 | -1/+45 |
| | | |||||
* | | PersonsIE: construct a timefree url_result directly | garret1317 | 2025-08-29 | 1 | -11/+8 |
| | | | | | | | | | | so that --download-archive etc will quickly skip without a full extraction also removes reliance on `radiko_url` always being a share url | ||||
* | | Flag and deprioritise formats with ad insertion | garret1317 | 2025-08-26 | 1 | -1/+8 |
| | | |||||
* | | Set ffmpeg args to not send Range header | garret1317 | 2025-08-26 | 1 | -3/+10 |
| | | | | | | | | github issue #29 | ||||
* | | tests action: stop setup-ffmpeg getting too-new version | garret1317 | 2025-08-24 | 1 | -0/+2 |
| | | | | | | | | | | | | the version script gets version 8.0, which BtbN/FFmpeg-Builds doesn't build yet so the download script tries to get a file that doesn't exist, and fails if i set it to master then supposedly it won't use the version number and be fine | ||||
* | | set vcodec none for chunked formats | garret1317 | 2025-08-24 | 1 | -0/+1 |
| | | | | | | | | so they get marked as audio only | ||||
* | | fix timefree test (description changed) | garret1317 | 2025-08-11 | 1 | -1/+1 |
|/ | |||||
* | podcast protobuf test: add episode image urls | garret1317 | 2025-07-12 | 1 | -4/+11 |
| | |||||
* | make protobuf hasNextPage default to false, not None | garret1317 | 2025-07-11 | 1 | -2/+3 |
| | |||||
* | add Podcast protobuf test/proof-of-concept | garret1317 | 2025-07-11 | 1 | -0/+146 |
| | | | | not going to add to the extractor just yet because its really complicated | ||||
* | fix channel/uploader field in podcast extractor | garret1317 | 2025-07-10 | 1 | -2/+4 |
| | |||||
* | add podcast extractors to test script | garret1317 | 2025-07-10 | 1 | -2/+9 |
| | | | | also removed duplicate ShareIE | ||||
* | Add basic radiko podcast extractors | garret1317 | 2025-07-10 | 1 | -0/+114 |
| | |||||
* | add automated tests with github actions | garret1317 | 2025-07-10 | 1 | -0/+46 |
| | |||||
* | Update Tokyo Moon test | garret1317 | 2025-07-10 | 1 | -1/+1 |
| | |||||
* | run all extractor tests from test script | garret1317 | 2025-06-23 | 1 | -2/+5 |
| | | | | | may as well run them all from one place even if theyre not defined in one place + this way i don't have to patch test.helper separately to get it to load the plugin | ||||
* | move ShareIE tests to test script | garret1317 | 2025-06-22 | 2 | -33/+34 |
| | |||||
* | Move RadikoTimeFreeIE tests to test script | garret1317 | 2025-06-22 | 2 | -60/+26 |
| | |||||
* | test script: move import | garret1317 | 2025-06-22 | 1 | -2/+3 |
| | |||||
* | rename test-tokens script to test_areas | garret1317 | 2025-06-22 | 1 | -0/+0 |
| | | | | underscore so tab completion is less pain | ||||
* | update readme | garret1317 | 2025-06-22 | 1 | -6/+10 |
| | |||||
* | add new shiny custom-ish test script | garret1317 | 2025-06-20 | 1 | -0/+113 |
| | | | | see comment for details | ||||
* | update instructions to upload to real pip as well | garret1317 | 2025-06-16 | 1 | -1/+6 |
| | |||||
* | set count -> mincount for persons key station test | garret1317 | 2025-06-13 | 1 | -1/+1 |
| | |||||
* | Extract station logo as thumbnail for live now that banner is gone | garret1317 | 2025-06-13 | 1 | -18/+21 |
| | | | | well not technically _gone_, but replaced with a useless placeholder image | ||||
* | remove command from brackets to make it easier to copy | garret1317 | 2025-06-09 | 1 | -1/+3 |
| | |||||
* | release 1.7v1.7 | garret1317 | 2025-06-09 | 1 | -1/+1 |
| | |||||
* | add more stuff to pyproject.toml | garret1317 | 2025-06-09 | 1 | -1/+8 |
| | |||||
* | fix search only returning one result | garret1317 | 2025-06-06 | 1 | -1/+1 |
| | | | | | rather embarrassing bug introduced in a659b48a20b6241a68fc046c86c9ad0f71c9bd86 / v1.5 only caught it now because i only listen to weekly programmes so i only get 1 result anyway | ||||
* | add useful scripts used in release/development | garret1317 | 2025-06-05 | 3 | -0/+137 |
| | |||||
* | update release instructions | garret1317 | 2025-06-01 | 1 | -12/+4 |
| |