Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 165
View file
ffx264.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Wed Nov 06 10:28:00 UTC 2024 - neutrino8@gmail.com + +- Update to version 4.2.6 + * Replaced the detelecine filter with a combination + of the fieldmatch, bwdif and decimate filters + * Use 0 as default value for the tonemap desat + filter option + +------------------------------------------------------------------- Sun Nov 03 13:46:00 UTC 2024 - neutrino8@gmail.com - Update to version 4.2.5
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 4.2.5 +Version: 4.2.6 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.5.tar.gz/ChangeLog -> ffx264-4.2.6.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2024-11-06 - ffx264 4.2.6 + * Replaced the detelecine filter with a combination + of the fieldmatch, bwdif and decimate filters + * Use 0 as default value for the tonemap desat + filter option + 2024-11-03 - ffx264 4.2.5 * Support copying full DTS-X audio or only the DTS core
View file
ffx264-4.2.5.tar.gz/ffx264 -> ffx264-4.2.6.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@gmail.com> -# Version: 4.2.5 -# Date: 2024-11-03 +# Version: 4.2.6 +# Date: 2024-11-06 # # 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.5" +version="4.2.6" CFG="$HOME/.ffx264" cfgversion="43" @@ -1104,16 +1104,16 @@ if "$detel" = "y" -o "$detel" = "Y" ; then video_field_parity_func printf "Specify the Field Parity of the Input File tff/bff - default is $defpar: " - read ipar - test -z "$ipar" && fparity="$defpar" || fparity="$ipar" + read inpar + test -z "$inpar" && fparity="$defpar" || fparity="$inpar" case "$fparity" in - b*|B*) forder="bottom" ;; - ""|*) forder="top" ;; + b*|B*) field="bottom" ;; + *) field="top" ;; esac - printf "Specify the Pulldown Pattern to Apply default is 23: " - read pdp - test -z "$pdp" && pulldown="23" || pulldown="$pdp" - detelecine="detelecine=first_field=$forder:pattern=$pulldown," + printf "Specify the Field to Match From top/bottom - default is $field: " + read fmf + test -z "$fmf" && fmatch="$field" || fmatch="$fmf" + detelecine="fieldmatch=order=$fparity:field=$fmatch:combmatch=full,bwdif=deint=interlaced,decimate," fi fi } @@ -1277,9 +1277,9 @@ read tmparam test ! -z "$tmparam" && tm_param=":param=$tmparam" - printf "Specify the Tonemap Desaturation Strength default is 2.8: " + printf "Specify the Tonemap Desaturation Strength default is 0.0: " read desat - test -z "$desat" && tm_desat=":desat=2.8" || tm_desat=":desat=$desat" + test -z "$desat" && tm_desat=":desat=0" || tm_desat=":desat=$desat" echo video_chars_func vchars echo
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
.