Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 101
View file
ffx264.changes
Changed
@@ -1,4 +1,15 @@ ------------------------------------------------------------------- +Sun Sep 22 05:00:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.8.1 + * 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.0
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 3.8.0 +Version: 3.8.1 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffx264-3.8.0.tar.gz/ChangeLog -> ffx264-3.8.1.tar.gz/ChangeLog
Changed
@@ -1,3 +1,11 @@ +2019-09-22 - ffx264 3.8.1 + * 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 Mobius transform as default for HDR to SDR + * Updated the man page + 2019-09-21 - ffx264 3.8.0 * Add side channel info to the audio metadata
View file
ffx264-3.8.0.tar.gz/ffx264 -> ffx264-3.8.1.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@opensuse.org> -# Version: 3.8.0 -# Date: 2019-09-21 +# Version: 3.8.1 +# Date: 2019-09-22 # # 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 "\e[0;33m$1\e[0;39;49m"; } error() { echo -e "\e[1;31m$1\e[0;39;49m"; } -version="3.8.0" +version="3.8.1" CFG="$HOME/.ffx264" cfgversion="35" @@ -1046,9 +1046,9 @@ 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 @@ -1064,10 +1064,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 @@ -3063,10 +3063,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
ffx264-3.8.0.tar.gz/ffx264.1 -> ffx264-3.8.1.tar.gz/ffx264.1
Changed
@@ -3,7 +3,7 @@ .de IPs .IP "\\$1" .. -.TH ffx264 1 "Nov 14, 2016" +.TH ffx264 1 "Sep 22, 2019" .SH NAME ffx264 @@ -27,6 +27,10 @@ - FFmpeg with libx264 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
.