Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 176
View file
ffhevc.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Sat Nov 02 13:55:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 4.0.3 + * Merged two case statements in the metadata code for mkv/mp4/mov + * Support dithering when downscaling to 8-bit pixels + +------------------------------------------------------------------- Tue Oct 29 06:17:00 UTC 2019 - neutrino8@opensuse.org - Update to version 4.0.2
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.0.2 +Version: 4.0.3 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.0.2.tar.gz/ChangeLog -> ffhevc-4.0.3.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2019-11-02 - ffhevc 4.0.3 + * Merged two case statements in the metadata code for mkv/mp4/mov + * Support dithering when downscaling to 8-bit pixels + 2019-10-29 - ffhevc 4.0.2 * Removed an unneeded check for audio codec in the conerror_func() function
View file
ffhevc-4.0.2.tar.gz/ffhevc -> ffhevc-4.0.3.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: 4.0.2 -# Date: 2019-10-29 +# Version: 4.0.3 +# Date: 2019-11-02 # # 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="4.0.2" +version="4.0.3" CFG="$HOME/.ffhevc" cfgversion="50" @@ -673,11 +673,7 @@ printf "Specify the Cast of the Content [press 'Enter' to skip]: " read cast test ! -z "$cast" && METACAST="-metadata cast=\"$cast\"" - ;; -esac - -case "$CONFMT" in - mkv|mp4|mov) + printf "Specify a Cover Image in JPG/PNG format [press 'Enter' to skip]: " read -e cover if [ ! -z "$cover" ]; then @@ -728,6 +724,12 @@ test -z "$vbv_buf" && vbv_bufsize=":vbv_bufsize=6000"; ffvbv_bufsize="-bufsize 6000k" || vbv_bufsize=":vbv_bufsize=$vbv_buf"; ffvbv_bufsize="-bufsize ${vbv_buf}k" fi +printf "Enable Dither for Downscaling to 8-bit pixels? [y/N]: " +read dith +if [ "$dith" = "y" -o "$dith" = "Y" ]; then + dither=":dither=1" +fi + video_denoise_func() { printf "Denoise the Input File? [y/N]: " read dn @@ -3610,7 +3612,7 @@ test ! -z "$vidfilters" && vfilters="-vf $vidfilters" -test ! -z "$vpreset" && X265PARAMS="$colorprim$interlaced$dolby_vision$dolby_vision_rpu$master_display$max_cll$hdr_opt$dhdr10$hdr_encopts$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize $vpreset $vtune" || X265PARAMS=":$X265PARAMS$colorprim$interlaced$dolby_vision$dolby_vision_rpu$master_display$max_cll$hdr_opt$dhdr10$hdr_encopts$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize" +test ! -z "$vpreset" && X265PARAMS="$colorprim$interlaced$dolby_vision$dolby_vision_rpu$master_display$max_cll$hdr_opt$dhdr10$hdr_encopts$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize$dither $vpreset $vtune" || X265PARAMS=":$X265PARAMS$colorprim$interlaced$dolby_vision$dolby_vision_rpu$master_display$max_cll$hdr_opt$dhdr10$hdr_encopts$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize$dither" test ! -z "$COMMENT" && METACOMMENT="-metadata comment=\"$COMMENT\""
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
.