Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save heavyengineer/989f97de3840bfcc2060515a7e5aee3b to your computer and use it in GitHub Desktop.
Save heavyengineer/989f97de3840bfcc2060515a7e5aee3b to your computer and use it in GitHub Desktop.
ffmpeg transcode gopro hero7 hevc libx264 to something kodi can display
for f in *.MP4
do
ffmpeg -i ${f} -c:v libx264 -crf 28 -c:a aac -b:a 128k ${f}.mp4
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment