Benjamin Loison

Results 599 comments of Benjamin Loison

Note that web-scraping seems more stable than YouTube Data API v3, see [this example](https://stackoverflow.com/questions/78531892/youtube-data-api-pagetoken-not-registering?noredirect=1#comment138453680_78531892). Especially as with web-scraping we can solve official API issues somehow without waiting a period of...

Should investigate private instances endpoint usage (web-scraping or no-key), but as #91 shows, the no-key endpoint may be faster but I think what people like is the unlimited quota, so...

Could provide a generic search engine with more parameters and results than YouTube Data API v3 and YouTube UI one. To answer Stack Overflow questions like: - [68970958](https://stackoverflow.com/q/68970958) - [79020278](https://stackoverflow.com/q/79020278)...

Searching Discord for `68970958` (from [the Stack Overflow question 68970958](https://stackoverflow.com/q/68970958)): https://discord.com/channels/933841502155706418/933841503103627316/1035959652397097021 Searching Discord for `69259093` (from [the Stack Overflow answer 69259093](https://stackoverflow.com/a/69259093)): https://discord.com/channels/933841502155706418/933841503103627316/1056343446983561237 https://discord.com/channels/933841502155706418/933841503103627316/1130914990531035186 https://discord.com/channels/933841502155706418/933841503103627316/1182870851939471380 https://discord.com/channels/933841502155706418/933841503103627316/1186345572681142412 https://discord.com/channels/933841502155706418/933841503103627316/1191082089488060507 https://discord.com/channels/933841502155706418/933841503103627316/1230120616481521756 https://discord.com/channels/933841502155706418/933841503103627316/1234545119420485723 https://discord.com/channels/933841502155706418/933841503103627316/1269030374248550400 https://discord.com/channels/933841502155706418/933841503103627316/1279158532846915624...

From a legal point of view people naturally navigating on YouTube UI may be more correct, see https://discord.com/channels/933841502155706418/1018941529265553488/1288909547028615259.

The following doesn't remove correctly `--compressed` curl parameter, as it may then output compressed data uncomparable with *wanted output* parameter (tested with https://www.youtube.com/feed/subscriptions): ```diff @@ -41,17 +45,19 @@ while True:...

Can use the following to add a pre-request that reset the website state. ```diff diff --git a/tools/minimizeCURL.py b/tools/minimizeCURL.py index 352c813..db2a8cc 100755 --- a/tools/minimizeCURL.py +++ b/tools/minimizeCURL.py @@ -28,6 +28,9 @@ removeUrlParameters...

Have `64 still fine` repeated 33 times when working with https://www.youtube.com/playlist?list=WL This issue happens when end up with `-H 'Cookie: '` in `minimizedCurl.txt` after removing all cookies. Unable to reproduce...

Could still simplify some cookies, as some websites such as YouTube put multiple values within a cookie, for instance: `PREF=f6=40000001&f7=140&hl=en&tz=Europe.Paris&f5=20000&f4=4000000&autoplay=true`.

Verify automatically the command that we are about to declare as minimized, as it may not be minimized as this command doesn't work anymore due to number of requests restrictions....