Skip to content

Instantly share code, notes, and snippets.

@tayiorbeii
Created December 1, 2022 17:41
Show Gist options
  • Save tayiorbeii/a9c48f0e4eb4dc6d0cb5835a405564b3 to your computer and use it in GitHub Desktop.
Save tayiorbeii/a9c48f0e4eb4dc6d0cb5835a405564b3 to your computer and use it in GitHub Desktop.
import "@johnlindquist/kit"
/*
* Highlight the long video we are taking clips out of in Finder
*/
let longVideoFiles = await drop()
/**
* Tell kit we want to be working in the same directory as the source file
*/
cd(path.dirname(longVideoFiles[0].path))
for (let longVideoFile of longVideoFiles) {
await exec(`ffmpeg -i "${longVideoFile.path}" -b:a 96k -vn "${longVideoFile.path.slice(0,-4)}.mp3"`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment