Add Concerning 20,000 videos limit for YouTube Data API v3 PlaylistItems: list endpoint section

Benjamin Loison 2022-12-22 02:19:34 +01:00
parent f2dbdc4763
commit 97dfd6c61d

12
Home.md

@ -36,3 +36,15 @@ Note that all of these videos are partial uploads of the original video and they
- [`f6nxcfbDfZo`](https://www.youtube.com/watch?v=f6nxcfbDfZo): is the original video - [`f6nxcfbDfZo`](https://www.youtube.com/watch?v=f6nxcfbDfZo): is the original video
Note that the video only have auto-generated captions. Note that the video only have auto-generated captions.
## Concerning 20,000 videos limit for YouTube Data API v3 PlaylistItems: list endpoint
Could try both (`-i` was required for ignoring errors such as age-restricted videos):
```
youtube-dl --dump-json "https://www.youtube.com/channel/UCf8w5m0YsRa8MHQ5bwSGmbw/videos" -i | jq -r '[.id]|@csv' | wc -l
```
```
yt-dlp --dump-json "https://www.youtube.com/channel/UCf8w5m0YsRa8MHQ5bwSGmbw/videos" -i | jq -r '[.id]|@csv' | wc -l
```
As mentioned in [this commit](https://gitea.lemnoslife.com/Benjamin_Loison/YouTube_captions_search_engine/commit/6f04109fe21434b4bf47176985d19676b987d06a), could give a try with date filters or [the YouTube operational API issue](https://github.com/Benjamin-Loison/YouTube-operational-API/issues/4).