Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 158
View file
ffx264.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Oct 27 11:50:00 UTC 2023 - neutrino8@opensuse.org + +- Update to version 4.1.14 + * Set side/wide audio channels as default + * Support the newly added channels for TrueHD audio + +------------------------------------------------------------------- Sun Sep 10 16:17:00 UTC 2023 - neutrino8@opensuse.org - Update to version 4.1.13
View file
ffx264.spec
Changed
@@ -1,7 +1,7 @@ # # spec file for package ffx264 # -# Copyright (c) 2022 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2023 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: ffx264 -Version: 4.1.13 +Version: 4.1.14 Release: 1 Summary: A small shell script for encoding to H.264/AVC with FFmpeg License: GPL-2.0+
View file
ffx264-4.1.13.tar.gz/ChangeLog -> ffx264-4.1.14.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2023-10-27 - ffx264 4.1.14 + * Set side/wide audio channels as default + * Support the newly added channels for TrueHD audio + 2023-09-10 - ffhevc 4.1.13 * Bugfix in the video_noise_func() function
View file
ffx264-4.1.13.tar.gz/ffx264 -> ffx264-4.1.14.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: 4.1.13 -# Date: 2023-09-10 +# Version: 4.1.14 +# Date: 2023-10-27 # # 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 "\e0;33m$1\e0;39;49m"; } error() { echo -e "\e1;31m$1\e0;39;49m"; } -version="4.1.13" +version="4.1.14" CFG="$HOME/.ffx264" cfgversion="42" @@ -2865,9 +2865,9 @@ ;; *) case "${achi}" in - 2|5|6) true ;; + 2|3|4|5|6) true ;; *) - error "-> TrueHD encoder in ffmpeg supports only 2, 5 and 6 channels!" + error "-> TrueHD encoder in ffmpeg supports only 2, 3, 4, 5 and 6 channels!" exit 1 ;; esac @@ -2931,7 +2931,7 @@ echo " 2 -> 3.0 6 -> 4.0 10 -> 5.1" echo " 3 -> 3.0(back) 7 -> 4.1 11 -> 5.1(side)" echo - printf "Track $i: Specify the Audio Channel Layout default is 10: " + printf "Track $i: Specify the Audio Channel Layout default is 11: " read achanlayouti case "${achanlayouti}" in 0) achlayouti="mono"; achmetai=" Mono" ;; @@ -2944,8 +2944,8 @@ 7) achlayouti="4.1"; achmetai=" 4.1" ;; 8) achlayouti="5.0"; achmetai=" 5.0" ;; 9) achlayouti="5.0(side)"; achmetai=" 5.0(side)" ;; - 10|"") achlayouti="5.1"; achmetai=" 5.1" ;; - 11) achlayouti="5.1(side)"; achmetai=" 5.1(side)" ;; + 10) achlayouti="5.1"; achmetai=" 5.1" ;; + 11|"") achlayouti="5.1(side)"; achmetai=" 5.1(side)" ;; *) error "-> Invalid option!" exit 1 @@ -2977,7 +2977,7 @@ echo " 2 -> 3.0 6 -> Quad(side) 10 -> 5.1(side)" echo " 3 -> 3.0(back) 7 -> 5.0 11 -> 7.1" echo - printf "Track $i: Specify the Audio Channel Layout default is 11: " + printf "Track $i: Specify the Audio Channel Layout default is 12: " read achanlayouti case "${achanlayouti}" in 0) achlayouti="mono"; achmetai=" Mono" ;; @@ -2991,8 +2991,8 @@ 8) achlayouti="5.0(side)"; achmetai=" 5.0(side)" ;; 9) achlayouti="5.1"; achmetai=" 5.1" ;; 10) achlayouti="5.1(side)"; achmetai=" 5.1(side)" ;; - 11|"") achlayouti="7.1"; achmetai=" 7.1" ;; - 12) achlayouti="7.1(wide)"; achmetai=" 7.1(wide)" ;; + 11) achlayouti="7.1"; achmetai=" 7.1" ;; + 12|"") achlayouti="7.1(wide)"; achmetai=" 7.1(wide)" ;; 13) achlayouti="7.1(wide-side)"; achmetai=" 7.1(wide-side)" ;; *) error "-> Invalid option!" @@ -3094,16 +3094,21 @@ esac ;; truehd) - echo " 0 -> Stereo" - echo " 1 -> 5.0" - echo " 2 -> 5.1" + echo " 0 -> Stereo 4 -> 4.1" + echo " 1 -> 3.0 5 -> 5.0" + echo " 2 -> 3.1 6 -> 5.1" + echo " 3 -> 4.0" echo - printf "Track $i: Specify the Audio Channel Layout default is 2: " + printf "Track $i: Specify the Audio Channel Layout default is 6: " read achanlayouti case "${achanlayouti}" in 0) achlayouti="stereo"; achmetai=" Stereo" ;; - 1) achlayouti="5.0"; achmetai=" 5.0" ;; - 2|"") achlayouti="5.1"; achmetai=" 5.1" ;; + 1) achlayouti="3.0"; achmetai="3.0" ;; + 2) achlayouti="3.1"; achmetai="3.1" ;; + 3) achlayouti="quad"; achmetai="Quad" ;; + 4) achlayouti="4.1"; achmetai="4.1" ;; + 5) achlayouti="5.0"; achmetai=" 5.0" ;; + 6|"") achlayouti="5.1"; achmetai=" 5.1" ;; *) error "-> Invalid option!" exit 1 @@ -3116,7 +3121,7 @@ echo " 2 -> 3.0 6 -> 5.0(side) 10 -> 6.1(front) 14 -> 7.1" echo " 3 -> Quad 7 -> 5.1 11 -> 6.1(back) 15 -> 7.1(wide)" echo - printf "Track $i: Specify the Audio Channel Layout default is 14: " + printf "Track $i: Specify the Audio Channel Layout default is 15: " read achanlayouti case "${achanlayouti}" in 0) achlayouti="mono"; achmetai=" Mono" ;; @@ -3133,8 +3138,8 @@ 11) achlayouti="6.1(back)"; achmetai=" 6.1(back)" ;; 12) achlayouti="7.0"; achmetai=" 7.0" ;; 13) achlayouti="7.0(front)"; achmetai=" 7.0(front)" ;; - 14|"") achlayouti="7.1"; achmetai=" 7.1" ;; - 15) achlayouti="7.1(wide)"; achmetai=" 7.1(wide)" ;; + 14) achlayouti="7.1"; achmetai=" 7.1" ;; + 15|"") achlayouti="7.1(wide)"; achmetai=" 7.1(wide)" ;; 16) achlayouti="7.1(wide-side)"; achmetai=" 7.1(wide-side)" ;; *) error "-> Invalid option!" @@ -3171,7 +3176,7 @@ echo " 2 -> 2.1 6 -> 5.0 10 -> 6.0 14 -> 6.1(back) 18 -> 7.1(wide)" echo " 3 -> 3.0 7 -> 5.0(side) 11 -> 6.0(front) 15 -> 7.0 19 -> 7.1(wide-side)" echo - printf "Track $i: Specify the Audio Channel Layout default is 17: " + printf "Track $i: Specify the Audio Channel Layout default is 18: " read achanlayouti case "${achanlayouti}" in 0) achlayouti="mono"; achmetai=" Mono" ;; @@ -3191,8 +3196,8 @@ 14) achlayouti="6.1(back)"; achmetai=" 6.1(back)" ;; 15) achlayouti="7.0"; achmetai=" 7.0" ;; 16) achlayouti="7.0(front)"; achmetai=" 7.0(front)" ;; - 17|"") achlayouti="7.1"; achmetai=" 7.1" ;; - 18) achlayouti="7.1(wide)"; achmetai=" 7.1(wide)" ;; + 17) achlayouti="7.1"; achmetai=" 7.1" ;; + 18|"") achlayouti="7.1(wide)"; achmetai=" 7.1(wide)" ;; 19) achlayouti="7.1(wide-side)"; achmetai=" 7.1(wide-side)" ;; *) error "-> Invalid option!"
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
.