Skip to content

Instantly share code, notes, and snippets.

@oclockvn
Last active July 25, 2023 01:09
Show Gist options
  • Save oclockvn/5931721e4dc837d3a22ae790e3318bb2 to your computer and use it in GitHub Desktop.
Save oclockvn/5931721e4dc837d3a22ae790e3318bb2 to your computer and use it in GitHub Desktop.
Bookmarklet to download ffmpeg
(function() {
const link = window.prompt(`Enter the link`);
if (!link) {
return;
}
const parts = link.split(' ');
prompt('Result:', `ffmpeg -i ${parts[1]} -map p:2? -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 "E${parts[0]}.mp4"`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment