1.0.0 • Published 5 years ago

chrome-performance-video v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

chrome-performance-video

make a webm video from a chrome performance profile.

image

try online

demo

docs

install

npm install chrome-performance-video
yarn add chrome-performance-video

usage

import performanceProfile from '../test/fixtures/performance-profile.json'

const video = await chromePerformanceVideo(performanceProfile)
const player = document.querySelector('#player')
player.src = URL.createObjectURL(video)
player.load()

license

MIT © KyuWoo Choi