Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 48
View file
ffxvid.changes
Changed
@@ -1,4 +1,15 @@ ------------------------------------------------------------------- +Sun Sep 22 05:00:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 1.3.8 + * 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 1.3.7
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.3.7 +Version: 1.3.8 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffxvid-1.3.7.tar.gz/ChangeLog -> ffxvid-1.3.8.tar.gz/ChangeLog
Changed
@@ -1,3 +1,11 @@ +2019-09-22 - ffxvid 1.3.8 + * 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 - ffxvid 1.3.7 * Add side channel info to the audio metadata
View file
ffxvid-1.3.7.tar.gz/ffxvid -> ffxvid-1.3.8.tar.gz/ffxvid
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to Xvid video using FFmpeg. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 1.3.7 -# Date: 2019-09-21 +# Version: 1.3.8 +# 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="1.3.7" +version="1.3.8" CFG="$HOME/.ffxvid" cfgversion="9" @@ -973,9 +973,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 @@ -991,10 +991,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 @@ -2870,10 +2870,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
ffxvid-1.3.7.tar.gz/ffxvid.1 -> ffxvid-1.3.8.tar.gz/ffxvid.1
Changed
@@ -3,7 +3,7 @@ .de IPs .IP "\\$1" .. -.TH ffxvid 1 "Feb 19, 2017" +.TH ffxvid 1 "Sep 22, 2019" .SH NAME ffxvid @@ -28,6 +28,8 @@ .br - FFprobe (part of FFmpeg) .br +- MPlayer (for crop preview only) +.br - bc .SH PARAMETERS
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
.