Skip to content

Instantly share code, notes, and snippets.

@chutaicho
Created April 2, 2021 01:56
Show Gist options
  • Save chutaicho/cdc40d09c9fe72e29d5351c64703b2b2 to your computer and use it in GitHub Desktop.
Save chutaicho/cdc40d09c9fe72e29d5351c64703b2b2 to your computer and use it in GitHub Desktop.
a ffmpeg command to encodes any movie file into ProRes format.
#!/bin/bash
ffmpeg -i $1.mov -c:v prores -profile:v 3 -c:a pcm_s16le $1-ProResHQ.mov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment