Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 54
View file
ffhevc.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon May 29 08:05:00 UTC 2017 - neutrino8@opensuse.org + +- Update to version 3.2.8 + * Added support for Dynamic HDR10+ JSON files. Requires libx265 + to be compiled with Dynamic HDR10+ support + +------------------------------------------------------------------- Tue May 16 08:57:00 UTC 2017 - neutrino8@opensuse.org - Update to version 3.2.7
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 3.2.7 +Version: 3.2.8 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with ffmpeg License: GPL-2.0+
View file
ffhevc-3.2.7.tar.gz/ChangeLog -> ffhevc-3.2.8.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2017-05-29 - ffhevc 3.2.8 + * Added support for Dynamic HDR10+ JSON files. Requires + libx265 to be compiled with Dynamic HDR10+ support + 2017-05-16 - ffhevc 3.2.7 * Added support for FFmpeg's internal Opus audio encoder
View file
ffhevc-3.2.7.tar.gz/ffhevc -> ffhevc-3.2.8.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.2.7 -# Date: 2017-05-16 +# Version: 3.2.8 +# Date: 2017-05-29 # # 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.2.7" +version="3.2.8" CFG="$HOME/.ffhevc" cfgversion="34" @@ -1035,6 +1035,22 @@ test ! -z "$lcoffset" && hdr_opt=":hdr-opt=1" fi +printf "Use Dynamic HDR10+ JSON file? [y/N]: " +read dhdr +if [ "$dhdr" = "y" -o "$dhdr" = "Y" ]; then + printf "Provide the JSON file [press 'Enter' to skip]: " + read -e json + if [ ! -z "$json" ]; then + if [ ! -f "$json" ]; then + echo + error "-> No such file. Skipping!" + echo + else + dhdr10=":dhdr10-info=\"$(readlink -f "$json")\"" + fi + fi +fi + # Used by cropping and bitrate # calc for target file size video_length_func() { @@ -2615,7 +2631,7 @@ test ! -z "$vidfilters" && vfilters="-vf $vidfilters" -test ! -z "$vpreset" && X265PARAMS="$colorprim$interlaced$master_display$max_cll$hdr_opt $vpreset $vtune" || X265PARAMS=":$X265PARAMS$colorprim$interlaced$master_display$max_cll$hdr_opt" +test ! -z "$vpreset" && X265PARAMS="$colorprim$interlaced$master_display$max_cll$hdr_opt$dhdr10 $vpreset $vtune" || X265PARAMS=":$X265PARAMS$colorprim$interlaced$master_display$max_cll$hdr_opt$dhdr10" 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
.