Projects
Multimedia
ffxvid
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 112
View file
ffxvid.changes
Changed
@@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Nov 26 11:06:00 UTC 2024 - neutrino8@gmail.com + +- Update to version 1.8.11 + * Fixed a syntax error in the video_deinterlace_func() + function. Reported by Christian Marillat + +------------------------------------------------------------------- Thu Nov 21 15:25:00 UTC 2024 - neutrino8@gmail.com - Update to version 1.8.10
View file
ffxvid.spec
Changed
@@ -17,7 +17,7 @@ Name: ffxvid -Version: 1.8.10 +Version: 1.8.11 Release: %mkrel 1 Summary: A small shell script for encoding to Xvid with FFmpeg License: GPL-2.0+
View file
ffxvid-1.8.10.tar.gz/ChangeLog -> ffxvid-1.8.11.tar.gz/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2024-11-26 - ffxvid 1.8.11 + * Fixed a syntax error in the video_deinterlace_func() + function. Reported by Christian Marillat + 2024-11-21 - ffxvid 1.8.10 * Added support for disabling automatic metadata such as video title, audio codec names, etc
View file
ffxvid-1.8.10.tar.gz/ffxvid -> ffxvid-1.8.11.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.10 -# Date: 2024-11-21 +# Version: 1.8.11 +# Date: 2024-11-26 # # 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.10" +version="1.8.11" CFG="$HOME/.ffxvid" cfgversion="16" @@ -945,7 +945,7 @@ ;; esac video_deint_func ofps - ; + ;; 1) echo green "-> Detecting FPS value..." @@ -1698,7 +1698,8 @@ echo " 2 -> Bicubic" echo " 3 -> Spline16" echo " 4 -> Spline36" - echo " 5 -> Lanczos" + echo " 5 -> Lanczos3" + echo " 6 -> Lanczos4" echo printf "Specify the Software Scaler default is 5: " read swsopt @@ -1708,13 +1709,14 @@ 2) zfilter="bicubic" ;; 3) zfilter="spline16" ;; 4) zfilter="spline36" ;; - 5|"") zfilter="lanczos" ;; + 5|"") zfilter="lanczos"; zparam=":param_a=3" ;; + 6) zfilter="lanczos"; zparam=":param_a=4" ;; *) error "-> Invalide software scaler!" exit 1 ;; esac - scale="zscale=width=$ZWIDTH:height=$ZHEIGHT:filter=$zfilter," + scale="zscale=width=$ZWIDTH:height=$ZHEIGHT:filter=$zfilter$zparam," ;; esac 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
.