Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 100
View file
ffx264.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Sat Sep 21 05:30:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.8.0 + * Add side channel info to the audio metadata + +------------------------------------------------------------------- Thu Sep 19 03:58:00 UTC 2019 - neutrino8@opensuse.org - Update to version 3.7.9
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 3.7.9 +Version: 3.8.0 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffx264-3.7.9.tar.gz/ChangeLog -> ffx264-3.8.0.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2019-09-21 - ffx264 3.8.0 + * Add side channel info to the audio metadata + 2019-09-19 - ffx264 3.7.9 * Support encoding to WMAv1 and WMAv2 audio * Update high bit depth pixel formats options
View file
ffx264-3.7.9.tar.gz/ffx264 -> ffx264-3.8.0.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.7.9 -# Date: 2019-09-19 +# Version: 3.8.0 +# Date: 2019-09-21 # # 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.7.9" +version="3.8.0" CFG="$HOME/.ffx264" cfgversion="35" @@ -2509,15 +2509,15 @@ 0) achlayout[i]="mono"; achmeta[i]="Mono" ;; 1) achlayout[i]="stereo"; achmeta[i]="Stereo" ;; 2) achlayout[i]="3.0"; achmeta[i]="3.0" ;; - 3) achlayout[i]="3.0(back)"; achmeta[i]="3.0" ;; + 3) achlayout[i]="3.0(back)"; achmeta[i]="3.0(back)" ;; 4) achlayout[i]="quad"; achmeta[i]="Quad" ;; - 5) achlayout[i]="quad(side)"; achmeta[i]="Quad" ;; + 5) achlayout[i]="quad(side)"; achmeta[i]="Quad(side)" ;; 6) achlayout[i]="4.0"; achmeta[i]="4.0" ;; 7) achlayout[i]="4.1"; achmeta[i]="4.1" ;; 8) achlayout[i]="5.0"; achmeta[i]="5.0" ;; - 9) achlayout[i]="5.0(side)"; achmeta[i]="5.0" ;; + 9) achlayout[i]="5.0(side)"; achmeta[i]="5.0(side)" ;; 10|"") achlayout[i]="5.1"; achmeta[i]="5.1" ;; - 11) achlayout[i]="5.1(side)"; achmeta[i]="5.1" ;; + 11) achlayout[i]="5.1(side)"; achmeta[i]="5.1(side)" ;; *) error "-> Invalid option!" exit 1 @@ -2534,9 +2534,9 @@ case "${achanlayout[i]}" in 0) achlayout[i]="mono"; achmeta[i]="Mono" ;; 1) achlayout[i]="stereo"; achmeta[i]="Stereo" ;; - 2) achlayout[i]="quad(side)"; achmeta[i]="Quad" ;; - 3) achlayout[i]="5.0(side)"; achmeta[i]="5.0" ;; - 4|"") achlayout[i]="5.1(side)"; achmeta[i]="5.1" ;; + 2) achlayout[i]="quad(side)"; achmeta[i]="Quad(side)" ;; + 3) achlayout[i]="5.0(side)"; achmeta[i]="5.0(side)" ;; + 4|"") achlayout[i]="5.1(side)"; achmeta[i]="5.1(side)" ;; *) error "-> Invalid option!" exit 1 @@ -2555,17 +2555,17 @@ 0) achlayout[i]="mono"; achmeta[i]="Mono" ;; 1) achlayout[i]="stereo"; achmeta[i]="Stereo" ;; 2) achlayout[i]="3.0"; achmeta[i]="3.0" ;; - 3) achlayout[i]="3.0(back)"; achmeta[i]="3.0" ;; + 3) achlayout[i]="3.0(back)"; achmeta[i]="3.0(back)" ;; 4) achlayout[i]="4.0"; achmeta[i]="4.0" ;; 5) achlayout[i]="quad"; achmeta[i]="Quad" ;; - 6) achlayout[i]="quad(side)"; achmeta[i]="Quad" ;; + 6) achlayout[i]="quad(side)"; achmeta[i]="Quad(side)" ;; 7) achlayout[i]="5.0"; achmeta[i]="5.0" ;; - 8) achlayout[i]="5.0(side)"; achmeta[i]="5.0" ;; + 8) achlayout[i]="5.0(side)"; achmeta[i]="5.0(side)" ;; 9) achlayout[i]="5.1"; achmeta[i]="5.1" ;; - 10) achlayout[i]="5.1(side)"; achmeta[i]="5.1" ;; + 10) achlayout[i]="5.1(side)"; achmeta[i]="5.1(side)" ;; 11|"") achlayout[i]="7.1"; achmeta[i]="7.1" ;; - 12) achlayout[i]="7.1(wide)"; achmeta[i]="7.1" ;; - 13) achlayout[i]="7.1(wide-side)"; achmeta[i]="7.1" ;; + 12) achlayout[i]="7.1(wide)"; achmeta[i]="7.1(wide)" ;; + 13) achlayout[i]="7.1(wide-side)"; achmeta[i]="7.1(wide-side)" ;; *) error "-> Invalid option!" exit 1 @@ -2588,7 +2588,7 @@ 4) achlayout[i]="5.0"; achmeta[i]="5.0" ;; 5) achlayout[i]="5.1"; achmeta[i]="5.1" ;; 6|"") achlayout[i]="7.1"; achmeta[i]="7.1" ;; - 7) achlayout[i]="7.1(wide)"; achmeta[i]="7.1" ;; + 7) achlayout[i]="7.1(wide)"; achmeta[i]="7.1(wide)" ;; *) error "-> Invalid option!" exit 1 @@ -2608,11 +2608,11 @@ 1) achlayout[i]="stereo"; achmeta[i]="Stereo" ;; 2) achlayout[i]="3.0"; achmeta[i]="3.0" ;; 3) achlayout[i]="quad"; achmeta[i]="Quad" ;; - 4) achlayout[i]="quad(side)"; achmeta[i]="Quad" ;; + 4) achlayout[i]="quad(side)"; achmeta[i]="Quad(side)" ;; 5) achlayout[i]="5.0"; achmeta[i]="5.0" ;; - 6) achlayout[i]="5.0(side)"; achmeta[i]="5.0" ;; + 6) achlayout[i]="5.0(side)"; achmeta[i]="5.0(side)" ;; 7) achlayout[i]="5.1"; achmeta[i]="5.1" ;; - 8) achlayout[i]="5.1(side)"; achmeta[i]="5.1" ;; + 8) achlayout[i]="5.1(side)"; achmeta[i]="5.1(side)" ;; 9) achlayout[i]="6.1"; achmeta[i]="6.1" ;; 10|"") achlayout[i]="7.1"; achmeta[i]="7.1" ;; *) @@ -2690,19 +2690,19 @@ 1) achlayout[i]="stereo"; achmeta[i]="Stereo" ;; 2) achlayout[i]="3.0"; achmeta[i]="3.0" ;; 3) achlayout[i]="quad"; achmeta[i]="Quad" ;; - 4) achlayout[i]="quad(side)"; achmeta[i]="Quad" ;; + 4) achlayout[i]="quad(side)"; achmeta[i]="Quad(side)" ;; 5) achlayout[i]="5.0"; achmeta[i]="5.0" ;; - 6) achlayout[i]="5.0(side)"; achmeta[i]="5.0" ;; + 6) achlayout[i]="5.0(side)"; achmeta[i]="5.0(side)" ;; 7) achlayout[i]="5.1"; achmeta[i]="5.1" ;; - 8) achlayout[i]="5.1(side)"; achmeta[i]="5.1" ;; + 8) achlayout[i]="5.1(side)"; achmeta[i]="5.1(side)" ;; 9) achlayout[i]="6.1"; achmeta[i]="6.1" ;; - 10) achlayout[i]="6.1(front)"; achmeta[i]="6.1" ;; - 11) achlayout[i]="6.1(back)"; achmeta[i]="6.1" ;; + 10) achlayout[i]="6.1(front)"; achmeta[i]="6.1(front)" ;; + 11) achlayout[i]="6.1(back)"; achmeta[i]="6.1(back)" ;; 12) achlayout[i]="7.0"; achmeta[i]="7.0" ;; - 13) achlayout[i]="7.0(front)"; achmeta[i]="7.0" ;; + 13) achlayout[i]="7.0(front)"; achmeta[i]="7.0(front)" ;; 14|"") achlayout[i]="7.1"; achmeta[i]="7.1" ;; - 15) achlayout[i]="7.1(wide)"; achmeta[i]="7.1" ;; - 16) achlayout[i]="7.1(wide-side)"; achmeta[i]="7.1" ;; + 15) achlayout[i]="7.1(wide)"; achmeta[i]="7.1(wide)" ;; + 16) achlayout[i]="7.1(wide-side)"; achmeta[i]="7.1(wide-side)" ;; *) error "-> Invalid option!" exit 1 @@ -2724,8 +2724,8 @@ 3) achlayout[i]="4.0"; achmeta[i]="4.0" ;; 4) achlayout[i]="5.0"; achmeta[i]="5.0" ;; 5) achlayout[i]="5.1"; achmeta[i]="5.1" ;; - 6) achlayout[i]="6.1(back)"; achmeta[i]="6.1" ;; - 7|"") achlayout[i]="7.1(wide)"; achmeta[i]="7.1" ;; + 6) achlayout[i]="6.1(back)"; achmeta[i]="6.1(back)" ;; + 7|"") achlayout[i]="7.1(wide)"; achmeta[i]="7.1(wide)" ;; *) error "-> Invalid option!" exit 1 @@ -2746,21 +2746,21 @@ 2) achlayout[i]="2.1"; achmeta[i]="2.1" ;; 3) achlayout[i]="3.0"; achmeta[i]="3.0" ;; 4) achlayout[i]="quad"; achmeta[i]="Quad" ;; - 5) achlayout[i]="quad(side)"; achmeta[i]="Quad" ;; + 5) achlayout[i]="quad(side)"; achmeta[i]="Quad(side)" ;; 6) achlayout[i]="5.0"; achmeta[i]="5.0" ;; - 7) achlayout[i]="5.0(side)"; achmeta[i]="5.0" ;; + 7) achlayout[i]="5.0(side)"; achmeta[i]="5.0(side)" ;; 8) achlayout[i]="5.1"; achmeta[i]="5.1" ;; - 9) achlayout[i]="5.1(side)"; achmeta[i]="5.1" ;; + 9) achlayout[i]="5.1(side)"; achmeta[i]="5.1(side)" ;; 10) achlayout[i]="6.0"; achmeta[i]="6.0" ;; - 11) achlayout[i]="6.0(front)"; achmeta[i]="6.0" ;; + 11) achlayout[i]="6.0(front)"; achmeta[i]="6.0(front)" ;; 12) achlayout[i]="6.1"; achmeta[i]="6.1" ;; - 13) achlayout[i]="6.1(front)"; achmeta[i]="6.1" ;; - 14) achlayout[i]="6.1(back)"; achmeta[i]="6.1" ;; + 13) achlayout[i]="6.1(front)"; achmeta[i]="6.1(front)" ;; + 14) achlayout[i]="6.1(back)"; achmeta[i]="6.1(back)" ;; 15) achlayout[i]="7.0"; achmeta[i]="7.0" ;; - 16) achlayout[i]="7.0(front)"; achmeta[i]="7.0" ;; + 16) achlayout[i]="7.0(front)"; achmeta[i]="7.0(front)" ;; 17|"") achlayout[i]="7.1"; achmeta[i]="7.1" ;; - 18) achlayout[i]="7.1(wide)"; achmeta[i]="7.1" ;; - 19) achlayout[i]="7.1(wide-side)"; achmeta[i]="7.1" ;; + 18) achlayout[i]="7.1(wide)"; achmeta[i]="7.1(wide)" ;; + 19) achlayout[i]="7.1(wide-side)"; achmeta[i]="7.1(wide-side)" ;; *) error "-> Invalid option!" exit 1 @@ -3067,7 +3067,7 @@ case "${GETAUDCL[i]}" in mono) audchmeta[i]=" Mono" ;; stereo) audchmeta[i]=" Stereo" ;; - *) audchmeta[i]=" $(echo "${GETAUDCL[i]}" | sed 's|(.*||g')" ;; + *) audchmeta[i]=" ${GETAUDCL[i]}" ;; esac ;; esac
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
.