Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 28
View file
ffxvid.changes
Changed
@@ -1,5 +1,14 @@ ------------------------------------------------------------------- -Wed Jan 10 09:20:00 UTC 2018 - neutrino8@opensuse.org +Tue Feb 20 11:54:00 UTC 2018 - neutrino8@opensuse.org + +- Update to version 1.2.7 + * Fixed an issue where in some cases write-testing the output + directory will fail due usage of readlink -f instead of + readlink -m + * Update transfer chars to support latest changes to zimg from git + +------------------------------------------------------------------- +Tue Jan 09 20:46:00 UTC 2018 - neutrino8@opensuse.org - Update to version 1.2.6 * Moved the eq filter to almost the end of the video filter chain
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.2.6 +Version: 1.2.7 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffxvid-1.2.6.tar.gz/ChangeLog -> ffxvid-1.2.7.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2018-02-20 - ffxvid 1.2.7 + * Fixed an issue where in some cases write-testing the output + directory will fail due usage of readlink -f instead of + readlink -m + * Update transfer chars to support latest changes to zimg from git + 2018-01-09 - ffxvid 1.2.6 * Moved the eq filter to almost the end of the video filter chain as it can lead to banding in certain cases in case the filter
View file
ffxvid-1.2.6.tar.gz/ffxvid -> ffxvid-1.2.7.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.2.6 -# Date: 2018-01-09 +# Version: 1.2.7 +# Date: 2018-02-20 # # 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.2.6" +version="1.2.7" CFG="$HOME/.ffxvid" cfgversion="8" @@ -365,7 +365,7 @@ fi if [ -z "$batchmode" ]; then - input="$(readlink -f "$input")" + input="$(readlink -e "$input")" fi if [ ! -z "$batchmode" ]; then @@ -400,9 +400,9 @@ error "-> Could not create the output directory!" exit 1 fi - OUTPUT="$(readlink -f "$output")" + OUTPUT="$(readlink -m "$output")" else - OUTPUT="$(readlink -f "$OUTDIR/$output")" + OUTPUT="$(readlink -m "$OUTDIR/$output")" fi fi @@ -536,7 +536,7 @@ exit 1 ;; esac - METACOVER="-attach \"$(readlink -f "$cover")\" -metadata:s:t mimetype=\"image/$img\"" + METACOVER="-attach \"$(readlink -e "$cover")\" -metadata:s:t mimetype=\"image/$img\"" fi fi fi @@ -990,8 +990,8 @@ echo else case "${VCHARS[3]}" in - smpte2084|bt2020-10) ztrans="2020_10" ;; - bt2020-12) ztrans="2020_12" ;; + smpte2084|bt2020-10) ztrans="bt2020-10" ;; + bt2020-12) ztrans="bt2020-12" ;; *) ztrans="${VCHARS[3]}" ;; esac zscale="zscale=transfer=$ztrans"
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
.