
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
interactivideo
Advanced tools
Interactivideo は、インタラクティブな動画再生を提供するライブラリです。スクロールに連動して動画を再生することな等ができます。
npm install interactivideo
<video id="player"></video>
import Interactivideo from 'interactivideo';
const player = new Interactivideo.Player('js-player', {
fps: 30 // 動画のfpsを指定します。
});
player.load('./video.mp4');
<canvas id="canvas-player" width="1920" height="1080"></canvas>
import Interactivideo from 'interactivideo';
const canvasPlayer = new Interactivideo.CanvasPlayer('js-canvas-player', {
dir: '/canvas-player-data/', // フレーム画像を格納するディレクトリを指定します。
fps: 30 // 動画のfpsを指定します。
});
canvasPlayer.load({
id: 'frames-1', // フレーム画像の識別子。ディレクトリ内のサブフォルダ名やキーとして利用されます。
extension: 'png', // 動画フレーム画像の拡張子。'jpg'、'png'、'webp' から選択してください。デフォルトはwebpです。
totalFrames: 100, // 全フレーム数。
callback: ()=>{
console.log('読み込みが完了しました。');
canvasPlayer.play(); // 動画を再生。
}
});
npm 上での詳細情報や最新バージョンについては、npm パッケージページ をご覧ください。
Interactivideo は MIT ライセンスの下で提供されています。 詳細については MIT License をご覧ください。
FAQs
Interactivideo は、インタラクティブな動画再生を提供するライブラリです。スクロールに連動して動画を再生することな等ができます。
We found that interactivideo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.