I had thousands of video files on an S3 bucket, but no record of their file sizes or video meta details ( resolution, encoding, container, etc..) This quick little bash script will use ffprobe to read the meta details from the S3 file without downloading the entire file locally. #!/bin/bash ## Usage: ./get-video-sizes.sh while IFS=”” read […]