Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 57
View file
ffxvid.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Oct 16 05:20:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 1.4.5 + * Support the fftdnoiz denoise filter + +------------------------------------------------------------------- Tue Oct 15 03:57:00 UTC 2019 - neutrino8@opensuse.org - Update to version 1.4.4
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.4.4 +Version: 1.4.5 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffxvid-1.4.4.tar.gz/ChangeLog -> ffxvid-1.4.5.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2019-10-16 - ffxvid 1.4.5 + * Support the fftdnoiz denoise filter + 2019-10-15 - ffxvid 1.4.4 * Use correct video mapping for crop detection
View file
ffxvid-1.4.4.tar.gz/ffxvid -> ffxvid-1.4.5.tar.gz/ffxvid
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to Xvid video using FFmpeg. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 1.4.4 -# Date: 2019-10-15 +# Version: 1.4.5 +# 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="1.4.4" +version="1.4.5" CFG="$HOME/.ffxvid" cfgversion="10" @@ -617,6 +617,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 @@ -662,6 +663,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
.