Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 251
View file
ffhevc-4.5.8.tar.gz/ChangeLog -> ffhevc-4.5.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,8 @@ +2024-11-11 - ffhevc 4.5.9 + * Do colorspace conversion before scaling + * Moved chroma location code after color primaries code + and before the IDR/keyframes code + 2024-11-08 - ffhevc 4.5.8 * Support copying the DTS core-only from DTS 96/24 and DTS:X IMAX tracks
View file
ffhevc-4.5.8.tar.gz/ffhevc -> ffhevc-4.5.9.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@gmail.com> -# Version: 4.5.7 -# Date: 2024-11-08 +# Version: 4.5.9 +# Date: 2024-11-11 # # 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 "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.5.8" +version="4.5.9" CFG="$HOME/.ffhevc" cfgversion="83" @@ -2070,6 +2070,15 @@ fi fi +printf "Set the Chroma Location? y/N: " +read chloc +if "$chloc" = "y" -o "$chloc" = "Y" ; then + test ! -z "$hdr_encopts" && defloc="2" || defloc="0" + printf "Specify the Chroma Location 0-5 - default is $defloc: " + read chroloc + test -z "$chroloc" && chromaloc=":chromaloc=$defloc" || chromaloc=":chromaloc=$chroloc" +fi + printf "Set the Min/Max Keyframe/IDR Intervals? y/N: " read kframe if "$kframe" = "y" -o "$kframe" = "Y" ; then @@ -2093,15 +2102,6 @@ fi fi -printf "Set the Chroma Location? y/N: " -read chloc -if "$chloc" = "y" -o "$chloc" = "Y" ; then - test ! -z "$hdr_encopts" && defloc="2" || defloc="0" - printf "Specify the Chroma Location 0-5 - default is $defloc: " - read chroloc - test -z "$chroloc" && chromaloc=":chromaloc=$defloc" || chromaloc=":chromaloc=$chroloc" -fi - if "$VID_FPS_CONVERT" = "y" ; then # Not supported with interlaced encoding, # deinterlacing with a bobber and IVTC @@ -3848,7 +3848,7 @@ test "$CHAPS" = "n" && CHAPS="-map_chapters -1" || CHAPS="-map_chapters 0" -vidfilters="$(echo "$deinterlace$detelecine$tonemap$crop$deblock$denoise$scale$noise$colorspace$unsharp$eq$rotate$pixformat$setpts$fps$framestep$subtitles" | sed 's|,$||')" +vidfilters="$(echo "$deinterlace$detelecine$colorspace$tonemap$crop$deblock$denoise$scale$noise$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
.