Skip to content

Instantly share code, notes, and snippets.

@tayiorbeii
Created November 3, 2022 19:59
Show Gist options
  • Save tayiorbeii/1649596591b9ed3bade9f4fb47dfc1e1 to your computer and use it in GitHub Desktop.
Save tayiorbeii/1649596591b9ed3bade9f4fb47dfc1e1 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 160k -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