Fabian Wunsch

Results 10 comments of Fabian Wunsch

Probably ever since I have used this library, I occasionally had downloads that ran at speeds of ~65k, and just restarting the download (thanks to closing the channel), fixed this...

After reading through the youtube-dl issue I got to [this working implementation](https://github.com/iv-org/invidious/pull/2222) and a [notable comment](https://github.com/ytdl-org/youtube-dl/issues/29326#issuecomment-873460968) from the pytube maintainer.

@DzenanJupic One thing I don't understand is, why the duration between both requests should be so different. 1692.525 to 229.270 just seems a bit strange.

For the video `5jlI4uzZGjU`: Using another youtube player, called NewPipe, I experienced that it couldn't play Music videos, but could play other videos at the same time. That's why I...

I just looked through their source code (the app is still working), and at least at one location they still use get_video_info url's. I don't know if this is their...

I just tested to set `is_age_restricted` to true all the time, but unfortunately that doesn't solve the issue.

That is indeed what you get on the gnome console or Konsole. But in ASCII, 0x08 or ^H is defined as backspace. i.e. if you go to a shell and...

[Gnome console bug](https://bugzilla.gnome.org/show_bug.cgi?id=733246) and [Konsole bug](https://bugs.kde.org/show_bug.cgi?id=391075) so it seems like all major Unix terminals have this behavior

Yes, it recursively iterates all albums if you press the plus button, just like folders are already iterated if you press the plus in the file view

One issue I see with ```python chonker = open("rig","r") text = str(chonker) tree = ast.parse(text) print(ast.to_pretty_str(tree)) ``` is, that this is never actually reading the file. if you want to...