Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 205
View file
ffhevc.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Sun Feb 23 14:56:00 UTC 2020 - neutrino8@opensuse.org + +- Update to version 4.2.1 + * Use MPlayer for crop detection instead of FFmpeg which + seems to have issues with 4k/UHD content + +------------------------------------------------------------------- Thu Jan 16 15:49:00 UTC 2020 - neutrino8@opensuse.org - Update to version 4.2.0
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.2.0 +Version: 4.2.1 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.2.0.tar.gz/ChangeLog -> ffhevc-4.2.1.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2020-02-23 - ffhevc 4.2.1 + * Use MPlayer for crop detection instead of FFmpeg which + seems to have issues with 4k/UHD content + 2020-01-16 - ffhevc 4.2.0 * Minor optimizations to the default encoding options. Lower qcomp to 0.7
View file
ffhevc-4.2.0.tar.gz/ffhevc -> ffhevc-4.2.1.tar.gz/ffhevc
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.265/HEVC video using FFmpeg and libx265. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 4.2.0 -# Date: 2020-01-16 +# Version: 4.2.1 +# Date: 2020-02-23 # # ffhevc is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ brown() { echo -e "\e[0;33m$1\e[0;39;49m"; } error() { echo -e "\e[1;31m$1\e[0;39;49m"; } -version="4.2.0" +version="4.2.1" CFG="$HOME/.ffhevc" cfgversion="67" @@ -1669,7 +1669,8 @@ printf "Auto-Crop the Input Files? [y/N]: " read autocrop if [ "$autocrop" = "y" -o "$autocrop" = "Y" ]; then - CROPVAL="\$($FFMPEG -ss \$((\$VLENGTH/2)) -i \"\$i\" $vidmap -vf cropdetect=24:4 -frames:v 1000 -f null - 2>&1 | awk '/crop/ {print \$NF}' | awk -F= '{print \$2}' | tail -1)" + # CROPVAL="\$($FFMPEG -ss \$((\$VLENGTH/2)) -i \"\$i\" $vidmap -vf cropdetect=24:4 -frames:v 1000 -f null - 2>&1 | awk '/crop/ {print \$NF}' | awk -F= '{print \$2}' | tail -1)" + CROPVAL="\$($MPLAYER \"\$i\" -noconfig all -loop 1 -vid $vidtrack -frames 250 -ss \$((\$VLENGTH/2)) -vf cropdetect=24:4 -ao null -vo null -nocache 2>/dev/null | tr '\r' '\n' | grep 'crop=' | tail -n 1 | awk '{print \$9}' | sed 's|crop=||g; s|).||g')" crop="crop=\$CROPVAL," fi else @@ -1681,7 +1682,8 @@ else vlength="$VLENGTH" fi - CROPVAL="$($FFMPEG -ss $(($vlength/2)) -i "$input" $vidmap -vf cropdetect=24:4 -frames:v 1000 -f null - 2>&1 | awk '/crop/ {print $NF}' | awk -F= '{print $2}' | tail -1)" + # CROPVAL="$($FFMPEG -ss $(($vlength/2)) -i "$input" $vidmap -vf cropdetect=24:4 -frames:v 1000 -f null - 2>&1 | awk '/crop/ {print $NF}' | awk -F= '{print $2}' | tail -1)" + CROPVAL="$($MPLAYER "$input" -noconfig all -loop 1 -vid $vidtrack -frames 250 -ss $(($vlength/2)) -vf cropdetect=24:4 -ao null -vo null -nocache 2>/dev/null | tr '\r' '\n' | grep 'crop=' | tail -n 1 | awk '{print $9}' | sed 's|crop=||g; s|).||g')" if [ ! -z "$CROPVAL" ]; then green "-> Found crop values: $CROPVAL" else
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.