Skip to content

Instantly share code, notes, and snippets.

@dansp89
Created January 23, 2025 06:38
Show Gist options
  • Save dansp89/925aa8ca9553142c82b8f448a7705fdc to your computer and use it in GitHub Desktop.
Save dansp89/925aa8ca9553142c82b8f448a7705fdc to your computer and use it in GitHub Desktop.
Download blob with JS
const videoElement = document.querySelector('video');
if (videoElement && videoElement.src.startsWith('blob:')) {
const a = document.createElement('a');
a.href = videoElement.src;
a.download = 'video.mp4';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
} else {
console.error('ERROR blob not found!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment