Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 154
View file
ffx264.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Aug 17 03:35:00 UTC 2023 - neutrino8@opensuse.org + +- Update to version 4.1.10 + * Fix crop detection for HDR content + * Set Lanczos as default scaler option + +------------------------------------------------------------------- Fri May 05 04:02:00 UTC 2023 - neutrino8@opensuse.org - Update to version 4.1.9
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 4.1.9 +Version: 4.1.10 Release: 1 Summary: A small shell script for encoding to H.264/AVC with FFmpeg License: GPL-2.0+
View file
ffx264-4.1.9.tar.gz/ChangeLog -> ffx264-4.1.10.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2023-08-17 - ffx264 4.1.10 + * Fix crop detection for HDR content + * Set Lanczos as default scaler option + 2023-05-05 - ffx264 4.1.9 * Update default encoding options * Bump up default CRF value from 19 to 21
View file
ffx264-4.1.9.tar.gz/ffx264 -> ffx264-4.1.10.tar.gz/ffx264
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.264/AVC video using FFmpeg and libx264. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 4.1.9 -# Date: 2023-05-05 +# Version: 4.1.10 +# Date: 2023-08-17 # # ffx264 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 "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.1.9" +version="4.1.10" CFG="$HOME/.ffx264" cfgversion="42" @@ -1622,7 +1622,7 @@ 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 -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 @@ -1635,7 +1635,7 @@ 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 -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 if ! -z "$CROPVAL" ; then green "-> Found crop values: $CROPVAL" @@ -1710,7 +1710,7 @@ sws_func() { case "$1" in config) swsopt="$SCALER" ;; - script) test -z "$swsopt" && swsopt="9" || swsopt="$swsopt" ;; + script) test -z "$swsopt" && swsopt="8" || swsopt="$swsopt" ;; esac case "$swsopt" in 0) scaler="fast_bilinear" ;; @@ -1750,7 +1750,7 @@ echo " 9 --> Natural Bicubic Spline" echo " 10 -> Experimental" echo - printf "Sepcify the Software Scaler default is 9: " + printf "Sepcify the Software Scaler default is 8: " read swsopt sws_func script else @@ -1811,8 +1811,8 @@ else swscaler="Lanczos" swsval="1-10" - swsdef="1" - swstype="Filter Length" + swsdef="3" + swstype="Width (alpha)" fi printf "Specify the $swscaler scaler $swstype $swsval - default is $swsdef: " read swstune
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
.