Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 177
View file
ffhevc.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Nov 04 16:30:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 4.0.4 + * Bugfix: Using ADPCM encoding for DTS audio wasn't possible due + to wrong variable used in the if conditional + +------------------------------------------------------------------- Sat Nov 02 13:55:00 UTC 2019 - neutrino8@opensuse.org - Update to version 4.0.3
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.0.3 +Version: 4.0.4 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.0.3.tar.gz/ChangeLog -> ffhevc-4.0.4.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2019-11-04 - ffhevc 4.0.4 + * Bugfix: Using ADPCM encoding for DTS audio wasn't possible due + to wrong variable used in the if conditional + 2019-11-02 - ffhevc 4.0.3 * Merged two case statements in the metadata code for mkv/mp4/mov * Support dithering when downscaling to 8-bit pixels
View file
ffhevc-4.0.3.tar.gz/ffhevc -> ffhevc-4.0.4.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: 4.0.3 -# Date: 2019-11-02 +# Version: 4.0.4 +# Date: 2019-11-04 # # 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="4.0.3" +version="4.0.4" CFG="$HOME/.ffhevc" cfgversion="50" @@ -2757,7 +2757,7 @@ dts) printf "Track $i: Use ADPCM Encoding? [y/N]: " read dts_adpcm[i] - if [ "$dts_adpcm" = "y" -o "$dts_adpcm" = "Y" ]; then + if [ "${dts_adpcm[i]}" = "y" -o "${dts_adpcm[i]}" = "Y" ]; then audbtr[i]="${audbtr[i]} -dca_adpcm:a:${audindex[i]} true" fi ;;
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
.