Published
Edited
Oct 5, 2020
22 stars
Insert cell
Insert cell
Insert cell
Insert cell
video = svg`<svg width=400 height=300>
${colorFilter}

<foreignObject width=400 height=300 filter=url(#color)>
<video width=400 autoplay loop muted crossorigin=anonymous>
<source src="${videoSrc}">
</video>
</foreignObject>

</svg>
`
Insert cell
colorFilter = !scale
? '<filter id=color />'
: filter('color', scales[scale], {
invert: options.includes('invert'),
steps: options.includes('quantize') ? 5 : null,
})
Insert cell
videoSrc = options.includes('cors') ? 'https://i.imgur.com/bG8t8iJ.mp4' : FileAttachment('video.mp4').url()
Insert cell
Insert cell
// Use a global playback offset to avoid restarts when changing options.
video.querySelector('video').addEventListener('play', function() {
this.currentTime = Date.now()/1000 % this.duration;
})
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more