Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 884 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 884 Bytes

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