This commit is contained in:
2026-01-19 21:36:25 -05:00
parent f28c54f610
commit 04fd09550a
52 changed files with 1743 additions and 0 deletions

12
bin/wsl/findnon_hcodec.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
echo "Media to convert to h.264"
echo "--------------------"
for i in `ls`
do
OUTPUTh264=`ffmpeg -i $i 2>&1 | egrep 'h264'`
OUTPUTh265=`ffmpeg -i $i 2>&1 | egrep 'hevc'`
if [[ ( -z "$OUTPUTh264" ) && ( -z "$OUTPUTh265" ) ]]; then
echo " "
echo $i
fi
done