Files
shellfiles/bin/wsl/findmedium_media.sh
2026-01-19 21:36:25 -05:00

13 lines
288 B
Bash
Executable File

#!/bin/sh
echo "Medium 1280|1440 media:"
echo "--------------------"
for i in `ls`
do
OUTPUT1280=`ffmpeg -i $i 2>&1 | egrep '1280x'`
OUTPUT1440=`ffmpeg -i $i 2>&1 | egrep '1440x'`
if [[ ( -n "$OUTPUT1280" ) || ( -n "$OUTPUT1440" ) ]]; then
echo " "
echo $i
fi
done