I want the MD5 sum of every file to be changed, I'm thinking the best/easiest option is to add a single byte to every file (jpg, mp4, mpeg, etc) in the folder.
Anyone have a script that does this on Windows or software for it?
With Bash you can do this as follows:
for x in *; do printf '\0' >> $x; done
Note however that some formats will not expect an extra byte at the end of the file, and depending on the reader you'll be using those files may be reported as corrupt.