leoding86

Results 53 comments of leoding86

I can't reproduce save location the problem using the settings you provided. Are you sure the extension has the downloads permission? And other people mentioned the problem of the filename...

I don't use Linux as desktop, it seems like it can't build node-sass. I encountered the issue before, I just run `npm rebuild node-sass` for rebuilding node-sass then the problem...

@sakkamade Because using `yarn` to build application from fresh, it will use electron build scripts to build node-sass binary. And if you using `npm` to build node-sass will use another...

Simple explanation is that generating GIF is a high CPU-sensitive job in the extension, so it's normal. Complex explanation is that because the browser extension is created using javascript, so...

I kwon what's your meaning. The library of generating GIF I used is gif.js, you can go to the site https://jnordberg.github.io/gif.js/. There is a demo you can play. When you...

因为DEMO只是用了少数几张图片,所以以你的CPU只需要工作很短的时间就可以完成工作,所以反应不出来温度变高。以我的机器而言,使用的是非常老旧的CPU,i5-2540m,因为性能的问题,依旧需要工作一段时间完成生成工作,所以温度依旧会变得比较高,如果是在Pixiv上以现有的worker数量生成GIF,会导致CPU使用率长期维持在100%。 这个不是在我这个方面能解决的问题,使用javascript生产图片的操作会非常消耗系统算力,因为是软算没有任何硬件加速。 至于你说不在用了,那是你的选择。但是你可以试试生产apng的操作,因为只使用了一个worker,CPU的使用率应该会运行在一个相对较低的水平。这就是为什么我说我能做到的就是提供一个调整worker数量的设置。 补充一点:CPU在不考虑到变频的情况下,使用率越高通常温度是越高的。

不过我找到一个有意思的库gpu.js,可以是的js使用硬件加速。不过这个有些超出我的理解能力,需要花一些时间来学习和做一些库的移植工作。

Browser extension can't use any program language except javascript or use any external tool. I noticed that you have 4 cores which is at high temperature which are matched the...

I think I found a solution for resolve the issue. It's technical based on webassembly. I need to investigate more details and give it a try. We can wait and...

I tried to use ffmpeg to convert ugoira to gif, and I found that the results are different between different browsers. In Edge, ffmpeg needs more CPU to complete the...