Convert video .mov to .mp4

Open mov-to-mp4 in Script Kit

// Name: mov to mp4
// Description: Drop one mov file and it will export it to mp4 in the same directory
// Author: Luis Arce
// Twitter: @LuisArceParedes
import "@johnlindquist/kit"
let fileRef = await drop()
const targetExtension = ".mp4";
const { path } = fileRef[0];
const pathWithOutExtension = path.split(".")[0];
await $`ffmpeg -i ${path} ${pathWithOutExtension}${targetExtension}`

Prerequisites:

  1. Install ffmpeg to use the terminal to convert the file. You can use brew: brew install ffmpeg
  2. Kit: Sync $PATH from Terminal to Kit.app

Example using it:

https://github.com/johnlindquist/kit/assets/13188414/0959108e-be58-4787-88be-ac8ab988f04f