Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 181
View file
ffx264.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Sat Jan 10 10:30:00 UTC 2026 - microchip8@proton.me + +- Update to version 4.3.5 + * Fix VBV maxrate/bufsize code + +------------------------------------------------------------------- Tue Dec 30 12:13:00 UTC 2025 - microchip8@proton.me - Update to version 4.3.4
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 4.3.4 +Version: 4.3.5 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.4.tar.gz/ChangeLog -> ffx264-4.3.5.tar.gz/ChangeLog
Changed
@@ -1,4 +1,7 @@ -2025-12-30- ffx264 4.3.4 +2026-01-10 - ffx264 4.3.5 + * Fix VBV maxrate/bufsize code + +2025-12-30 - ffx264 4.3.4 * Add support for detecting type of content (SDR/HDR10/DoVi) * Minor tweaks to the lanczos3/4 zscale filter code
View file
ffx264-4.3.4.tar.gz/ffx264 -> ffx264-4.3.5.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.4 -# Date: 2025-12-30 +# Version: 4.3.5 +# Date: 2026-01-10 # # 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,7 +26,7 @@ brown() { echo -e "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.3.4" +version="4.3.5" CFG="$HOME/.ffx264" cfgversion="47" @@ -768,10 +768,15 @@ if "$vbv" = "y" -o "$vbv" = "Y" ; then printf "Specify the VBV Maxrate in kbps default is 5000: " read vbv_max - test -z "$vbv_max" && vbv_maxrate=":vbv_maxrate=5000"; ffvbv_maxrate="-maxrate 5000k" || vbv_maxrate=":vbv_maxrate=$vbv_max"; ffvbv_maxrate="-maxrate ${vbv_max}k" + test -z "$vbv_max" && vbvmax="5000" || vbvmax="$vbv_max" + vbv_maxrate=":vbv_maxrate=$vbvmax" + ffvbv_maxrate="-maxrate ${vbvmax}k" + printf "Specify the VBV Buffer Size in kbps default is 6000: " read vbv_buf - test -z "$vbv_buf" && vbv_bufsize=":vbv_bufsize=6000"; ffvbv_bufsize="-bufsize 6000k" || vbv_bufsize=":vbv_bufsize=$vbv_buf"; ffvbv_bufsize="-bufsize ${vbv_buf}k" + test -z "$vbv_buf" && vbvbuf="6000" || vbvbuf="$vbv_buf" + vbv_bufsize=":vbv_bufsize=$vbvbuf" + ffvbv_bufsize="-bufsize ${vbvbuf}k" fi printf "Set the Maximum Decoder Level? y/N: "
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
.