Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 244
View file
ffhevc.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Feb 28 22:20:00 UTC 2024 - neutrino8@opensuse.org + +- Update to version 4.5.0 + * Initial support for zimg (z lib) scalers + +------------------------------------------------------------------- Sun Feb 04 16:40:00 UTC 2023 - neutrino8@opensuse.org - Update to version 4.4.17
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.4.17 +Version: 4.5.0 Release: %mkrel 1 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.4.17.tar.gz/ChangeLog -> ffhevc-4.5.0.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2024-02-28 - ffhevc 4.5.0 + * Initial support for zimg (z lib) scalers + 2024-02-04 - ffhevc 4.4.17 * Don't exit but warn about MP4Box/Mplayer missing from the user's system
View file
ffhevc-4.4.17.tar.gz/ffhevc -> ffhevc-4.5.0.tar.gz/ffhevc
Changed
@@ -3,7 +3,7 @@ # Small script to encode to H.265/HEVC video using FFmpeg and libx265. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> # Version: 4.4.17 -# Date: 2024-02-04 +# Date: 2024-02-28 # # 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.4.17" +version="4.5.0" CFG="$HOME/.ffhevc" cfgversion="83" @@ -1815,136 +1815,171 @@ printf "Specify the Desired Resolution WxH - press 'Enter' to skip: " read res if ! -z "$res" ; then - sws_func() { - case "$1" in - config) swsopt="$SCALER" ;; - script) test -z "$swsopt" && swsopt="8" || swsopt="$swsopt" ;; - esac - case "$swsopt" in - 0) scaler="fast_bilinear" ;; - 1) scaler="bilinear" ;; - 2) scaler="bicubic" ;; - 3) scaler="neighbor" ;; - 4) scaler="area" ;; - 5) scaler="bicublin" ;; - 6) scaler="gauss" ;; - 7) scaler="sinc" ;; - 8) scaler="lanczos" ;; - 9) scaler="spline" ;; - 10) scaler="experimental" ;; - *) + printf "Use FFmpeg or zimg Scaler? ffmpeg/zimg - default is ffmpeg: " + read scatype + case "$scatype" in + ffmpeg|FFmpeg|FFMPEG|"") + sws_func() { case "$1" in - script) - error "-> Invalid option!" - exit 1 + config) swsopt="$SCALER" ;; + script) test -z "$swsopt" && swsopt="8" || swsopt="$swsopt" ;; + esac + case "$swsopt" in + 0) scaler="fast_bilinear" ;; + 1) scaler="bilinear" ;; + 2) scaler="bicubic" ;; + 3) scaler="neighbor" ;; + 4) scaler="area" ;; + 5) scaler="bicublin" ;; + 6) scaler="gauss" ;; + 7) scaler="sinc" ;; + 8) scaler="lanczos" ;; + 9) scaler="spline" ;; + 10) scaler="experimental" ;; + *) + case "$1" in + script) + error "-> Invalid option!" + exit 1 + ;; + esac ;; esac - ;; - esac - } - if -z "$SCALER" ; then - echo - brown " Software Scalers" - brown " ~~~~~~~~~~~~~~~~" - echo " 0 --> Fast Bilinear" - echo " 1 --> Bilinear" - echo " 2 --> Bicubic" - echo " 3 --> Nearest Neighbor" - echo " 4 --> Area Averaging" - echo " 5 --> Luma Bicubic/Chroma Bilinear" - echo " 6 --> Gaussian" - echo " 7 --> Sinc" - echo " 8 --> Lanczos" - echo " 9 --> Natural Bicubic Spline" - echo " 10 -> Experimental" - echo - printf "Sepcify the Software Scaler default is 8: " - read swsopt - sws_func script - else - case "$SCALER" in - 0-9|10) - sws_func config - echo - green "-> Using software scaler '$scaler' set in config file '$CFG'" - echo - ;; - *) - error "-> Invalid software scaler in config file '$CFG'" - exit 1 - ;; - esac - fi - printf "Tweak the Software Scaler? y/N: " - read swstweak - if "$swstweak" = "y" -o "$swstweak" = "Y" ; then - case "$swsopt" in - 2|9) + } + if -z "$SCALER" ; then echo - brown "Scaler Tuning" - brown "~~~~~~~~~~~~~" - echo " 0 -> Default (0.00, 0.60)" - echo " 1 -> Catmull-Rom Spline (0.00, 0.50)" - echo " 2 -> Mitchell-Netravali Spline (0.33, 0.33)" - echo " 3 -> Cubic B-Spline (1.00, 0.00)" - echo " 4 -> Custom" + brown " Software Scalers" + brown " ~~~~~~~~~~~~~~~~" + echo " 0 --> Fast Bilinear" + echo " 1 --> Bilinear" + echo " 2 --> Bicubic" + echo " 3 --> Nearest Neighbor" + echo " 4 --> Area Averaging" + echo " 5 --> Luma Bicubic/Chroma Bilinear" + echo " 6 --> Gaussian" + echo " 7 --> Sinc" + echo " 8 --> Lanczos" + echo " 9 --> Natural Bicubic Spline" + echo " 10 -> Experimental" echo - printf "Specify the Scaler Tuning Option default is 1: " - read swstune - case "$swstune" in - 0) true ;; - 1|"") swsparam0=":param0=0.00"; swsparam1=":param1=0.50" ;; - 2) swsparam0=":param0=0.33"; swsparam1=":param1=0.33" ;; - 3) swsparam0=":param0=1.00"; swsparam1=":param1=0.00" ;; - 4) - printf "Specify the Custom Scaler Tuning values default is 0.00:0.60: " - read swscus - if ! -z "$swscus" ; then - swsparam0=":param0=$(echo "$swscus" | awk -F: '{print $1}')" - swsparam1=":param1=$(echo "$swscus" | awk -F: '{print $2}')" - fi + printf "Sepcify the Software Scaler default is 8: " + read swsopt + sws_func script + else + case "$SCALER" in + 0-9|10) + sws_func config + echo + green "-> Using software scaler '$scaler' set in config file '$CFG'" + echo ;; *) - error "-> Invalid option" + error "-> Invalid software scaler in config file '$CFG'" exit 1 ;; esac - ;; - 6|8) - if "$swsopt" = "6" ; then - swscaler="Gaussian" - swsval="0-100" - swsdef="0" - swstype="Sharpness" - else - swscaler="Lanczos" - swsval="1-10" - swsdef="3" - swstype="Width (alpha)" + fi + printf "Tweak the Software Scaler? y/N: " + read swstweak + if "$swstweak" = "y" -o "$swstweak" = "Y" ; then + case "$swsopt" in + 2|9) + echo + brown "Scaler Tuning" + brown "~~~~~~~~~~~~~" + echo " 0 -> Default (0.00, 0.60)" + echo " 1 -> Catmull-Rom Spline (0.00, 0.50)" + echo " 2 -> Mitchell-Netravali Spline (0.33, 0.33)" + echo " 3 -> Cubic B-Spline (1.00, 0.00)" + echo " 4 -> Custom" + echo + printf "Specify the Scaler Tuning Option default is 1: " + read swstune + case "$swstune" in + 0) true ;;
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
.