alopatindev

Results 21 comments of alopatindev

Couldn't reproduce it. That might be a `yt-dlp`-related issue. If you run `mpv -v --msg-level=ytdl_hook=debug,sponsorblock=debug https://www.youtube.com/watch?v=KrLj6nc516A` — does anything unusual happen in console when loading stops?

> can you reproduce with my portable-config file attached to the issue I don't see any attachments to this issue, can you add it please? Thanks!

Thanks! I tried to reproduce with the portable config; in my case there were no loading issues during segment skipping, but I noticed a freeze for several seconds after seeking...

Looks like overlapping segments issues exist in original browser extension as well ([1](https://github.com/ajayyy/SponsorBlock/issues/1279), [2](https://github.com/ajayyy/SponsorBlock/issues/686), [3](https://github.com/ajayyy/SponsorBlock/issues/1077)) But could this specific issue reproduce due to ignored categories? For me these settings give...

```patch --- mpv_thumbnail_script_server.lua.orig 2023-07-22 01:42:57.871211720 +0800 +++ mpv_thumbnail_script_server.lua 2023-07-22 01:37:37.238213677 +0800 @@ -522,7 +522,7 @@ "--vf-add=format=bgra", "--of=rawvideo", "--ovc=rawvideo", - "--o", output_path + "--o=" .. output_path }) return utils.subprocess({args=mpv_command}) end ```...

Not sure what exactly this feature would do right now if it existed, because currently all messages are grouped by file names and sorted by lines. Maybe you mean you...

Wow, the solution is pretty verbose and harder to debug than I initially thought. Possible alternative is completely rely on quickfix list (even though the quickfix list window is not...

Taking into account that `Currency` and `Money` are currently `Copy` it seems there's no reason why they are still references. Also `Decimal` is `Copy` but `Money::amount` returns reference too. What's...

Sadly that's probably the only working way to parse cryptocurrency amounts returned by [etherscan API](https://docs.etherscan.io/api-endpoints/accounts#get-ether-balance-for-a-single-address) right now: ```rust let balance = "40891626854930000000000".parse::().unwrap(); // doesn't fit into i64, so we can't...