Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 30
View file
ffxvid.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Jun 14 18:40:00 UTC 2018 - neutrino8@opensuse.org + +- Update to version 1.2.9 + * Added support for the bm3d denoise filter + +------------------------------------------------------------------- Mon Feb 26 20:52:00 UTC 2018 - neutrino8@opensuse.org - Update to version 1.2.8
View file
ffxvid.spec
Changed
@@ -1,7 +1,7 @@ # # spec file for package ffxvid # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.2.8 +Version: 1.2.9 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffxvid-1.2.8.tar.gz/ChangeLog -> ffxvid-1.2.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2019-06-14 - ffxvid 1.2.9 + * Added support for the bm3d denoise filter + 2018-02-26 - ffxvid 1.2.8 * Set the eq saturation default value to 1.0 (same as filter default) * Add the colorspace and colormatrix filters when doing an HDR
View file
ffxvid-1.2.8.tar.gz/ffxvid -> ffxvid-1.2.9.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.2.8 -# Date: 2018-02-26 +# Version: 1.2.9 +# Date: 2019-06-14 # # 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.2.8" +version="1.2.9" CFG="$HOME/.ffxvid" cfgversion="8" @@ -566,6 +566,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 @@ -594,6 +595,23 @@ 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 [4-6 - 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 "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$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
.