Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 137
View file
ffhevc.changes
Changed
@@ -1,4 +1,15 @@ ------------------------------------------------------------------- +Sun Sep 22 05:00:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.8.2 + * For audio stream copy, in case ffprobe reports + channels layout as unknown, try to guess the + amount of channels based on channel detection + and use that as metadata + * Set Mobisu transform as default for HDR to SDR + * Updated the man page + +------------------------------------------------------------------- Sat Sep 21 05:30:00 UTC 2019 - neutrino8@opensuse.org - Update to version 3.8.1
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 3.8.1 +Version: 3.8.2 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with ffmpeg License: GPL-2.0+
View file
ffhevc-3.8.1.tar.gz/ChangeLog -> ffhevc-3.8.2.tar.gz/ChangeLog
Changed
@@ -1,3 +1,11 @@ +2019-09-22 - ffhevc 3.8.2 + * For audio stream copy, in case ffprobe reports + channels layout as unknown, try to guess the + amount of channels based on channel detection + and use that as metadata + * Set Mobisu transform as default for HDR to SDR + * Updated the man page + 2019-09-21 - ffhevc 3.8.1 * Add side channel info to the audio metadata
View file
ffhevc-3.8.1.tar.gz/Makefile -> ffhevc-3.8.2.tar.gz/Makefile
Changed
@@ -11,7 +11,7 @@ cp -f hdr $(PREFIX)/bin chmod 755 $(PREFIX)/bin/ffhevc chmod 755 $(PREFIX)/bin/hdr - cp -f AUTHORS LICENSE README ChangeLog Dynamic_HDR10_Example.json *.txt $(DOCDIR)/ffhevc + cp -f AUTHORS LICENSE README ChangeLog *.json *.txt $(DOCDIR)/ffhevc chmod 644 $(DOCDIR)/ffhevc/* cp -f ffhevc.1 $(MANDIR) gzip -9 -f $(MANDIR)/ffhevc.1
View file
ffhevc-3.8.1.tar.gz/ffhevc -> ffhevc-3.8.2.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.8.1 -# Date: 2019-09-21 +# Version: 3.8.2 +# Date: 2019-09-22 # # 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.8.1" +version="3.8.2" CFG="$HOME/.ffhevc" cfgversion="43" @@ -1034,16 +1034,16 @@ echo " 5 -> Hable" echo " 6 -> Mobius" echo - printf "Specify the Tone Mapping Algorithm [default is 4]: " + printf "Specify the Tone Mapping Algorithm [default is 6]: " read tmaopt case "$tmaopt" in 0) tm_algo="none" ;; 1) tm_algo="clip" ;; 2) tm_algo="linear" ;; 3) tm_algo="gamma" ;; - 4|"") tm_algo="reinhard" ;; + 4) tm_algo="reinhard" ;; 5) tm_algo="hable" ;; - 6) tm_algo="mobius" ;; + 6|"") tm_algo="mobius" ;; *) error "-> Invalid option!" exit 1 @@ -1059,10 +1059,10 @@ 3) printf "Specify the Exponent of the Function [default is 1.8]: " ;; - 4|"") + 4) printf "Specify the local Contrast Coefficient at the Display Peak [default is 0.5]: " ;; - 6) + 6|"") printf "Specify the Transition Point from Linear to Mobius Transform [default is 0.3]: " ;; esac @@ -3154,10 +3154,23 @@ *) GETAUDCDC[i]="$(echo "${GETAUDCDC[i]}" | tr '[a-z]' '[A-Z]')" ;; esac case "${GETAUDCL[i]}" in - [1-9]*|mono|stereo) + [1-9]*|mono|stereo|unknown|N/A|"") case "${GETAUDCL[i]}" in mono) audchmeta[i]=" Mono" ;; stereo) audchmeta[i]=" Stereo" ;; + unknown|N/A|"") + GETAUDCH[i]="$($FFPROBE -i "$input" -v quiet -select_streams a:${aindex[i]} -show_streams -of default=noprint_wrappers=1 | grep '^channels' | awk -F= '{print $2}')" + case "${GETAUDCH[i]}" in + 1) audchmeta[i]=" Mono" ;; + 2) audchmeta[i]=" Stereo" ;; + 3) audchmeta[i]=" 2.1/3.0" ;; + 4) audchmeta[i]=" Quad" ;; + 5) audchmeta[i]=" 4.1/5.0" ;; + 6) audchmeta[i]=" 5.1/6.0" ;; + 7) audchmeta[i]=" 6.1/7.0" ;; + 8) audchmeta[i]=" 7.1" ;; + esac + ;; *) audchmeta[i]=" ${GETAUDCL[i]}" ;; esac ;;
View file
ffhevc-3.8.1.tar.gz/ffhevc.1 -> ffhevc-3.8.2.tar.gz/ffhevc.1
Changed
@@ -3,7 +3,7 @@ .de IPs .IP "\\$1" .. -.TH ffhevc 1 "Dec 22, 2018" +.TH ffhevc 1 "Sep 22, 2019" .SH NAME ffhevc @@ -27,6 +27,10 @@ - FFmpeg with libx265 support .br - FFprobe (part of FFmpeg) +.br +- MPlayer (for crop preview only) +.br +- bc .SH PARAMETERS .TP
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
.