HTML5視頻播放器增強腳本

視頻增強腳本,支持所有H5視頻網站,例如:B站、抖音、騰訊視頻、優酷、愛奇藝、西瓜視頻、油管(YouTube)、微博視頻、知乎視頻、搜狐視頻、網易公開課、百度網盤、阿里雲盤、ted、instagram、twitter等。全程快捷鍵控制,支持:倍速播放/加速播放、視頻畫面截圖、畫中畫、網頁全屏、調節亮度、飽和度、對比度、自定義配置功能增強等功能,為你提供愉悅的在線視頻播放體驗。還有視頻廣告快進、在線教程/教育視頻倍速快學、視頻文件下載等能力

< 腳本HTML5視頻播放器增強腳本的回應

評論:正評 - 腳本一切正常

§
發表於:2024-02-17

Great script and I've been using it for a long while but I was wondering... I think we were able to screenshot a moment in video as PNG format (also known as saving it losslessly), but after a certain update it changed into saving as JPG/JPEG format instead, is there any chance to revert it back to PNG?

ankvps作者
§
發表於:2024-02-18
§
發表於:2024-02-19

Hello

Whoa, it sounds like a really great script to enhance HTML5 video players! It's very amazing how many different video websites it supports, including well-known ones like YouTube, Tencent Video, and Instagram. Additionally, there are many features available, including picture-in-picture, double-speed playback, complete shortcut key control, and brightness, saturation, and contrast adjustments. Anyone watching videos online seems to have a much better experience with this script. I appreciate you giving this information.

Regards
David Warner
https://www.prestigerockcliff.org.in/

§
發表於:2024-02-25

You have to manually edit the script, it's really easy to do. Go to line 3698, you will find the following code:

    el.download = `${title}.jpg`;
    el.href = URL.createObjectURL(blob);
    el.click();
  }, 'image/jpeg', 0.99);

You just have to replace the words "jpg" and "jpeg" with "png". The result should be like this:

   el.download = `${title}.png`;
    el.href = URL.createObjectURL(blob);
    el.click();
  }, 'image/png', 0.99);

發表回覆

登入以回復