Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 151
View file
ffhevc.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Oct 16 05:20:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.8.9 + * Support the fftdnoiz denoise filter + +------------------------------------------------------------------- Tue Oct 15 03:57:00 UTC 2019 - neutrino8@opensuse.org - Update to version 3.8.8
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 3.8.8 +Version: 3.8.9 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with ffmpeg License: GPL-2.0+
View file
ffhevc-3.8.8.tar.gz/ChangeLog -> ffhevc-3.8.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2019-10-16 - ffhevc 3.8.9 + * Support the fftdnoiz denoise filter + 2019-10-15 - ffhevc 3.8.8 * Bugfix: use correct video mapping for crop detection * Cosmetics
View file
ffhevc-3.8.8.tar.gz/ffhevc -> ffhevc-3.8.9.tar.gz/ffhevc
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.265/HEVC video using FFmpeg and libx265. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 3.8.8 -# Date: 2019-10-15 +# Version: 3.8.9 +# Date: 2019-10-16 # # ffhevc 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.8" +version="3.8.9" CFG="$HOME/.ffhevc" cfgversion="46" @@ -680,8 +680,9 @@ 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]: " + printf "Which Denoiser to Use? [default is 0]: " read dnopt case "$dnopt" in 0|"") @@ -725,6 +726,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
.