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

12 lines
195 B
Bash
Executable File

#!/bin/sh
echo "h265 media:"
echo "--------------------"
for i in `ls`
do
OUTPUT="$(ffmpeg -i $i 2>&1 | egrep ' hevc ')"
if [ ! -z "$OUTPUT" ]; then
echo " "
echo $i
fi
done