Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 176
View file
ffx264.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Thu Jul 17 19:43:00 UTC 2025 - microchip8@proton.me + +- Update to version 4.3.0 + * Increased default noise value from 4 to 5 + * Fix wrong default option for tonemap algo + * Delete side data when doing HDR -> SDR conversion + * Updated the README and man page file + +------------------------------------------------------------------- Thu Jan 02 10:04:00 UTC 2025 - neutrino8@gmail.com - Update to version 4.2.13
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 4.2.13 +Version: 4.3.0 Release: %mkrel 1 Summary: A small shell script for encoding to H.264/AVC with FFmpeg License: GPL-2.0+
View file
ffx264-4.2.13.tar.gz/AUTHORS -> ffx264-4.3.0.tar.gz/AUTHORS
Changed
@@ -1,3 +1,3 @@ -- Grozdan Nikolov aka microchip <neutrino8@gmail.com> +- Grozdan Nikolov aka microchip <microchip8@proton.me> Author/maintainer/developer/packager
View file
ffx264-4.2.13.tar.gz/ChangeLog -> ffx264-4.3.0.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2025-06-04 - ffx264 4.3.0 + * Increased default noise value from 4 to 5 + * Fix wrong default option for tonemap algo + * Delete side data when doing HDR -> SDR conversion + * Updated the README and man page file + 2025-01-02 - ffx264 4.2.13 * Fixed a bug in the cropping code for batch encoding * Updated the built-in script preset
View file
ffx264-4.2.13.tar.gz/README -> ffx264-4.3.0.tar.gz/README
Changed
@@ -1,7 +1,6 @@ ffx264 is a small shell script for encoding to H.264/AVC video using -ffmpeg and the libx264 library. I wrote it for my own use as there -are some cases where my h264enc script has issues encoding some -Blu-ray remuxes. +ffmpeg and the libx264 library. I wrote it for my own use but share +it with others in the hope to be useful. Features: @@ -17,4 +16,4 @@ Donations: -PayPal address: neutrino8@gmail.com +PayPal address: microchip8@proton.me
View file
ffx264-4.2.13.tar.gz/ffx264 -> ffx264-4.3.0.tar.gz/ffx264
Changed
@@ -1,9 +1,9 @@ #!/usr/bin/env bash # # Small script to encode to H.264/AVC video using FFmpeg and libx264. -# Author: Grozdan "microchip" Nikolov <neutrino8@gmail.com> -# Version: 4.2.13 -# Date: 2025-01-02 +# Author: Grozdan "microchip" Nikolov <microchip8@proton.me> +# Version: 4.3.0 +# Date: 2025-06-04 # # 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.2.13" +version="4.3.0" CFG="$HOME/.ffx264" cfgversion="46" @@ -123,7 +123,7 @@ LOG="n" # libx264 parameters for the 'script' preset -X264PARAMS="force-cfr=1:bframes=8: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=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" # Leave empty to auto-detect ffmpeg/ffprobe/mplayer # or set your custom ones (eg, /path/to/bin/ffmpeg) @@ -882,9 +882,9 @@ printf "Add Temporal & Uniform Noise to the Input File? y/N: " read tun if "$tun" = "y" -o "$tun" = "Y" ; then - printf "Specify the Noise Strength 0-100 - default is 4: " + printf "Specify the Noise Strength 0-100 - default is 5: " read nvalue - test -z "$nvalue" && nval="4" || nval="$nvalue" + test -z "$nvalue" && nval="5" || nval="$nvalue" noise="noise=alls=$nval:allf=t+u," fi } @@ -1248,7 +1248,7 @@ echo " 5 -> Hable" echo " 6 -> Mobius" echo - printf "Specify the Tone Mapping Algorithm default is 4: " + printf "Specify the Tone Mapping Algorithm default is 6: " read tmaopt case "$tmaopt" in 0) tm_algo="none" ;; @@ -1359,7 +1359,7 @@ test ! -z "$satval" && eq="eq=saturation=$satval," fi fi - test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo$tm_param$tm_desat,$zscale," + test ! -z "$zscale" && tonemap="zscale=transfer=linear,tonemap=$tm_algo$tm_param$tm_desat,$zscale,sidedata=delete," test ! -z "$colorspace" && colorspace="$colorspace$wpadapt," fi fi
View file
ffx264-4.2.13.tar.gz/ffx264.1 -> ffx264-4.3.0.tar.gz/ffx264.1
Changed
@@ -3,7 +3,7 @@ .de IPs .IP "\\$1" .. -.TH ffx264 1 "Nov 27, 2024" +.TH ffx264 1 "Jun 04, 2025" .SH NAME ffx264 @@ -124,10 +124,10 @@ .SH AUTHORS .B ffx264 -was written by Grozdan Nikolov <neutrino8@gmail.com> +was written by Grozdan Nikolov <microchip8@proton.me> .SH BUG REPORTS -Please send all bug reports and/or questions/suggestions/donations to <neutrino8@gmail.com> +Please send all bug reports and/or questions/suggestions/donations to <microchip8@proton.me> .SH WWW https://ffx264.teambelgium.net
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
.