Greasy Fork is available in English.

HTML5 비디오 플레이어 고급 스크립트

비디오 향상 스크립트는 Bilibili, Douyin, Tencent Video, Youku, iQiyi, Xigua Video, YouTube, Weibo Video, Zhihu Video, Sohu Video, NetEase Open Course, Baidu 네트워크 디스크, Alibaba 클라우드 디스크와 같은 모든 H5 비디오 웹사이트를 지원합니다. 테드, 인스타그램, 트위터 등 전체 바로 1가기 키 제어, 지원: 배속 재생/가속 재생, 비디오 스크린샷, PIP(Picture-in-Picture), 전체 화면 웹 페이지, 밝기, 채도, 대비, 사용자 정의 구성 향상 및 기타 기능 조정, 쾌적한 온라인 환경 제공 비디오 재생 경험. 비디오 광고, 온라인 자습서/교육 비디오 등을 빨리 감기하는 기능도 있습니다.

< 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);

댓글 남기기

댓글을 남기려면 로그인하세요.