Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 110
View file
ffx264.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Oct 16 05:20:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.8.8 + * Support the fftdnoiz denoise filter + +------------------------------------------------------------------- Tue Oct 15 03:57:00 UTC 2019 - neutrino8@opensuse.org - Update to version 3.8.7
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 3.8.7 +Version: 3.8.8 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffx264-3.8.7.tar.gz/ChangeLog -> ffx264-3.8.8.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2019-10-16 - ffx264 3.8.8 + * Support the fftdnoiz denoise filter + 2019-10-15 - ffx264 3.8.7 * Bugfix: use correct video mapping for crop detection
View file
ffx264-3.8.7.tar.gz/ffx264 -> ffx264-3.8.8.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.8.7 -# Date: 2019-10-15 +# Version: 3.8.8 +# Date: 2019-10-16 # # 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.8.7" +version="3.8.8" CFG="$HOME/.ffx264" cfgversion="36" @@ -691,6 +691,7 @@ echo " 1 -> vaguedenoiser (spatial wavelet denoiser)" echo " 2 -> atadenoise (adaptive temporal denoiser)" echo " 3 -> bm3d (block-matching 3D denoiser)" + echo " 4 -> fftdnoiz (FFT denoiser)" echo printf "Which Denoiser to use? [default is 0]: " read dnopt @@ -736,6 +737,15 @@ fi denoise="bm3d=sigma=$sigma:block=$block:bstep=$bstep$planes," ;; + 4) + printf "Specify the Denoise Strength [0-30 - default is 4]: " + read ds + test -z "$ds" && sigma="4" || sigma="$ds" + printf "Specify the Block Overlap [0.2-0.8 - default is 0.5]: " + read bo + test -z "$bo" && overlap="0.5" || overlap="$bo" + denoise="fftdnoiz=sigma=$sigma:overlap=$overlap," + ;; *) 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
.