Guido Cella

Results 251 comments of Guido Cella

As a workaround, you can pass a different `HOME` to intelephense. With neovim: ```lua lspconfig.intelephense.setup{ cmd = { 'env', 'HOME=/tmp', 'intelephense', '--stdio' }, ```

Can't you juse use `quit-watch-later`?

You can use this script: https://github.com/mpv-player/mpv/issues/2595#issuecomment-808723731

It's better to use `mp.set_property("file-local-options/` to not affect other playlist entries.

`yt-dlp` is already used instead of `youtube-dl` if it is installed, the issue is that youtube throttles requests of more than 10MB at a time, yt-dlp works around it by...

Um, I thought this was the mpv repo lol. What I wrote I still correct if you copy URLs and open them in mpv but I don't think you can...

It should work with `yt-dlp --sponsorblock-remove foo -o - https://... | mpv -`.

You can use yt-dlp on the first try with `--script-opts-append=ytdl_hook-try_ytdl_first=yes`. To increase the download speed see https://github.com/mpv-player/mpv/issues/8655#issuecomment-1199733728

That seems harder as you would have to instruct ffmpeg on which URLs to download. mpv already gets the 10M `http-chunk-size` from `yt-dlp -J`, and ffmpeg already implements `-offset` and...

Also you can use https://github.com/mpv-player/mpv/issues/9042#issuecomment-886113926 to ensure fast yt-dlp playback without breaking media URLs.