Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 83
View file
ffx264.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Jun 13 02:30:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.7.1 + * Added support for the bm3d denoise filter + +------------------------------------------------------------------- Tue Jul 10 20:35:00 UTC 2018 - neutrino8@opensuse.org - Update to version 3.7.0
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 3.7.0 +Version: 3.7.1 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffx264-3.7.0.tar.gz/ChangeLog -> ffx264-3.7.1.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2019-06-13 - ffx264 3.7.1 + * Added support for the bm3d denoise filter + 2018-07-10 - ffx264 3.7.0 * Revert previous change. Linear transfer is already set in the $tonemap variable
View file
ffx264-3.7.0.tar.gz/ffx264 -> ffx264-3.7.1.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: 3.7.0 -# Date: 2018-07-10 +# Version: 3.7.1 +# Date: 2019-06-13 # # 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 "\e[0;33m$1\e[0;39;49m"; } error() { echo -e "\e[1;31m$1\e[0;39;49m"; } -version="3.7.0" +version="3.7.1" CFG="$HOME/.ffx264" cfgversion="34" @@ -640,6 +640,7 @@ echo " 0 -> hqdn3d (3D spatial & temporal denoiser)" echo " 1 -> vaguedenoiser (spatial wavelet denoiser)" echo " 2 -> atadenoise (adaptive temporal denoiser)" + echo " 3 -> bm3d (block-matching 3D denoiser)" echo printf "Which Denoiser to use? [default is 0]: " read dnopt @@ -668,6 +669,26 @@ test -z "$t_3" && ata_3="2a=0.08:2b=0.1" || ata_3="2a=$(echo "$t_3" | awk -F: '{print $1}'):2b=$(echo "$t_3" | awk -F: '{print $2}')" denoise="atadenoise=$ata_1$ata_2$ata_3," ;; + 3) + printf "Specify the Denoise Strength [0-999.9 - default is 3.5]: " + read ds + test -z "$ds" && sigma="3.5" || sigma="$ds" + printf "Specify the Local Patch Size [default is 4]: " + read lps + test -z "$lps" && block="4" || block="$lps" + printf "Specify the Sliding Step for Processing Blocks [1-64 - default is 2]: " + read sspb + test -z "$sspb" && bstep="2" || bstep="$sspb" + printf "Specify the Filtering Estimation Mode [basic/final - default is final]: " + read fem + test -z "$fem" && estim="final" || estim="$fem" + printf "Filter only the Luma planes? [y/N]: " + read fluma + if [ "$fluma" = "y" -o "$fluma" = "Y" ]; then + planes=":planes=1" + fi + denoise="bm3d=sigma=$sigma:block=$block:bstep=$bstep:estim=$estim$planes," + ;; *) error "-> Invalid option!" 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
.