Sepehr Kalanaki
Sepehr Kalanaki
[My game engine](https://github.com/OverShifted/OverEngine)'s Dark theme:  ```c++ ImGuiStyle& style = ImGui::GetStyle(); style.Colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); style.Colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); style.Colors[ImGuiCol_WindowBg] = ImVec4(0.13f, 0.14f, 0.15f, 1.00f); style.Colors[ImGuiCol_ChildBg]...
Hi. In the JSON standard; only string keys are allowed. you can't use other things like a JSON object as a key, even though it is possible as a value...
@allenrosed Without compression, each frame takes about 600MB and each sticker takes about 27GB. Each frame is a fully red 15000x1500 image. So it can be compressed a lot, but...
@allenrosed I found the dimension using my browser's inspector (on the Webk client). I found the same dimension after using the "Export chat history" item. (which saved the sticker as...
It seems like the youtube extractor sends at least one request to youtube. I've added `r'(?:www\.)?yt\.artemislena\.eu'` to `_INVIDIOUS_SITES`. And also added `print("self._downloader.urlopen called with", url_or_request)` before [this line](https://github.com/ytdl-org/youtube-dl/blob/604762a9f8fa21de3f7349bd612c4f34941a5d20/youtube_dl/extractor/common.py#L635). And here...
In my case, no. That's why I implemented [`_patch_url`](https://github.com/ytdl-org/youtube-dl/pull/31426/files#diff-7b2e18c7c08d9acd2268cf70d88f87dd65654f53303febdd961c495db3abd7b3R93). But even if googlevideo.com was accessible, I wouldn't be able to extract the download link in the first place.
IMHO, when a user gives yt-dl an invidious link, he/she probably wants to download from invidious servers. Because otherwise, he/she could just "convert" that to a youtube link. (just replace...
Don't `|` and `||` have the same effect here?
Oh, you are right.
This is one of the useless errors (and warnings) only happening on NVIDIA GPUs and safe to ignore. more on that here: https://stackoverflow.com/a/13201020