Skip to content

Instantly share code, notes, and snippets.

@instantiator
Created July 3, 2026 12:03
Show Gist options
  • Select an option

  • Save instantiator/d24ecee0138051cb21347bb7bc07a28c to your computer and use it in GitHub Desktop.

Select an option

Save instantiator/d24ecee0138051cb21347bb7bc07a28c to your computer and use it in GitHub Desktop.
Check video files for corruption
#!/bin/bash
# usage: ./check-video.sh <filename>
# uses ffmpeg to run through the file, reports errors as it finds them
ffmpeg -i $1 -vcodec copy -acodec copy -f null -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment