Results 179 comments of Kagami

> it runs without performing typechecking. Do you know how to enable it? I believe it's by design. For my use case (unit tests) it's perfect. Also you can check...

Same issue. Basically you can't properly migrate from npm to yarn at the moment because lock file import doesn't work. If you just run `yarn install` it will install different...

It might be possible to display videos by generating HTML with `` tag in it: https://github.com/Marginal/QLVideo/issues/3#issuecomment-871802115 But of course it will only display the file types which Safari supports. So...

> if there are many files in a folder that QLVideo has to create thumbnails for, the thumbnailer process sometimes gets stuck and is using up 300% of the CPU...

`killall -9 com.apple.quicklook.ThumbnailsAgent` helps to unstuck thumbnailer on my machine (but be cautious with that command, not sure if it's safe).

Yes, ffmpeg [has DSD decoder](https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/dsddec.c). And I can play these files with mpv (which uses libavcodec underneath). So possible to add to ffmpeg.js. It would be better to compile some...

Hm, no, https://github.com/szechyjs/dsd is something different. But you get my point. Compile the minimal decoder to JS and create Aurora.js plugin. Here is example: https://github.com/audiocogs/flac.js/tree/master/src You need to implement demuxer...

@Lumerica, yea, I've seen few aborted downloads while testing too, but thought it were just dead links and left unattended. But you're right, it might be caused by high concurrency...

Nice. I will try to increase timeouts then and check if that helps.