Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 169
View file
ffx264-4.2.7.tar.gz/ChangeLog -> ffx264-4.2.8.tar.gz/ChangeLog
Changed
@@ -1,3 +1,8 @@ +2024-11-11 - ffx264 4.2.8 + * Do colorspace conversion before scaling + * Moved chroma location code after color primaries code + and before the IDR/keyframes code + 2024-11-08 - ffx264 4.2.7 * Support copying the DTS core-only from DTS 96/24 and DTS:X IMAX tracks
View file
ffx264-4.2.7.tar.gz/ffx264 -> ffx264-4.2.8.tar.gz/ffx264
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.264/AVC video using FFmpeg and libx264. # Author: Grozdan "microchip" Nikolov <neutrino8@gmail.com> -# Version: 4.2.7 -# Date: 2024-11-08 +# Version: 4.2.8 +# Date: 2024-11-11 # # 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 "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.2.7" +version="4.2.8" CFG="$HOME/.ffx264" cfgversion="43" @@ -1928,7 +1928,6 @@ esac colorprim=":colormatrix=$matrix:colorprim=$prim:transfer=$transfer" # For MP4Box mov output - # # 1st value: color primary # 2nd value: transfer # 3rd value: matrix @@ -1947,6 +1946,14 @@ fi fi +printf "Set the Chroma Location? y/N: " +read chloc +if "$chloc" = "y" -o "$chloc" = "Y" ; then + printf "Specify the Chroma Location 0-5 - default is 0: " + read chroloc + test ! -z "$chroloc" && chromaloc=":chromaloc=$chroloc" +fi + printf "Set the Min/Max Keyframe/IDR Intervals? y/N: " read kframe if "$kframe" = "y" -o "$kframe" = "Y" ; then @@ -1970,14 +1977,6 @@ fi fi -printf "Set the Chroma Location? y/N: " -read chloc -if "$chloc" = "y" -o "$chloc" = "Y" ; then - printf "Specify the Chroma Location 0-5 - default is 0: " - read chroloc - test ! -z "$chroloc" && chromaloc=":chromaloc=$chroloc" -fi - if "$VID_FPS_CONVERT" = "y" ; then # Not supported with interlaced encoding, # deinterlacing with a bobber and IVTC @@ -3773,7 +3772,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
.