1
0
Fork 0

update identify resolution

This commit is contained in:
VirtuBox 2020-10-08 18:23:23 +02:00
parent 380b9f8ebf
commit 3e8cff8569
Signed by: virtubox
GPG Key ID: 22EB296C97BAD476
1 changed files with 4 additions and 2 deletions

View File

@ -812,8 +812,10 @@ _strip_audio() {
_identify_resolution() {
for i in "$PWD"/*.mp4; do
height=$(ffprobe -v error -print_format json -show_format -show_streams -show_chapters "$i" | jq .streams[0] | jq -r .height)
mv "$i" "${i%.*}-$height.mp4"
if ! echo "$i" | grep -qE "240|480|720|1080|1440|2160"; then
height=$(ffprobe -v error -print_format json -show_format -show_streams -show_chapters "$i" | jq .streams[0] | jq -r .height)
mv "$i" "${i%.*}-$height.mp4"
fi
done
}