Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 86
View file
ffxvid.changes
Changed
@@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Sat Dec 28 15:40:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 1.6.2 + * Add support for the noise video filter. Can be beneficial + on (very) clean sources by applying some noise to avoid + things like color/light banding in the encode + +------------------------------------------------------------------- Mon Nov 11 13:51:00 UTC 2019 - neutrino8@opensuse.org - Update to version 1.6.1
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.6.1 +Version: 1.6.2 Release: 0 Summary: A small shell script for encoding to Xvid with FFmpeg License: GPL-2.0+
View file
ffxvid-1.6.1.tar.gz/ChangeLog -> ffxvid-1.6.2.tar.gz/ChangeLog
Changed
@@ -1,3 +1,8 @@ +2019-12-28 - ffxvid 1.6.2 + * Add support for the noise video filter. Can be beneficial + on (very) clean sources by applying some noise to avoid + things like color/light banding in the encode + 2019-11-11 - ffxvid 1.6.1 * Added support for the (newer) deblock filter
View file
ffxvid-1.6.1.tar.gz/ffxvid -> ffxvid-1.6.2.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.6.1 -# Date: 2019-11-11 +# Version: 1.6.2 +# Date: 2019-12-28 # # 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,10 +24,10 @@ brown() { echo -e "\e[0;33m$1\e[0;39;49m"; } error() { echo -e "\e[1;31m$1\e[0;39;49m"; } -version="1.6.1" +version="1.6.2" CFG="$HOME/.ffxvid" -cfgversion="14" +cfgversion="15" genconfig_func() { cat<<EOF>>"$CFG" @@ -84,6 +84,7 @@ # Video filters VID_DENOISE="y" +VID_NOISE="y" VID_DEBLOCK="y" VID_SHARPEN="y" VID_ROTATE="y" @@ -740,6 +741,17 @@ fi } +video_noise_func() { + printf "Add Temporal & Uniform Noise to the Input File? [y/N]: " + read tun + if [ "$tun" = "y" -o "$tun" = "Y" ]; then + printf "Specify the Noise Strength [0-100 - default is 2]: " + read nvalue + test -z "$nvalue" && nval="2" || nval="$nvalue" + noise="noise=alls=$nvalue:allf=t+u," + fi +} + video_deblock_func() { printf "Deblock the Input File? [y/N]: " read db @@ -1388,6 +1400,7 @@ read postproc if [ "$postproc" = "y" -o "$postproc" = "Y" ]; then test "$VID_DENOISE" = "y" && video_denoise_func + test "$VID_NOISE" = "y" && video_noise_func test "$VID_DEBLOCK" = "y" && video_deblock_func test "$VID_SHARPEN" = "y" && video_sharpen_func test "$VID_DEINTERLACE" = "y" && video_deinterlace_func @@ -3348,7 +3361,7 @@ test "$CHAPS" = "n" && CHAPS="-map_chapters -1" || CHAPS="-map_chapters 0" -vidfilters="$(echo "$deinterlace$detelecine$tonemap$crop$deblock$denoise$scale$colorspace$unsharp$eq$rotate$pixformat$setpts$fps$framestep$subtitles" | sed 's|,$||')" +vidfilters="$(echo "$deinterlace$detelecine$tonemap$crop$deblock$denoise$scale$noise$colorspace$unsharp$eq$rotate$pixformat$setpts$fps$framestep$subtitles" | sed 's|,$||')" test ! -z "$vidfilters" && vfilters="-vf $vidfilters"
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
.