Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 105
View file
ffxvid.changes
Changed
@@ -1,4 +1,14 @@ ------------------------------------------------------------------- +Wed Nov 06 10:28:00 UTC 2024 - neutrino8@gmail.com + +- Update to version 1.8.6 + * Fixed a bug in the video_hdr_to_sdr_func() function + * Replaced the detelecine filter with a combination + of the fieldmatch, bwdif and decimate filters + * Use 0 as default value for the tonemap desat + filter option + +------------------------------------------------------------------- Sun Nov 03 13:46:00 UTC 2024 - neutrino8@gmail.com - Update to version 1.8.5
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.8.5 +Version: 1.8.6 Release: %mkrel 1 Summary: A small shell script for encoding to Xvid with FFmpeg License: GPL-2.0+
View file
ffxvid-1.8.5.tar.gz/ChangeLog -> ffxvid-1.8.6.tar.gz/ChangeLog
Changed
@@ -1,3 +1,10 @@ +2024-11-06 - ffxvid 1.8.6 + * Fixed a bug in the video_hdr_to_sdr_func() function + * Replaced the detelecine filter with a combination + of the fieldmatch, bwdif and decimate filters + * Use 0 as default value for the tonemap desat + filter option + 2024-11-03 - ffxvid 1.8.5 * Support copying full DTS-X audio or only the DTS core
View file
ffxvid-1.8.5.tar.gz/ffxvid -> ffxvid-1.8.6.tar.gz/ffxvid
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to Xvid video using FFmpeg. # Author: Grozdan "microchip" Nikolov <neutrino8@gmail.com> -# Version: 1.8.5 -# Date: 2024-11-03 +# Version: 1.8.6 +# Date: 2024-11-06 # # 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="1.8.5" +version="1.8.6" CFG="$HOME/.ffxvid" cfgversion="15" @@ -974,16 +974,16 @@ if "$detel" = "y" -o "$detel" = "Y" ; then video_field_parity_func printf "Specify the Field Parity of the Input File tff/bff - default is $defpar: " - read ipar - test -z "$ipar" && fparity="$defpar" || fparity="$ipar" + read inpar + test -z "$inpar" && fparity="$defpar" || fparity="$inpar" case "$fparity" in - b*|B*) forder="bottom" ;; - ""|*) forder="top" ;; + b*|B*) field="bottom" ;; + *) field="top" ;; esac - printf "Specify the Pulldown Pattern to Apply default is 23: " - read pdp - test -z "$pdp" && pulldown="23" || pulldown="$pdp" - detelecine="detelecine=first_field=$forder:pattern=$pulldown," + printf "Specify the Field to Match From top/bottom - default is $field: " + read fmf + test -z "$fmf" && fmatch="$field" || fmatch="$fmf" + detelecine="fieldmatch=order=$fparity:field=$fmatch:combmatch=full,bwdif=deint=interlaced,decimate," fi fi } @@ -1148,9 +1148,9 @@ read tmparam test ! -z "$tmparam" && tm_param=":param=$tmparam" - printf "Specify the Tonamap Desaturation Strength default is 2.8: " + printf "Specify the Tonamap Desaturation Strength default is 0.0: " read desat - test -z "$desat" && tm_desat="2.8" || tm_desat="$desat" + test -z "$desat" && tm_desat=":desat=0" || tm_desat=":desat=$desat" echo video_chars_func vchars echo
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
.