Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 183
View file
ffx264.changes
Changed
@@ -1,9 +1,16 @@ ------------------------------------------------------------------- +Mon Feb 23 05:15:00 UTC 2026 - microchip8@proton.me + +- Update to version 4.3.7 + * Minor update to the built-in script preset + * Add support for the Spline64 zimg scaler + +------------------------------------------------------------------- Thu Jan 22 11:15:00 UTC 2026 - microchip8@proton.me - Update to version 4.3.6 * Use more accurate crop detection by using rounding of - 4 instead of the default 16 + 4 instead of the default 16 ------------------------------------------------------------------- Sat Jan 10 10:30:00 UTC 2026 - microchip8@proton.me
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 4.3.6 +Version: 4.3.7 Release: %mkrel 1 Summary: A small shell script for encoding to H.264/AVC with FFmpeg License: GPL-2.0+
View file
ffx264-4.3.6.tar.gz/ChangeLog -> ffx264-4.3.7.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2026-02-23 - ffx264 4.3.7 + * Minor update to the built-in script preset + * Add support for the Spline64 zimg scaler + 2026-01-22 - ffx264 4.3.6 * Use more accurate crop detection by using rounding of 4 instead of the default 16
View file
ffx264-4.3.6.tar.gz/ffx264 -> ffx264-4.3.7.tar.gz/ffx264
Changed
@@ -4,8 +4,8 @@ # encoding to H.264/AVC video using FFmpeg and libx264. # # Author: Grozdan "microchip" Nikolov <microchip8@proton.me> -# Version: 4.3.6 -# Date: 2026-01-22 +# Version: 4.3.7 +# Date: 2026-02-23 # # ffx264 is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,10 +26,10 @@ brown() { echo -e "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.3.6" +version="4.3.7" CFG="$HOME/.ffx264" -cfgversion="47" +cfgversion="48" genconfig_func() { cat<<EOF>>"$CFG" @@ -89,7 +89,7 @@ # # Choose between: point, bilinear, # bicubic, spline16, spline36, -# lanczos3 and lanczos4 +# spline64, lanczos3 and lanczos4 # ZSCALER="" @@ -134,7 +134,7 @@ LOG="n" # libx264 parameters for the 'script' preset -X264PARAMS="force-cfr=1:bframes=6:ref=4:trellis=2:merange=32:direct-pred=auto:chroma-me=1:mbtree=1:me=umh:subme=11:b-adapt=2:aq-mode=2:aq-strength=1.0:psy=1:psy-rd=1.0,0.10:rc-lookahead=60:no-dct-decimate=1:weightb=1:weightp=2:mixed-refs=1:b-pyramid=normal:fast-pskip=0:deblock=-1,-1:8x8dct=1:cabac=1:partitions=p8x8,b8x8,i8x8,i4x4:threads=auto" +X264PARAMS="force-cfr=1:bframes=6:ref=4:trellis=2:merange=32:direct-pred=auto:chroma-me=1:mbtree=1:me=umh:subme=11:b-adapt=2:aq-mode=1:aq-strength=1.1:psy=1:psy-rd=1.0,0.10:rc-lookahead=80:no-dct-decimate=1:weightb=1:weightp=2:mixed-refs=1:b-pyramid=normal:fast-pskip=0:deblock=-1,-1:8x8dct=1:cabac=1:partitions=p8x8,b8x8,i8x8,i4x4:threads=auto" # Leave empty to auto-detect ffmpeg/ffprobe/mplayer # or set your custom ones (eg, /path/to/bin/ffmpeg) @@ -1925,19 +1925,21 @@ echo " 2 -> Bicubic" echo " 3 -> Spline16" echo " 4 -> Spline36" - echo " 5 -> Lanczos3" - echo " 6 -> Lanczos4" + echo " 5 -> Spline64" + echo " 6 -> Lanczos3" + echo " 7 -> Lanczos4" echo - printf "Specify the Software Scaler default is 4: " + printf "Specify the Software Scaler default is 5: " read swsopt case "$swsopt" in 0) zfilter="point" ;; 1) zfilter="bilinear" ;; 2) zfilter="bicubic" ;; 3) zfilter="spline16" ;; - 4|"") zfilter="spline36" ;; - 5) zfilter="lanczos"; zparam=":param_a=3" ;; - 6) zfilter="lanczos"; zparam=":param_a=4" ;; + 4) zfilter="spline36" ;; + 5|"") zfilter="spline64" ;; + 6) zfilter="lanczos"; zparam=":param_a=3" ;; + 7) zfilter="lanczos"; zparam=":param_a=4" ;; *) error "-> Invalide software scaler!" exit 1
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
.