Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rodhfr/e8ad674f32dfd0795fd68eecac3ce5a3 to your computer and use it in GitHub Desktop.
Save rodhfr/e8ad674f32dfd0795fd68eecac3ce5a3 to your computer and use it in GitHub Desktop.
mkdir -p converted
for f in *.mp4; do
ffmpeg -hwaccel qsv -i "$f" -c:v hevc_qsv -c:a copy "converted/${f%.mp4}_hevc.mp4"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment