Compare commits

..

2 Commits

Author SHA1 Message Date
Camille Moulin
afea827e8d docs: Add some Qtmodules as deps for building
Signed-off-by: Camille Moulin <camille.moulin@free.fr>
2024-11-01 21:37:41 +01:00
Camille Moulin
4f44f42e11 Update build.md with dependencies for Ubuntu 24.10 2024-11-01 19:21:09 +00:00
620 changed files with 274529 additions and 866849 deletions

View File

@@ -73,8 +73,7 @@
"config-opts": [ "config-opts": [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo", "-DCMAKE_BUILD_TYPE=RelWithDebInfo",
"-DRELEASE_BUILD=OFF", "-DRELEASE_BUILD=OFF",
"-DBUILD_TESTING=OFF", "-DBUILD_TESTING=OFF"
"-DFETCH_OTIO=OFF"
], ],
"post-install": [ "post-install": [
"install -d /app/extensions/Plugins" "install -d /app/extensions/Plugins"

View File

@@ -9,7 +9,6 @@ include:
- /gitlab-templates/xml-lint.yml - /gitlab-templates/xml-lint.yml
# CI Qt6 # CI Qt6
- /gitlab-templates/linux-qt6.yml - /gitlab-templates/linux-qt6.yml
- /gitlab-templates/linux-qt6-next.yml
- /gitlab-templates/freebsd-qt6.yml - /gitlab-templates/freebsd-qt6.yml
# CD Qt6 # CD Qt6
- /gitlab-templates/flatpak.yml - /gitlab-templates/flatpak.yml

View File

@@ -2,7 +2,7 @@
# SPDX-License-Identifier: CC0-1.0 # SPDX-License-Identifier: CC0-1.0
Dependencies: Dependencies:
- 'on': ['@all'] - 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6', 'macOS/Qt6']
'require': 'require':
'frameworks/extra-cmake-modules': '@latest-kf6' 'frameworks/extra-cmake-modules': '@latest-kf6'
'frameworks/breeze-icons' : '@latest-kf6' 'frameworks/breeze-icons' : '@latest-kf6'

View File

@@ -15,7 +15,7 @@ Active Kdenlive authors
Vincent Pinon <vpinon@kde.org> Vincent Pinon <vpinon@kde.org>
KF5 port, Windows cross-build, bugs fixing KF5 port, Windows cross-build, bugs fixing
2012-present 2012-present
Julius Künzel <julius.kuenzel@kde.org> Julius Künzel <jk.kdedev@smartlab.uber.space>
Bugs fixing Bugs fixing
2020-present 2020-present
Sashmita Raghav Sashmita Raghav

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org>, Jean-Baptiste Mardelle <jb@kdenlive.org>, Alberto Villa <avilla@FreeBSD.org>, Albert Astals Cid <aacid@kde.org>, Vincent Pinon <vpinon@kde.org>, Laurent Montel <montel@kde.org>, Vincent Pinon <vincent.pinon@asygn.com>, Nicolas Carion <french.ebook.lover@gmail.com> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>, Jean-Baptiste Mardelle <jb@kdenlive.org>, Alberto Villa <avilla@FreeBSD.org>, Albert Astals Cid <aacid@kde.org>, Vincent Pinon <vpinon@kde.org>, Laurent Montel <montel@kde.org>, Vincent Pinon <vincent.pinon@asygn.com>, Nicolas Carion <french.ebook.lover@gmail.com>
cmake_minimum_required(VERSION 3.16) cmake_minimum_required(VERSION 3.16)
@@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.16)
# stable release. An additional number can be used for bugfix-only releases. # stable release. An additional number can be used for bugfix-only releases.
# KDE Application Version, managed by release script # KDE Application Version, managed by release script
set (RELEASE_SERVICE_VERSION_MAJOR "25") set (RELEASE_SERVICE_VERSION_MAJOR "24")
set (RELEASE_SERVICE_VERSION_MINOR "07") set (RELEASE_SERVICE_VERSION_MINOR "11")
set (RELEASE_SERVICE_VERSION_MICRO "70") set (RELEASE_SERVICE_VERSION_MICRO "70")
set(KDENLIVE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") set(KDENLIVE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
@@ -25,7 +25,6 @@ option(CRASH_AUTO_TEST "Auto-generate testcases upon some crashes (uses RTTR lib
option(BUILD_FUZZING "Build fuzzing target" OFF) option(BUILD_FUZZING "Build fuzzing target" OFF)
option(BUILD_QCH "Build source code documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) option(BUILD_QCH "Build source code documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF)
add_feature_info(QCH ${BUILD_QCH} "Source code documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") add_feature_info(QCH ${BUILD_QCH} "Source code documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)")
option(FETCH_OTIO "Use CMake FetchContent to download and build the OpenTimelineIO dependency" ON)
# shall we use DBus? # shall we use DBus?
# enabled per default on Linux & BSD systems # enabled per default on Linux & BSD systems
@@ -39,13 +38,13 @@ option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" OFF)
# Minimum versions of main dependencies. # Minimum versions of main dependencies.
set(MLT_MIN_MAJOR_VERSION 7) set(MLT_MIN_MAJOR_VERSION 7)
set(MLT_MIN_MINOR_VERSION 28) set(MLT_MIN_MINOR_VERSION 22)
set(MLT_MIN_PATCH_VERSION 0) set(MLT_MIN_PATCH_VERSION 0)
set(MLT_MIN_VERSION ${MLT_MIN_MAJOR_VERSION}.${MLT_MIN_MINOR_VERSION}.${MLT_MIN_PATCH_VERSION}) set(MLT_MIN_VERSION ${MLT_MIN_MAJOR_VERSION}.${MLT_MIN_MINOR_VERSION}.${MLT_MIN_PATCH_VERSION})
# Qt version # Qt version
set(QT_MIN_VERSION 6.5.0) set(QT_MIN_VERSION 6.5.0)
set(KF_DEP_VERSION "6.3.0") set(KF_DEP_VERSION "6.0.0")
find_package(ECM ${KF_DEP_VERSION} REQUIRED CONFIG) find_package(ECM ${KF_DEP_VERSION} REQUIRED CONFIG)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules)
@@ -54,13 +53,6 @@ if (NOT DEFINED QT_MAJOR_VERSION)
set(QT_MAJOR_VERSION 6) set(QT_MAJOR_VERSION 6)
endif() endif()
# The dependencies (currently only OpenTimelineIO) are located in a
# subdirectory so their CMake variables are not exposed to the main project.
#
# Note that this needs to come before the KDECompilerSettings. OTIO is not
# compatible with the KDE compiler flag "-fno-operator-names".
add_subdirectory(deps)
## include ECM Modules ## include ECM Modules
include(KDECompilerSettings NO_POLICY_SCOPE) include(KDECompilerSettings NO_POLICY_SCOPE)
include(ECMInstallIcons) include(ECMInstallIcons)
@@ -73,7 +65,6 @@ include(ECMQtDeclareLoggingCategory)
include(ECMEnableSanitizers) include(ECMEnableSanitizers)
include(ECMAddQch) include(ECMAddQch)
include(ECMDeprecationSettings) include(ECMDeprecationSettings)
include(ECMQmlModule)
remove_definitions(-DQT_NO_CAST_FROM_ASCII) # Defined in KDECompilerSettings, but we don't want that yet remove_definitions(-DQT_NO_CAST_FROM_ASCII) # Defined in KDECompilerSettings, but we don't want that yet
# MLT uses variadic macros upstream and hence the build log gets spamed, so disable the warning # MLT uses variadic macros upstream and hence the build log gets spamed, so disable the warning
if(NOT MSVC) if(NOT MSVC)
@@ -88,7 +79,6 @@ endif()
add_definitions(-DTRANSLATION_DOMAIN=\"kdenlive\") add_definitions(-DTRANSLATION_DOMAIN=\"kdenlive\")
find_package(KF${KF_MAJOR} ${KF_DEP_VERSION} find_package(KF${KF_MAJOR} ${KF_DEP_VERSION}
REQUIRED COMPONENTS REQUIRED COMPONENTS
I18n
Archive Archive
Bookmarks Bookmarks
Codecs Codecs
@@ -130,8 +120,6 @@ find_package(Qt${QT_MAJOR_VERSION}
Multimedia Multimedia
NetworkAuth NetworkAuth
SvgWidgets SvgWidgets
Xml
# Test
) )
if(USE_DBUS) if(USE_DBUS)
@@ -148,34 +136,6 @@ set_package_properties(MLT PROPERTIES DESCRIPTION "Multimedia framework"
PURPOSE "Required to do video processing") PURPOSE "Required to do video processing")
message(STATUS "Found MLT++: ${MLTPP_LIBRARIES}") message(STATUS "Found MLT++: ${MLTPP_LIBRARIES}")
# LibAV
find_package(PkgConfig REQUIRED)
pkg_check_modules(LIBAV REQUIRED IMPORTED_TARGET
libavformat
libavcodec
libswresample
libavutil
)
# OpenTimelineIO
if(FETCH_OTIO)
include_directories(${otio_SOURCE_DIR}/src)
# Enable exceptions for OTIO and dependencies.
kde_target_enable_exceptions(opentime PUBLIC)
kde_target_enable_exceptions(opentimelineio PUBLIC)
kde_target_enable_exceptions(Imath PUBLIC)
else()
find_package(OpenTimelineIO REQUIRED)
# Work around for header oddity with OTIO and Imath
find_package(Imath REQUIRED)
get_target_property(IMATH_INCLUDE_DIRS Imath::Imath INTERFACE_INCLUDE_DIRECTORIES)
include_directories("${IMATH_INCLUDE_DIRS}/Imath")
set_package_properties(OpenTimelineIO PROPERTIES
DESCRIPTION "API and interchange format for editorial timeline information"
URL "http://opentimeline.io/"
PURPOSE "Required for OpenTimelineIO import and export")
endif()
# Windows # Windows
include(CheckIncludeFiles) include(CheckIncludeFiles)
check_include_files(malloc.h HAVE_MALLOC_H) check_include_files(malloc.h HAVE_MALLOC_H)
@@ -271,7 +231,7 @@ elseif(BUILD_FUZZING)
message(STATUS "Fuzzing build was requested but not enabled because compiler is ${CMAKE_CXX_COMPILER_ID} and not Clang") message(STATUS "Fuzzing build was requested but not enabled because compiler is ${CMAKE_CXX_COMPILER_ID} and not Clang")
endif() endif()
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
# pre-commit hook # pre-commit hook
include(KDEGitCommitHooks) include(KDEGitCommitHooks)

View File

@@ -4,7 +4,7 @@
kdenlive_subdirs="plugins renderer data src src/ui" kdenlive_subdirs="plugins renderer data src src/ui"
$EXTRACTRC --tag=name --tag=description --tag=label --tag=comment --tag=paramlistdisplay data/transitions/*.xml data/transitions/frei0r/*.xml data/effects/*.xml data/effects/frei0r/*.xml data/effects/avfilter/*.xml data/effects/ladspa/*.xml data/effects/sox/*.xml data/generators/*.xml data/kdenliveeffectscategory.rc >> rc.cpp $EXTRACTRC --tag=name --tag=description --tag=label --tag=comment --tag=paramlistdisplay data/transitions/*.xml data/effects/*.xml data/generators/*.xml data/kdenliveeffectscategory.rc >> rc.cpp
$EXTRACTRC `find $kdenlive_subdirs -name \*.rc -a ! -name encodingprofiles.rc -a ! -name camcorderfilters.rc -a ! -name externalproxies.rc -o -name \*.ui` >> rc.cpp $EXTRACTRC `find $kdenlive_subdirs -name \*.rc -a ! -name encodingprofiles.rc -a ! -name camcorderfilters.rc -a ! -name externalproxies.rc -o -name \*.ui` >> rc.cpp
$XGETTEXT `find $kdenlive_subdirs -name \*.cpp -o -name \*.h -o -name \*.qml` *.cpp -o $podir/kdenlive.pot $XGETTEXT `find $kdenlive_subdirs -name \*.cpp -o -name \*.h -o -name \*.qml` *.cpp -o $podir/kdenlive.pot

View File

@@ -85,7 +85,7 @@ SPDX-FileCopyrightText = "Marco Gittler"
SPDX-License-Identifier = "CC0-1.0" SPDX-License-Identifier = "CC0-1.0"
[[annotations]] [[annotations]]
path = ["data/Info.plist", "data/camcorderfilters.rc", "data/clipjobsettings.rc", "data/encodingprofiles.rc", "data/externalproxies.rc", "data/westley.xml", "data/scripts/automask/sammodelsinfo.rc"] path = ["data/Info.plist", "data/camcorderfilters.rc", "data/clipjobsettings.rc", "data/encodingprofiles.rc", "data/externalproxies.rc", "data/westley.xml"]
precedence = "aggregate" precedence = "aggregate"
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle" SPDX-FileCopyrightText = "Jean-Baptiste Mardelle"
SPDX-License-Identifier = "CC0-1.0" SPDX-License-Identifier = "CC0-1.0"
@@ -205,7 +205,7 @@ SPDX-FileCopyrightText = "2020 Kdenlive contributors"
SPDX-License-Identifier = "CC-BY-SA-4.0" SPDX-License-Identifier = "CC-BY-SA-4.0"
[[annotations]] [[annotations]]
path = ["src/qml/qmldir"] path = ["src/qml/qmldir", "src/kdenlivesettings.kcfgc"]
precedence = "aggregate" precedence = "aggregate"
SPDX-FileCopyrightText = "None" SPDX-FileCopyrightText = "None"
SPDX-License-Identifier = "CC0-1.0" SPDX-License-Identifier = "CC0-1.0"

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Vincent PINON <vincent.pinon@laposte.net>, Jean-Baptiste Mardelle <jb@kdenlive.org>, Julius Künzel <julius.kuenzel@kde.org> # SPDX-FileCopyrightText: Vincent PINON <vincent.pinon@laposte.net>, Jean-Baptiste Mardelle <jb@kdenlive.org>, Julius Künzel <jk.kdedev@smartlab.uber.space>
add_subdirectory(effects) add_subdirectory(effects)
add_subdirectory(generators) add_subdirectory(generators)

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Jean-Baptiste Mardelle <jb@kdenlive.org>, Julius Künzel <julius.kuenzel@kde.org>, Massimo Stella <maxstar@tin.it> # SPDX-FileCopyrightText: Jean-Baptiste Mardelle <jb@kdenlive.org>, Julius Künzel <jk.kdedev@smartlab.uber.space>, Massimo Stella <maxstar@tin.it>
INSTALL (FILES INSTALL (FILES
@@ -20,7 +20,6 @@ chroma_hold.xml
chroma.xml chroma.xml
crop.xml crop.xml
dance.xml dance.xml
dropshadow.xml
dust.xml dust.xml
dynamic_loudness.xml dynamic_loudness.xml
dynamictext.xml dynamictext.xml
@@ -32,7 +31,6 @@ freeze.xml
gain.xml gain.xml
gamma.xml gamma.xml
gpstext.xml gpstext.xml
gpsgraphic.xml
grain.xml grain.xml
greyscale.xml greyscale.xml
invert.xml invert.xml
@@ -60,16 +58,13 @@ qtcrop.xml
rboctaveshift.xml rboctaveshift.xml
rbpitchscale.xml rbpitchscale.xml
rotation_keyframable.xml rotation_keyframable.xml
rotate-3-way.xml
rotation.xml rotation.xml
rotoscoping.xml rotoscoping.xml
scratchlines.xml scratchlines.xml
sepia.xml sepia.xml
shape.xml shape.xml
shear.xml
speed.xml speed.xml
spot_remover.xml spot_remover.xml
strobe.xml
swapchannels.xml swapchannels.xml
timer.xml timer.xml
tcolor.xml tcolor.xml

View File

@@ -72,7 +72,6 @@ avfilter_flanger.xml
avfilter_framestep.xml avfilter_framestep.xml
avfilter_fspp.xml avfilter_fspp.xml
avfilter_gblur.xml avfilter_gblur.xml
avfilter_gradfun.xml
avfilter_graphmonitor.xml avfilter_graphmonitor.xml
avfilter_haas.xml avfilter_haas.xml
avfilter_hflip.xml avfilter_hflip.xml
@@ -99,10 +98,8 @@ avfilter_monochrome.xml
avfilter_negate.xml avfilter_negate.xml
avfilter_noise.xml avfilter_noise.xml
avfilter_normalize.xml avfilter_normalize.xml
avfilter_oscilloscope.xml
avfilter_phase.xml avfilter_phase.xml
avfilter_photosensitivity.xml avfilter_photosensitivity.xml
avfilter_pixelize.xml
avfilter_prewitt.xml avfilter_prewitt.xml
avfilter_random.xml avfilter_random.xml
avfilter_removegrain.xml avfilter_removegrain.xml

View File

@@ -8,7 +8,7 @@
<name>Central frequency</name> <name>Central frequency</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Method</name> <name>Method</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="707.1" min="1" max="9999" decimals="2"> <parameter type="constant" name="av.w" default="707.1" min="1" max="9999" decimals="2">

View File

@@ -11,7 +11,7 @@
<name>Constant skirt gain</name> <name>Constant skirt gain</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Method</name> <name>Method</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="0.5" min="1" max="9999" decimals="1"> <parameter type="constant" name="av.w" default="0.5" min="1" max="9999" decimals="1">

View File

@@ -8,7 +8,7 @@
<name>Central frequency</name> <name>Central frequency</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Method</name> <name>Method</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="0.5" min="0.1" max="9999" decimals="1"> <parameter type="constant" name="av.w" default="0.5" min="0.1" max="9999" decimals="1">

View File

@@ -11,7 +11,7 @@
<name>Central frequency</name> <name>Central frequency</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Method</name> <name>Method</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="0.5" min="1" max="9999" decimals="2"> <parameter type="constant" name="av.w" default="0.5" min="1" max="9999" decimals="2">

View File

@@ -4,22 +4,16 @@
<name>Chroma Hold</name> <name>Chroma Hold</name>
<description>Remove all color information for all colors except for certain one. </description> <description>Remove all color information for all colors except for certain one. </description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="color" name="av.color" notintimeline="1"> <parameter type="fixedcolor" name="av.color">
<name>Color key</name> <name>Color key</name>
<comment>The color which will not be replaced with neutral chroma</comment>
</parameter> </parameter>
<parameter type="animated" name="av.similarity" default="0.01" max="1.00" min="0.01" decimals="2" notintimeline="1"> <parameter type="constant" name="av.similarity" default="1" max="1" min="0" decimals="2">
<name>Similarity</name> <name>Similarity</name>
<comment><![CDATA[Similarity percentage with the select color<br>
0.01 matches only the exact key color, while 1.0 matches everything.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.blend" default="0" max="1" min="0" decimals="2" notintimeline="1"> <parameter type="constant" name="av.blend" default="0" max="1" min="0" decimals="2">
<name>Blend</name> <name>Blend</name>
<comment><![CDATA[Blend percentage. 0.0 makes pixels either fully grey, or not grey at all.<br>
Higher values result in more preserved color.]]></comment>
</parameter> </parameter>
<parameter type="bool" name="av.yuv" default="false"> <parameter type="bool" name="av.yuv" default="false">
<name>YUV color</name> <name>for YUV color</name>
<comment><![CDATA[Select this if the clip has YUV data instead of RGB.]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -14,10 +14,10 @@
</parameter> </parameter>
<parameter type="list" name="av.trc" default="bt709" paramlist="bt709;bt470m;bt470bg;gamma22;gamma28;smpte170m;smpte240m;srgb;iec61966-2-1;iec61966-2-4;xvycc;bt2020-10;bt2020-12"> <parameter type="list" name="av.trc" default="bt709" paramlist="bt709;bt470m;bt470bg;gamma22;gamma28;smpte170m;smpte240m;srgb;iec61966-2-1;iec61966-2-4;xvycc;bt2020-10;bt2020-12">
<paramlistdisplay>BT.709,BT.470M,BT.470BG,Constant gamma of 2.2,Constant gamma of 2.8,SMPTE-170M,SMPTE-240M,SRGB,iec61966-2-1,iec61966-2-4,xvycc,BT.2020 for 10-bits content, BT.2020 for 12-bits content</paramlistdisplay> <paramlistdisplay>BT.709,BT.470M,BT.470BG,Constant gamma of 2.2,Constant gamma of 2.8,SMPTE-170M,SMPTE-240M,SRGB,iec61966-2-1,iec61966-2-4,xvycc,BT.2020 for 10-bits content, BT.2020 for 12-bits content</paramlistdisplay>
<name>Output transfer characteristics</name> <name>Output transfer characteristicse</name>
</parameter> </parameter>
<parameter type="list" name="av.primaries" default="bt709" paramlist="bt709;bt470m;bt470bg;smpte170m;smpte240m;film;smpte431;smpte432;bt2020;jedec-p22"> <parameter type="list" name="av.primaries" default="bt709" paramlist="bt709;bt470m;bt470bg;smpte170m;smpte240m;film;smpte431;smpte432;bt2020;jedec-p22">
<paramlistdisplay>BT.709,BT.470M,BT.470BG,SMPTE-170M,SMPTE-240M,Film,Smpte-431,SMPTE-432,BT.2020,JEDEC P22 phosphors</paramlistdisplay> <paramlistdisplay>BT.709,BT.470M,BT.470BG,SMPTE-170M,SMPTE-240M,Film,Smpte-431,SMPTE-432,BT.2020,JEDEC P22 phsphors</paramlistdisplay>
<name>Output Color Primaries</name> <name>Output Color Primaries</name>
</parameter> </parameter>
<parameter type="list" name="av.range" default="pc" paramlist="tv;mpeg;pc;jpeg"> <parameter type="list" name="av.range" default="pc" paramlist="tv;mpeg;pc;jpeg">
@@ -48,7 +48,7 @@
<name>Override input colorspace</name> <name>Override input colorspace</name>
</parameter> </parameter>
<parameter type="list" name="av.iprimaries" default="bt709" paramlist="bt709;bt470m;bt470bg;smpte170m;smpte240m;film;smpte431;smpte432;bt2020;jedec-p22"> <parameter type="list" name="av.iprimaries" default="bt709" paramlist="bt709;bt470m;bt470bg;smpte170m;smpte240m;film;smpte431;smpte432;bt2020;jedec-p22">
<paramlistdisplay>BT.709,BT.470M,BT.470BG,SMPTE-170M,SMPTE-240M,Film,Smpte-431,SMPTE-432,BT.2020,JEDEC P22 phosphors</paramlistdisplay> <paramlistdisplay>BT.709,BT.470M,BT.470BG,SMPTE-170M,SMPTE-240M,Film,Smpte-431,SMPTE-432,BT.2020,JEDEC P22 phsphors</paramlistdisplay>
<name>Override input color primaries</name> <name>Override input color primaries</name>
</parameter> </parameter>
<parameter type="list" name="av.itrc" default="bt709" paramlist="bt709;bt470m;bt470bg;gamma22;gamma28;smpte170m;smpte240m;srgb;iec61966-2-1;iec61966-2-4;xvycc;bt2020-10;bt2020-12"> <parameter type="list" name="av.itrc" default="bt709" paramlist="bt709;bt470m;bt470bg;gamma22;gamma28;smpte170m;smpte240m;srgb;iec61966-2-1;iec61966-2-4;xvycc;bt2020-10;bt2020-12">

View File

@@ -6,11 +6,11 @@
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="constant" name="av.attacks" default="0" min="0" max="3" decimals="3" suffix="sec"> <parameter type="constant" name="av.attacks" default="0" min="0" max="3" decimals="3" suffix="sec">
<name>Attacks</name> <name>Attacks</name>
<comment>A list of times in seconds for each channel over which the instantaneous level of the input signal is averaged to determine its volume. Attacks refers to increase of volume and decays refers to decrease of volume. For most situations, the attack time (response to the audio getting louder) should be shorter than the decay time, because the human ear is more sensitive to sudden loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and a typical value for decay is 0.8 seconds. If specified number of attacks and decays is lower than number of channels, the last set attack/decay will be used for all remaining channels.</comment> <comment>A list of times in seconds for each channel over which the instantaneous level of the input signal is averaged to determine its volume. attacks refers to increase of volume and decays refers to decrease of volume. For most situations, the attack time (response to the audio getting louder) should be shorter than the decay time, because the human ear is more sensitive to sudden loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and a typical value for decay is 0.8 seconds. If specified number of attacks and decays is lower than number of channels, the last set attack/decay will be used for all remaining channels.</comment>
</parameter> </parameter>
<parameter type="constant" name="av.decays" default="0.8" min="0" max="3" decimals="3" suffix="sec"> <parameter type="constant" name="av.decays" default="0.8" min="0" max="3" decimals="3" suffix="sec">
<name>Decays</name> <name>Decays</name>
<comment>A list of times in seconds for each channel over which the instantaneous level of the input signal is averaged to determine its volume. Attacks refers to increase of volume and decays refers to decrease of volume. For most situations, the attack time (response to the audio getting louder) should be shorter than the decay time, because the human ear is more sensitive to sudden loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and a typical value for decay is 0.8 seconds. If specified number of attacks and decays is lower than number of channels, the last set attack/decay will be used for all remaining channels.</comment> <comment>A list of times in seconds for each channel over which the instantaneous level of the input signal is averaged to determine its volume. attacks refers to increase of volume and decays refers to decrease of volume. For most situations, the attack time (response to the audio getting louder) should be shorter than the decay time, because the human ear is more sensitive to sudden loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and a typical value for decay is 0.8 seconds. If specified number of attacks and decays is lower than number of channels, the last set attack/decay will be used for all remaining channels.</comment>
</parameter> </parameter>
<parameter type="constant" name="av.soft-knee" default="0.01" min="0.01" max="90" decimals="2" suffix="dB"> <parameter type="constant" name="av.soft-knee" default="0.01" min="0.01" max="90" decimals="2" suffix="dB">
<name>Soft-Knee</name> <name>Soft-Knee</name>
@@ -22,6 +22,6 @@
</parameter> </parameter>
<parameter type="constant" name="av.volume" default="0" min="-90" max="0" decimals="2" suffix="dB"> <parameter type="constant" name="av.volume" default="0" min="-90" max="0" decimals="2" suffix="dB">
<name>Initial volume</name> <name>Initial volume</name>
<comment>Set an initial volume, in dB, to be assumed for each channel when filtering starts. This permits the user to supply a nominal level initially, so that, for example, a very large gain is not applied to initial signal levels before the companding has begun to operate. A typical value for audio which is initially quiet is -90 dB.</comment> <comment>et an initial volume, in dB, to be assumed for each channel when filtering starts. This permits the user to supply a nominal level initially, so that, for example, a very large gain is not applied to initial signal levels before the companding has begun to operate. A typical value for audio which is initially quiet is -90 dB.</comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -8,7 +8,7 @@ For example, you have recorded guitar with two microphones placed in different l
The best result can be reached when you take one track as base and synchronize other tracks one by one with it. Remember that synchronization/delay tolerance depends on sample rate, too. Higher sample rates will give more tolerance. </description> The best result can be reached when you take one track as base and synchronize other tracks one by one with it. Remember that synchronization/delay tolerance depends on sample rate, too. Higher sample rates will give more tolerance. </description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="constant" name="av.mm" default="0" min="0" max="10" suffix="mm"> <parameter type="constant" name="av.mm" default="0" min="0" max="10" suffix="mm">
<name>Millimeter distance</name> <name>Millimiter distance</name>
<comment>Set millimeters distance. This is compensation distance for fine tuning.</comment> <comment>Set millimeters distance. This is compensation distance for fine tuning.</comment>
</parameter> </parameter>
<parameter type="constant" name="av.cm" default="0" min="0" max="100" suffix="cm"> <parameter type="constant" name="av.cm" default="0" min="0" max="100" suffix="cm">

View File

@@ -3,7 +3,7 @@
<effect tag="avfilter.crystalizer" id="avfilter.crystalizer" type="audio"> <effect tag="avfilter.crystalizer" id="avfilter.crystalizer" type="audio">
<name>Crystalizer</name> <name>Crystalizer</name>
<description>Simple algorithm for audio noise sharpening. <description>Simple algorithm for audio noise sharpening.
This filter linearly increases differences between each audio sample.</description> This filter linearly increases differences betweeen each audio sample.</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="constant" name="av.i" default="2" min="-10" max="10" decimals="2"> <parameter type="constant" name="av.i" default="2" min="-10" max="10" decimals="2">
<name>Intensity</name> <name>Intensity</name>

View File

@@ -1,20 +1,16 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE kpartgui> <!DOCTYPE kpartgui>
<effect tag="avfilter.dblur" id="avfilter.dblur"> <effect tag="avfilter.dblur" id="avfilter.dblur">
<name>Directional Blur</name> <name>DBlur</name>
<description>Apply directional blur filter</description> <description>Apply Directional Blur filter</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.angle" max="360" min="0" decimals="1" default="45" suffix="> <parameter type="animated" name="av.angle" max="360" min="0" default="45">
<name>Angle</name> <name>Angle</name>
<comment><![CDATA[Sets the angle for the direction]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.radius" max="8192" min="0" default="5"> <parameter type="animated" name="av.radius" max="400" min="0" default="5">
<name>Radius</name> <name>Radius</name>
<comment><![CDATA[Sets the radius for the direction]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7"> <parameter type="animated" name="av.planes" max="15" min="0" default="15">
<paramlistdisplay>Alpha,Luminance (Y plane),Chroma (U plane),Chroma (V plane),Red,Green,Blue,All</paramlistdisplay>
<name>Planes to filter</name> <name>Planes to filter</name>
<comment><![CDATA[Sets the color space plane the effect is applied to]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,37 +4,22 @@
<name>Draw Box</name> <name>Draw Box</name>
<description>Draw a colored box on the input video</description> <description>Draw a colored box on the input video</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.x" default="100" min="0" max="%width" factor="1"> <parameter type="constant" name="av.x" default="0" min="0" max="%width" factor="1">
<name>Top-left X</name> <name>X</name>
<comment><![CDATA[X coordinate of top-left corner]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.y" default="100" min="0" max="%height" factor="1"> <parameter type="constant" name="av.y" default="0" min="0" max="%height" factor="1">
<name>Top-left Y</name> <name>Y</name>
<comment><![CDATA[Y coordinate of top-left corner]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.w" default="100" min="1" max="%width" factor="1"> <parameter type="constant" name="av.w" default="0" min="0" max="%width" factor="1">
<name>Width (px)</name> <name>Width</name>
<comment><![CDATA[Width of the box in pixel.<br>
A width of <em>1</em> does not draw a line]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.h" default="100" min="1" max="%height" factor="1"> <parameter type="constant" name="av.h" default="0" min="0" max="%height" factor="1">
<name>Height (px)</name> <name>Height</name>
<comment><![CDATA[Height of the box in pixel.<br>
A height of <em>1</em> does not draw a line]]></comment>
</parameter> </parameter>
<parameter type="fixedcolor" name="av.color" default="0x0000FF" alpha="1"> <parameter type="fixedcolor" name="av.color" default="black">
<name>Color</name> <name>Color</name>
<comment><![CDATA[Select a color for the line.<br>
Use the <em>Alpha</em> value to make the line semi-transparent.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.t" default="3" min="0" max="%height" factor="1"> <parameter type="constant" name="av.t" default="3" min="0" max="%height" factor="1">
<name>Thickness (px)</name> <name>Thickness</name>
<comment><![CDATA[Sets the thickness for the line in pixels]]></comment>
</parameter>
<parameter type="bool" name="av.replace " default="0" min="0" max="1">
<name>Replace color and alpha</name>
<comment><![CDATA[If the input has alpha, checking this<br>
will overwrite the video's color and alpha pixels with the pixels of the painted box.<br>
By default, the box will be composited onto the input, leaving the video's alpha intact.]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,35 +4,22 @@
<name>Draw Grid</name> <name>Draw Grid</name>
<description>Draw a colored grid on the input video</description> <description>Draw a colored grid on the input video</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.x" default="0" min="0" max="%width" factor="1"> <parameter type="constant" name="av.x" default="0" min="0" max="%width" factor="1">
<name>X Offset</name> <name>X Offset</name>
<comment><![CDATA[Distance from the left edge in pixel]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.y" default="0" min="0" max="%height" factor="1"> <parameter type="constant" name="av.y" default="0" min="0" max="%height" factor="1">
<name>Y Offset</name> <name>Y Offset</name>
<comment><![CDATA[Distance from the top edge in pixel]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.w" default="0" min="0" max="%width" factor="1"> <parameter type="constant" name="av.w" default="0" min="0" max="%width" factor="1">
<name>Width</name> <name>Width</name>
<comment><![CDATA[Distance between vertical lines in pixel]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.h" default="0" min="0" max="%height" factor="1"> <parameter type="constant" name="av.h" default="0" min="0" max="%height" factor="1">
<name>Height</name> <name>Height</name>
<comment><![CDATA[Distance between horizontal lines in pixel]]></comment>
</parameter> </parameter>
<parameter type="fixedcolor" name="av.color" default="0x0000FF" alpha="1"> <parameter type="fixedcolor" name="av.color" default="black">
<name>Color</name> <name>Color</name>
<comment><![CDATA[Select a color for the grid lines.<br>
Use the <em>Alpha</em> value to make the grid semi-transparent.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.t" default="3" min="0" max="%height" factor="1"> <parameter type="constant" name="av.t" default="3" min="0" max="%height" factor="1">
<name>Thickness (px)</name> <name>Thickness</name>
<comment><![CDATA[Sets the thickness for the grid lines in pixels]]></comment>
</parameter>
<parameter type="bool" name="av.replace " default="0" min="0" max="1">
<name>Replace color and alpha</name>
<comment><![CDATA[If the input has alpha, checking this<br>
will overwrite the video's color and alpha pixels with the pixels of the grid lines.<br>
By default, the grid lines will be composited onto the input, leaving the video's alpha intact.]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -6,37 +6,24 @@
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="constant" name="av.sigma" default="1" min="0" max="30" factor="1"> <parameter type="constant" name="av.sigma" default="1" min="0" max="30" factor="1">
<name>Sigma</name> <name>Sigma</name>
<comment><![CDATA[Set the noise sigma constant.<br>
This sets denoising strength. Using very high sigma with low overlap may give blocking artifacts.]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.amount" default="1" min="0" max="100" factor="100" decimals="1" suffix="%"> <parameter type="constant" name="av.amount" default="1" min="0.01" max="1" decimals="3">
<name>Amount</name> <name>Amount</name>
<comment><![CDATA[Set the amount of denoising.<br>
By default all detected noise is reduced.]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.block" default="32" min="8" max="256" factor="1"> <parameter type="constant" name="av.block" default="4" min="3" max="6" factor="1">
<name>Block</name> <name>Block</name>
<comment><![CDATA[Set size of block in pixels]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.overlap" default="0.5" min="0.2" max="0.8" decimals="3"> <parameter type="constant" name="av.overlap" default="0.5" min="0.2" max="0.8" decimals="3">
<name>Overlap</name> <name>Overlap</name>
<comment><![CDATA[Set block overlap]]></comment>
</parameter>
<parameter type="list" name="av.method" default="0" paramlist="0;1">
<paramlistdisplay>wiener,hard</paramlistdisplay>
<name>Method</name>
<comment><![CDATA[Set denoising method]]></comment>
</parameter> </parameter>
<parameter type="bool" name="av.prev" default="0"> <parameter type="bool" name="av.prev" default="0">
<name><![CDATA[Add <em>previous</em> frame<br> <name>Add previous frame to temporal denoise</name>
for temporal denoising]]></name>
</parameter> </parameter>
<parameter type="bool" name="av.next" default="0"> <parameter type="bool" name="av.next" default="0">
<name><![CDATA[Add <em>next</em> frame<br> <name>Add next frame to temporal denoise</name>
for temporal denoising]]></name>
</parameter> </parameter>
<parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7"> <parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7;8">
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV</paramlistdisplay> <paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay>
<name>Planes</name> <name>Planes</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,16 +4,16 @@
<name>Fill borders</name> <name>Fill borders</name>
<description>Fill borders of the input video, without changing video stream dimensions. Sometimes video can have garbage at the four edges and you may not want to crop video input to keep size multiple of some number</description> <description>Fill borders of the input video, without changing video stream dimensions. Sometimes video can have garbage at the four edges and you may not want to crop video input to keep size multiple of some number</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.left" default="0" min="0" max="%width" factor="1"> <parameter type="constant" name="av.left" default="0" min="0" max="%width/2" factor="1">
<name>Left</name> <name>Left</name>
</parameter> </parameter>
<parameter type="animated" name="av.right" default="0" min="0" max="%width" factor="1"> <parameter type="constant" name="av.right" default="0" min="0" max="%width/2" factor="1">
<name>Right</name> <name>Right</name>
</parameter> </parameter>
<parameter type="animated" name="av.top" default="0" min="0" max="%height" factor="1"> <parameter type="constant" name="av.top" default="0" min="0" max="%height/2" factor="1">
<name>Top</name> <name>Top</name>
</parameter> </parameter>
<parameter type="animated" name="av.bottom" default="0" min="0" max="%height" factor="1"> <parameter type="constant" name="av.bottom" default="0" min="0" max="%height/2" factor="1">
<name>Bottom</name> <name>Bottom</name>
</parameter> </parameter>
<parameter type="list" name="av.mode" default="smear" paramlist="smear;mirror;fixed;reflect;wrap;fade;margins"> <parameter type="list" name="av.mode" default="smear" paramlist="smear;mirror;fixed;reflect;wrap;fade;margins">

View File

@@ -1,20 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="avfilter.gradfun" id="avfilter.gradfun">
<name>gradfun</name>
<description><![CDATA[Debands video quickly using gradients.<br>
Fix the banding artifacts that are sometimes introduced into nearly flat regions by truncation to 8-bit color depth.<br>
Interpolate the gradients that should go where the bands are, and dither them.<br>
<b>It is designed for playback only. Do not use it prior to lossy compression, because compression tends to lose the dither and bring back the bands</b>.]]></description>
<author>libavfilter</author>
<parameter type="animated" name="av.strength" min="0.51" max="64" default="1.2" decimals="2">
<name>Strength</name>
<comment><![CDATA[The maximum amount by which the filter will change any one pixel.<br>
This is also the threshold for detecting nearly flat regions.]]></comment>
</parameter>
<parameter type="animated" name="av.radius" min="4" max="32" default="16" decimals="0">
<name>Radius</name>
<comment><![CDATA[The neighborhood to fit the gradient to.<br>
A larger radius makes for smoother gradients, but also prevents the filter from modifying the pixels near detailed regions.]]></comment>
</parameter>
</effect>

View File

@@ -8,7 +8,7 @@
<name>Central frequency</name> <name>Central frequency</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Type</name> <name>Type</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="707" min="100" max="99999" decimals="3"> <parameter type="constant" name="av.w" default="707" min="100" max="99999" decimals="3">

View File

@@ -8,7 +8,7 @@
<name>Central frequency</name> <name>Central frequency</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Type</name> <name>Type</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="0.5" min="0.1" max="9999" decimals="1"> <parameter type="constant" name="av.w" default="0.5" min="0.1" max="9999" decimals="1">

View File

@@ -2,7 +2,7 @@
<!DOCTYPE kpartgui> <!DOCTYPE kpartgui>
<effect tag="avfilter.inflate" id="avfilter.inflate"> <effect tag="avfilter.inflate" id="avfilter.inflate">
<name>Inflate</name> <name>Inflate</name>
<description>Replaces the pixel by the local(3x3) average by taking into account only values higher than the pixel. </description> <description>Rreplaces the pixel by the local(3x3) average by taking into account only values higher than the pixel. </description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="constant" name="av.threshold0" default="65535" min="0" max="65535" factor="1"> <parameter type="constant" name="av.threshold0" default="65535" min="0" max="65535" factor="1">
<name>threshold0</name> <name>threshold0</name>

View File

@@ -5,10 +5,10 @@
<description>Correct radial lens distortion </description> <description>Correct radial lens distortion </description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="float" name="av.cx" default="0.5" min="0" max="1" format="double" decimals="2"> <parameter type="float" name="av.cx" default="0.5" min="0" max="1" format="double" decimals="2">
<name>Focal point relative-X coord</name> <name>Focal point relative-X cord</name>
</parameter> </parameter>
<parameter type="float" name="av.cy" default="0.5" min="0" max="1" format="double" decimals="2"> <parameter type="float" name="av.cy" default="0.5" min="0" max="1" format="double" decimals="2">
<name>Focal point relative-Y coord</name> <name>Focal point relative-Y cord</name>
</parameter> </parameter>
<parameter type="float" name="av.k1" default="0" min="-1" max="1" format="double" decimals="2"> <parameter type="float" name="av.k1" default="0" min="-1" max="1" format="double" decimals="2">
<name>Quadratic correction coeff.</name> <name>Quadratic correction coeff.</name>

View File

@@ -8,7 +8,7 @@
<name>Central frequency</name> <name>Central frequency</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Type</name> <name>Type</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="0.707" min="0.001" max="9999" decimals="3"> <parameter type="constant" name="av.w" default="0.707" min="0.001" max="9999" decimals="3">

View File

@@ -8,7 +8,7 @@
<name>Central frequency</name> <name>Central frequency</name>
</parameter> </parameter>
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k"> <parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay> <paramlistdisplay>Hz,Q-FActor,Octave,Slope,KHz</paramlistdisplay>
<name>Type</name> <name>Type</name>
</parameter> </parameter>
<parameter type="constant" name="av.w" default="0.5" min="0.1" max="9999" decimals="1"> <parameter type="constant" name="av.w" default="0.5" min="0.1" max="9999" decimals="1">

View File

@@ -2,7 +2,8 @@
<!DOCTYPE kpartgui> <!DOCTYPE kpartgui>
<effect tag="avfilter.lut3d" id="avfilter.lut3d"> <effect tag="avfilter.lut3d" id="avfilter.lut3d">
<name>Apply LUT</name> <name>Apply LUT</name>
<description>Apply a Look Up Table (LUT) to the video. A LUT is an easy way to correct the color of a video. Supported formats: .3dl (AfterEffects), .cube (Iridas), .dat (DaVinci), .m3d (Pandora)</description> <description>Apply a Look Up Table (LUT) to the video.
<full><![CDATA[A LUT is an easy way to correct the color of a video. Supported formats: .3dl (AfterEffects), .cube (Iridas), .dat(DaVinci), .m3d (Pandora)]]></full></description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="urllist" name="av.file" paramlist="%lutPaths" filter="LUT files (*.cube *.3dl *.dat *.m3d)" newstuff=":data/kdenlive_luts.knsrc"> <parameter type="urllist" name="av.file" paramlist="%lutPaths" filter="LUT files (*.cube *.3dl *.dat *.m3d)" newstuff=":data/kdenlive_luts.knsrc">
<name>LUT file to apply</name> <name>LUT file to apply</name>

View File

@@ -4,23 +4,18 @@
<name>Median</name> <name>Median</name>
<description>Pick median pixel from certain rectangle defined by radius.</description> <description>Pick median pixel from certain rectangle defined by radius.</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.radius" min="1" max="127" default="1"> <parameter type="animated" name="av.radius" min="1" max="127" default="1" decimals="3">
<name>Horizontal radius</name> <name>Spatial sigma</name>
<comment><![CDATA[Set median radius]]></comment> <comment>Median radius</comment>
</parameter> </parameter>
<parameter type="animated" name="av.radiusV" min="0" max="127" default="0"> <parameter type="animated" name="av.radiusV" min="0" max="127" default="0" decimals="3">
<name>Vertical radius</name> <name>Median vertical radius</name>
<comment><![CDATA[Set median vertical radius.<br>
If it is 0, value will be picked from <em>Horizontal radius</em> parameter.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="av.percentile" min="0" max="100" default="0.5" factor="100"> <parameter type="animated" name="av.percentile" min="0" max="1" default="0.5" decimals="3">
<name>Median percentile</name> <name>Median percentile</name>
<comment><![CDATA[Default value of 50 will pick always median values,<br>
while 0 will pick minimum values, and 100 maximum values.]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7"> <parameter type="list" name="av.planes" default="1" paramlist="0;1;2;3;4;5;6;7;">
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV</paramlistdisplay> <paramlistdisplay>Alpha,Y,U,V,Red,Green,Blue,All,</paramlistdisplay>
<name>Planes</name> <name>Planes</name>
<comment><![CDATA[Select which planes to process]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -1,60 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect LC_NUMERIC="C" tag="avfilter.oscilloscope" id="avfilter.oscilloscope">
<name>Oscilloscope (avfilter)</name>
<description>2D video oscilloscope</description>
<author>libavfilter maintainers</author>
<parameter type="animated" name="av.x" default="0.5" min="0" max="%width" factor="%width">
<name>Trace X position</name>
<comment><![CDATA[X position of the trace profile]]></comment>
</parameter>
<parameter type="animated" name="av.y" default="0.5" min="0" max="%height" factor="%height">
<name>Trace Y position</name>
<comment><![CDATA[Y position of the trace profile]]></comment>
</parameter>
<parameter type="animated" name="av.s" default="0.5" min="0" max="%width" factor="%width">
<name>Size</name>
<comment><![CDATA[Size/length of the trace profile in pixel]]></comment>
</parameter>
<parameter type="animated" name="av.t" default="0.5" min="0" max="1000" factor="1000">
<name>Tilt</name>
<comment><![CDATA[Tilting of the trace profile]]></comment>
</parameter>
<parameter type="animated" name="av.o" default="0.5" min="0" max="1000" factor="1000">
<name>Opacity</name>
<comment><![CDATA[Opacity of the scope display]]></comment>
</parameter>
<parameter type="animated" name="av.tx" default="0.5" min="0" max="%width" factor="%width">
<name>Scope X position</name>
<comment><![CDATA[X position of the scope display]]></comment>
</parameter>
<parameter type="animated" name="av.ty" default="0.9" min="0" max="%height" factor="%height">
<name>Scope Y position</name>
<comment><![CDATA[Y position of the scope display]]></comment>
</parameter>
<parameter type="animated" name="av.tw" default="0.8" min="0" max="%height" factor="%height">
<name>Scope width</name>
<comment><![CDATA[Width of the scope display]]></comment>
</parameter>
<parameter type="animated" name="av.th" default="0.3" min="0" max="%height" factor="%height">
<name>Scope height</name>
<comment><![CDATA[Height of the scope display]]></comment>
</parameter>
<parameter type="list" name="av.c" default="7" paramlist="0;1;2;3;4;5;6;7">
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV</paramlistdisplay>
<name>Components</name>
<comment><![CDATA[Select the components to be traced]]></comment>
</parameter>
<parameter type="bool" name="av.g" default="1" min="0" max="1">
<name>Draw scope grid</name>
<comment><![CDATA[Switch grid on or off]]></comment>
</parameter>
<parameter type="bool" name="av.st" default="1" min="0" max="1">
<name>Print statistics</name>
<comment><![CDATA[Switch statistics on or off]]></comment>
</parameter>
<parameter type="bool" name="av.sc" default="1" min="0" max="1">
<name>Draw trace profile line</name>
<comment><![CDATA[Switch drawing the trace profile line on or off]]></comment>
</parameter>
</effect>

View File

@@ -9,7 +9,7 @@
<comment>Set how many frames to use.</comment> <comment>Set how many frames to use.</comment>
</parameter> </parameter>
<parameter type="animated" name="av.t" min="0.1" max="10" default="1" decimals="3"> <parameter type="animated" name="av.t" min="0.1" max="10" default="1" decimals="3">
<name>Threshold</name> <name>Theshold</name>
<comment>Set detection threshold factor, lower is stricter</comment> <comment>Set detection threshold factor, lower is stricter</comment>
</parameter> </parameter>
<parameter type="animated" name="av.skip" min="1" max="1024" default="1" decimals="0"> <parameter type="animated" name="av.skip" min="1" max="1024" default="1" decimals="0">

View File

@@ -1,21 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="avfilter.pixelize" id="avfilter.pixelize">
<name>Pixelize (avfilter)</name>
<description>Pixelize video</description>
<author>libavfilter maintainers</author>
<parameter type="animated" name="av.width" default="16" min="1" max="1024">
<name>Block width</name>
</parameter>
<parameter type="animated" name="av.height" default="16" min="1" max="1024">
<name>Block height</name>
</parameter>
<parameter type="list" name="av.mode" default="avg" paramlist="avg;min;max">
<name>Pixelize mode</name>
<paramlistdisplay>Average,Minimum,Maximum</paramlistdisplay>
</parameter>
<parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7;8">
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay>
<name>Planes</name>
</parameter>
</effect>

View File

@@ -8,10 +8,10 @@
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay> <paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay>
<name>Planes</name> <name>Planes</name>
</parameter> </parameter>
<parameter type="animated" name="av.scale" default="5" min="1" max="250" factor="1"> <parameter type="constant" name="av.scale" default="5" min="1" max="250" factor="1">
<name>Scale</name> <name>Scale</name>
</parameter> </parameter>
<parameter type="animated" name="av.delta" default="25" min="0" max="255" factor="1"> <parameter type="constant" name="av.delta" default="25" min="0" max="255" factor="1">
<name>Delta</name> <name>Delta</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,28 +4,28 @@
<name>RGBA Shift</name> <name>RGBA Shift</name>
<description>Shift R/G/B/A pixels horizontally and/or vertically</description> <description>Shift R/G/B/A pixels horizontally and/or vertically</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.rh" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.rh" default="0" min="-255" max="255" factor="1">
<name>Red Horizontal shift</name> <name>Red Horizontal shift</name>
</parameter> </parameter>
<parameter type="animated" name="av.rv" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.rv" default="0" min="-255" max="255" factor="1">
<name>Red Vertical shift</name> <name>Red Vertical shift</name>
</parameter> </parameter>
<parameter type="animated" name="av.gh" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.gh" default="0" min="-255" max="255" factor="1">
<name>Green Horizontal shift</name> <name>Green Horizontal shift</name>
</parameter> </parameter>
<parameter type="animated" name="av.gv" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.gv" default="0" min="-255" max="255" factor="1">
<name>Green Vertical shift</name> <name>Green Vertical shift</name>
</parameter> </parameter>
<parameter type="animated" name="av.bh" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.bh" default="0" min="-255" max="255" factor="1">
<name>Blue Horizontal shift</name> <name>Blue Horizontal shift</name>
</parameter> </parameter>
<parameter type="animated" name="av.bv" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.bv" default="0" min="-255" max="255" factor="1">
<name>Blue Vertical shift</name> <name>Blue Vertical shift</name>
</parameter> </parameter>
<parameter type="animated" name="av.ah" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.ah" default="0" min="-255" max="255" factor="1">
<name>Alpha Horizontal shift</name> <name>Alpha Horizontal shift</name>
</parameter> </parameter>
<parameter type="animated" name="av.av" default="0" min="-255" max="255" factor="1"> <parameter type="constant" name="av.av" default="0" min="-255" max="255" factor="1">
<name>Alpha Vertical shift</name> <name>Alpha Vertical shift</name>
</parameter> </parameter>
<parameter type="list" name="av.edge" default="smear" paramlist="smear;wrap"> <parameter type="list" name="av.edge" default="smear" paramlist="smear;wrap">

View File

@@ -8,10 +8,10 @@
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay> <paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay>
<name>Planes</name> <name>Planes</name>
</parameter> </parameter>
<parameter type="animated" name="av.scale" default="10" min="1" max="250" factor="1"> <parameter type="constant" name="av.scale" default="10" min="1" max="250" factor="1">
<name>Scale</name> <name>Scale</name>
</parameter> </parameter>
<parameter type="animated" name="av.delta" default="100" min="-300" max="300" factor="1"> <parameter type="constant" name="av.delta" default="100" min="-300" max="300" factor="1">
<name>Delta</name> <name>Delta</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,16 +4,16 @@
<name>Scroll</name> <name>Scroll</name>
<description>Pick median pixel from certain rectangle defined by radius.</description> <description>Pick median pixel from certain rectangle defined by radius.</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.h" min="-1000" max="1000" default="0" factor="1000"> <parameter type="animated" name="av.h" min="-1" max="1" default="0" decimals="3">
<name>Horizontal scrolling speed</name> <name>Horizontal scrolling speed</name>
</parameter> </parameter>
<parameter type="animated" name="av.v" min="-1000" max="1000" default="0" factor="1000"> <parameter type="animated" name="av.v" min="-1" max="1" default="0" decimals="3">
<name>Vertical scrolling speed</name> <name>Vertical scrolling speed</name>
</parameter> </parameter>
<parameter type="animated" name="av.hpos" min="0" max="%width" default="0" factor="%width"> <parameter type="animated" name="av.hpos" min="0" max="1" default="0" decimals="3">
<name>Initial horizontal position</name> <name>Initial horizontal position</name>
</parameter> </parameter>
<parameter type="animated" name="av.vpos" min="0" max="%height" default="0" factor="%height"> <parameter type="animated" name="av.vpos" min="0" max="1" default="0" decimals="3">
<name>Initial vertical position</name> <name>Initial vertical position</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,13 +4,13 @@
<name>Shear</name> <name>Shear</name>
<description>Apply shear transform to input video.</description> <description>Apply shear transform to input video.</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="animated" name="av.shx" default="0" min="-2" max="2" decimals="3"> <parameter type="constant" name="av.shx" default="0" min="-2" max="2">
<name>X shear factor</name> <name>X shear factor</name>
</parameter> </parameter>
<parameter type="animated" name="av.shy" default="0" min="-2" max="2" decimals="3"> <parameter type="constant" name="av.shy" default="0" min="-2" max="2" decimals="0">
<name>Y shear factor</name> <name>Y shear factor</name>
</parameter> </parameter>
<parameter type="fixedcolor" name="av.c" default="black"> <parameter type="color" name="av.c" default="black">
<name>Background fill color</name> <name>Background fill color</name>
</parameter> </parameter>
<parameter type="list" name="av.interp" default="nearest" paramlist="nearest;bilinear"> <parameter type="list" name="av.interp" default="nearest" paramlist="nearest;bilinear">

View File

@@ -6,47 +6,20 @@
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="constant" name="av.lr" default="1.0" min="0.1" max="5.0" decimals="1"> <parameter type="constant" name="av.lr" default="1.0" min="0.1" max="5.0" decimals="1">
<name>Luma radius</name> <name>Luma radius</name>
<comment><![CDATA[Set the luma radius.<br>
The value specifies the variance of the gaussian filter used to blur the image (slower if larger).]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.ls" default="1.0" min="-1.0" max="1.0" decimals="1"> <parameter type="constant" name="av.ls" default="1.0" min="-1.0" max="1.0" decimals="1">
<name>Luma strength</name> <name>Luma strength</name>
<comment><![CDATA[Set the luma strength.<br>
The value configures the blurring. A positive value will blur the image, whereas a negative value will sharpen the image.]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.lt" default="0" min="-30" max="+30" factor="1"> <parameter type="constant" name="av.lt" default="0" min="-30" max="+30" factor="1">
<name>Luma threshold</name> <name>Luma Threshold</name>
<comment><![CDATA[Set the luma threshold used as a coefficient<br>
to determine whether a pixel should be blurred or not. A value of 0 will filter all the image, positive values will filter flat areas, negative values will filter edges.]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.cr" default="1.0" min="0.1" max="5.0" decimals="1"> <parameter type="constant" name="av.cr" default="1.0" min="0.1" max="5.0" decimals="1">
<name>Chroma radius</name> <name>Chroma radius</name>
<comment><![CDATA[Set the chroma radius.<br>
The value specifies the variance of the gaussian filter used to blur the image (slower if larger). If not specified, it defaults to the value set for <em>Luma radius</em>]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.cs" default="1.0" min="-1.0" max="1.0" decimals="1"> <parameter type="constant" name="av.cs" default="1.0" min="-1.0" max="1.0" decimals="1">
<name>Chroma strength</name> <name>Chroma strength</name>
<comment><![CDATA[Set the chroma strength.<br>
The value configures the blurring. A positive value will blur the image, whereas a negative value will sharpen the image. If not specified, it defaults to the value set for <em>Luma strength</em>.]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.ct" default="0" min="-30" max="+30" factor="1"> <parameter type="constant" name="av.ct" default="0" min="-30" max="+30" factor="1">
<name>Chroma threshold</name> <name>Chroma Threshold</name>
<comment><![CDATA[Set the chroma threshold used as a coefficient<br>
to determine whether a pixel should be blurred or not. A value of 0 will filter all the image, positive values will filter flat areas, negative values will filter edges. If not specified, it defaults to the value set for <em>Luma threshold</em>]]></comment>
</parameter>
<parameter type="constant" name="av.ar" default="1.0" min="0.1" max="5.0" decimals="1">
<name>Alpha radius</name>
<comment><![CDATA[Set the alpha radius.<br>
The value specifies the variance of the gaussian filter used to blur the image (slower if larger). If not specified, it defaults to the value set for <em>Luma radius</em>]]></comment>
</parameter>
<parameter type="constant" name="av.as" default="1.0" min="-1.0" max="1.0" decimals="1">
<name>Alpha strength</name>
<comment><![CDATA[Set the alpha strength.<br>
The value configures the blurring. A positive value will blur the image, whereas a negative value will sharpen the image. If not specified, it defaults to the value set for <em>Luma strength</em>.]]></comment>
</parameter>
<parameter type="constant" name="av.at" default="0" min="-30" max="+30" factor="1">
<name>Alpha threshold</name>
<comment><![CDATA[Set the alpha threshold used as a coefficient<br>
to determine whether a pixel should be blurred or not. A value of 0 will filter all the image, positive values will filter flat areas, negative values will filter edges. If not specified, it defaults to the value set for <em>Luma threshold</em>]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -8,10 +8,10 @@
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay> <paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay>
<name>Planes</name> <name>Planes</name>
</parameter> </parameter>
<parameter type="animated" name="av.scale" default="25" min="0" max="250" factor="1"> <parameter type="constant" name="av.scale" default="25" min="0" max="250" factor="1">
<name>Scale</name> <name>Scale</name>
</parameter> </parameter>
<parameter type="animated" name="av.delta" default="-255" min="-300" max="300" decimals="2"> <parameter type="constant" name="av.delta" default="-255" min="-300" max="300" decimals="2">
<name>Delta</name> <name>Delta</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -9,7 +9,7 @@
<name>Input format</name> <name>Input format</name>
</parameter> </parameter>
<parameter type="list" name="av.out" default="arcd" paramlist="sbsl;sbsr;abl;abr;irl;irr;arbg;argg;arcg;arch;arcc;arcd;agmg;agmh;agmc;agmd;aybg;aybh;aybc;aybd;ml;mr;chl;chr;icl;icr;hdmi"> <parameter type="list" name="av.out" default="arcd" paramlist="sbsl;sbsr;abl;abr;irl;irr;arbg;argg;arcg;arch;arcc;arcd;agmg;agmh;agmc;agmd;aybg;aybh;aybc;aybd;ml;mr;chl;chr;icl;icr;hdmi">
<paramlistdisplay>side by side parallel,side by side crosseye,above-below left top,above-below right top,interleaved rows (left top),interleaved rows (right top),anaglyph red/blue gray,anaglyph red/green gray,anaglyph red/cyan gray,anaglyph red/cyan half colored,anaglyph red/cyan color,anaglyph red/cyan dubois,anaglyph green/magenta gray,anaglyph green/magenta half colored,anaglyph green/magenta colored,anaglyph green/magenta dubois,anaglyph yellow/blue gray,anaglyph yellow/blue half colored,anaglyph yellow/blue colored,anaglyph yellow/blue dubois,mono output left,mono output right,checkerboard left eye first,checkerboard right eye first,interleaved columns left eye first,interleaved columns right eye first,HDMI frame pack</paramlistdisplay> <paramlistdisplay>side by side parallel,side by side crosseye,above-below left top,above-below right top,interleaved rows (letf top),interleaved rows (right top),anaglyph red/blue gray,anaglyph red/green gray,anaglyph red/cyan gray,anaglyph red/cyan half colored,anaglyph red/cyan color,anaglyph red/cyan dubois,anaglyph green/magenta gray,anaglyph green/magenta half colored,anaglyph green/magenta colored,anaglyph green/magenta dubois,anaglyph yellow/blue gray,anaglyph yellow/blue half colored,anaglyph yellow/blue colored,anaglyph yellow/blue dubois,mono output left,mono output right,checkerboard left eye first,checkerboard right eye first,interleaved columns left eye first,interleaved columns right eye first,HDMI frame pack</paramlistdisplay>
<name>Output format</name> <name>Output format</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -1,47 +1,25 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE kpartgui> <!DOCTYPE kpartgui>
<effect tag="avfilter.unsharp"> <effect tag="avfilter.unsharp">
<!-- ffmpeg documentation says range for matrix settings is 3-23 but the max value can only be 13 -->
<name>Sharp/Unsharp</name> <name>Sharp/Unsharp</name>
<description>Sharpen or unsharpen/blur your video</description> <description>Sharpen or blur your video</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="constant" name="av.lx" max="13" min="3" default="5" odd="1"> <parameter type="constant" name="av.lx" max="13" min="3" default="5" odd="1">
<name>Luma horizontal matrix</name> <name>Luma horizontal matrix</name>
<comment><![CDATA[Set the luma matrix horizontal size]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.ly" max="13" min="3" default="5" odd="1"> <parameter type="constant" name="av.ly" max="13" min="3" default="5" odd="1">
<name>Luma vertical matrix</name> <name>Luma vertical matrix</name>
<comment><![CDATA[Set the luma matrix vertical size]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.la" max="5" min="-2" default="0" decimals="2"> <parameter type="constant" name="av.la" max="5" min="-2" default="0" decimals="2">
<name>Luma strength</name> <name>Luma strength</name>
<comment><![CDATA[Set the luma effect strength.<br>
Reasonable values are between -1.5 and 1.5. Negative values will blur the input video, while positive values will sharpen it, a value of 0 will disable the effect. ]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.cx" max="13" min="3" default="5" odd="1"> <parameter type="constant" name="av.cx" max="13" min="3" default="5" odd="1">
<name>Chroma horizontal matrix</name> <name>Chroma horizontal matrix</name>
<comment><![CDATA[Set the chroma matrix horizontal size]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.cy" max="13" min="3" default="5" odd="1"> <parameter type="constant" name="av.cy" max="13" min="3" default="5" odd="1">
<name>Chroma vertical matrix</name> <name>Chroma vertical matrix</name>
<comment><![CDATA[Set the chroma matrix vertical size]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.ca" max="5" min="-2" default="0" decimals="2"> <parameter type="constant" name="av.ca" max="5" min="-2" default="0" decimals="2">
<name>Chroma strength</name> <name>Chroma strength</name>
<comment><![CDATA[Set the chroma effect strength.<br>
Reasonable values are between -1.5 and 1.5. Negative values will blur the input video, while positive values will sharpen it, a value of zero will disable the effect. ]]></comment>
</parameter>
<parameter type="constant" name="av.ax" max="13" min="3" default="5" odd="1">
<name>Alpha horizontal matrix</name>
<comment><![CDATA[Set the alpha matrix horizontal size]]></comment>
</parameter>
<parameter type="constant" name="av.ay" max="13" min="3" default="5" odd="1">
<name>Alpha vertical matrix</name>
<comment><![CDATA[Set the alpha matrix vertical size]]></comment>
</parameter>
<parameter type="constant" name="av.aa" max="5" min="-2" default="0" decimals="2">
<name>Alpha strength</name>
<comment><![CDATA[Set the alpha effect strength.<br>
Reasonable values are between -1.5 and 1.5. Negative values will blur the input video, while positive values will sharpen it, a value of zero will disable the effect. ]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -15,7 +15,7 @@
<name>Y</name> <name>Y</name>
</parameter> </parameter>
<parameter type="constant" name="av.i" default="0.004" min="0" max="1" decimals="3"> <parameter type="constant" name="av.i" default="0.004" min="0" max="1" decimals="3">
<name>Intensity</name> <name>Intenstiy</name>
</parameter> </parameter>
<parameter type="list" name="av.e" default="none" paramlist="none;instant;peak;peak+instant"> <parameter type="list" name="av.e" default="none" paramlist="none;instant;peak;peak+instant">
<paramlistdisplay>None,Instant,Peak,Peak+Instant</paramlistdisplay> <paramlistdisplay>None,Instant,Peak,Peak+Instant</paramlistdisplay>

View File

@@ -7,76 +7,44 @@
<parameter type="list" name="av.m" default="column" paramlist="row;column"> <parameter type="list" name="av.m" default="column" paramlist="row;column">
<paramlistdisplay>Row,Column</paramlistdisplay> <paramlistdisplay>Row,Column</paramlistdisplay>
<name>Mode</name> <name>Mode</name>
<comment><![CDATA[In row mode, the graph on the left side represents<br>
color component value 0 and the right side represents value = 255.<br>
In column mode, the top side represents color component value = 0 and bottom side represents value = 255.]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.i" default="0.04" min="0" max="1" decimals="2"> <parameter type="constant" name="av.i" default="0.04" min="0" max="1" decimals="2">
<name>Intensity</name> <name>Intenstiy</name>
<comment><![CDATA[Smaller values are useful for finding out how many values<br>
of the same luminance are distributed across input rows/columns]]></comment>
</parameter> </parameter>
<parameter type="bool" name="av.r" default="0 "> <parameter type="bool" name="av.r" default="0 ">
<name>Mirror</name> <name>Mirror</name>
<comment><![CDATA[In mirrored mode, higher values will be represented<br>
on the left side for <em>row</em> mode and at the top for <em>column</em> mode.]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.d" default="stack" paramlist="overlay;stack;parade"> <parameter type="list" name="av.d" default="stack" paramlist="overlay;stack;parade">
<paramlistdisplay>Overlay,Stack,Parade</paramlistdisplay> <paramlistdisplay>Overlay,Stack,Parade</paramlistdisplay>
<name>Display</name> <name>Display</name>
<comment><![CDATA[Set the display mode]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.c" default="7" paramlist="0;1;2;3;4;5;6;7"> <parameter type="constant" name="av.c" default="1" min="1" max="7" factor="1">
<paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV</paramlistdisplay>
<name>Components</name> <name>Components</name>
<comment><![CDATA[Select the components to be displayed]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.e" default="none" paramlist="none;instant;peak;peak+instant"> <parameter type="list" name="av.e" default="none" paramlist="none;instant;peak;peak+instant">
<paramlistdisplay>None,Instant,Peak,Peak+Instant</paramlistdisplay> <paramlistdisplay>None,Instant,Peak,Peak+Instant</paramlistdisplay>
<name>Envelope</name> <name>Envelope</name>
<comment><![CDATA[Set the envelope mode]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.f" default="lowpass" paramlist="lowpass;flat;aflat;xflat;yflat;chroma;color;acolor"> <parameter type="list" name="av.f" default="lowpass" paramlist="lowpass;flat;aflat;xflat;yflat;chroma;color;acolor">
<paramlistdisplay>Lowpass,Flat,A-flat,X-flat,Y-flat,Chroma,Color,acolor</paramlistdisplay> <paramlistdisplay>lowpass,flat,aflat,xflat,yflat,chroma,color,acolor</paramlistdisplay>
<name>Filter</name> <name>Filter</name>
<comment><![CDATA[Set the filter mode]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.g" default="green" paramlist="none;green;orange;invert"> <parameter type="list" name="av.g" default="green" paramlist="none;green;orange;invert">
<paramlistdisplay>None,Green,Orange,Invert</paramlistdisplay> <paramlistdisplay>none,green,orange,invert</paramlistdisplay>
<name>Graticule</name> <name>Graticule</name>
<comment><![CDATA[Set which graticule to display]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.o" default="0.75" min="0" max="1" decimals="2"> <parameter type="constant" name="av.o" default="0.75" min="0" max="1" decimals="2">
<name>Graticule Opacity</name> <name>Graticule Opacity</name>
<comment><![CDATA[Set the opacity of the graticule]]></comment>
</parameter> </parameter>
<parameter type="list" name="av.fl" default="numbers" paramlist="numbers;dots"> <parameter type="list" name="av.fl" default="numbers" paramlist="numbers;dots">
<paramlistdisplay>Numbers,Dots</paramlistdisplay> <paramlistdisplay>numbers,dots</paramlistdisplay>
<comment><![CDATA[Set graticule flags]]></comment>
<name>Flags</name> <name>Flags</name>
</parameter> </parameter>
<parameter type="list" name="av.s" default="digital" paramlist="digital;millivolts;ire"> <parameter type="list" name="av.s" default="digital" paramlist="digital;millivolts;ire">
<paramlistdisplay>Digital,Millivolts,Ire</paramlistdisplay> <paramlistdisplay>digital,millivolts,ire</paramlistdisplay>
<name>Scale</name> <name>Scale</name>
<comment><![CDATA[Set scale used for displaying graticule]]></comment>
</parameter> </parameter>
<parameter type="constant" name="av.b" default="0.75" min="0" max="1" decimals="2"> <parameter type="constant" name="av.b" default="0.75" min="0" max="1" decimals="2">
<name>Background Opacity</name> <name>Background Opacity</name>
<comment><![CDATA[Set the background opacity]]></comment>
</parameter>
<parameter type="constant" name="av.t0" default="0" min="-1" max="1" decimals="2">
<name>Tint 0</name>
<comment><![CDATA[Only used with <em>lowpass</em> filter and when display<br>
is not <em>overlay</em> and input pixel formats are not <em>RGB</em>]]></comment>
</parameter>
<parameter type="constant" name="av.t1" default="0" min="-1" max="1" decimals="2">
<name>Tint 1</name>
<comment><![CDATA[Only used with <em>lowpass</em> filter and when display<br>
is not <em>overlay</em> and input pixel formats are not <em>RGB</em>]]></comment>
</parameter>
<parameter type="list" name="av.fm" default="none" paramlist="none;size">
<paramlistdisplay>None,Size</paramlistdisplay>
<name>Fit mode</name>
<comment><![CDATA[Set the fit mode]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -5,11 +5,11 @@
<description>Deinterlace the input video ("yadif" means "yet another deinterlacing filter")</description> <description>Deinterlace the input video ("yadif" means "yet another deinterlacing filter")</description>
<author>libavfilter</author> <author>libavfilter</author>
<parameter type="list" name="av.mode" default="0" paramlist="0;1;2;3"> <parameter type="list" name="av.mode" default="0" paramlist="0;1;2;3">
<paramlistdisplay>Send frame,Send field,Send frame nospatial,Send field nospatial</paramlistdisplay> <paramlistdisplay>Send frame,Send field,Send frame nospatial,Send field nospatil</paramlistdisplay>
<name>Mode</name> <name>Mode</name>
</parameter> </parameter>
<parameter type="list" name="av.parity" default="-1" paramlist="0;1;-1"> <parameter type="list" name="av.parity" default="-1" paramlist="0;1;-1">
<paramlistdisplay>Top field first,Bottom field first,Auto</paramlistdisplay> <paramlistdisplay>Top field first,Bottomfield first,Auto</paramlistdisplay>
<name>Parity</name> <name>Parity</name>
</parameter> </parameter>
<parameter type="list" name="av.deint" default="0" paramlist="0;1"> <parameter type="list" name="av.deint" default="0" paramlist="0;1">

View File

@@ -5,10 +5,10 @@
<name>BoxBlur</name> <name>BoxBlur</name>
<description>Box blur (separate horizontal and vertical blur)</description> <description>Box blur (separate horizontal and vertical blur)</description>
<author>Meltytech, LLC</author> <author>Meltytech, LLC</author>
<parameter type="animated" name="hradius" max="1000" min="0" default="1" suffix="%" decimals="1"> <parameter type="animated" name="hradius" max="1000" min="0" default="1" suffix="%">
<name>Horizontal multiplicator</name> <name>Horizontal multiplicator</name>
</parameter> </parameter>
<parameter type="animated" name="vradius" max="1000" min="0" default="1" suffix="%" decimals="1"> <parameter type="animated" name="vradius" max="1000" min="0" default="1" suffix="%">
<name>Vertical multiplicator</name> <name>Vertical multiplicator</name>
</parameter> </parameter>
<parameter type="bool" name="preserve_alpha" default="0" min="0" max="1"> <parameter type="bool" name="preserve_alpha" default="0" min="0" max="1">

View File

@@ -7,7 +7,7 @@
<parameter type="color" name="key" default="0x0000ffff"> <parameter type="color" name="key" default="0x0000ffff">
<name>Color key</name> <name>Color key</name>
</parameter> </parameter>
<parameter type="keyframe" name="variance" max="1000" min="0" factor="1000" default="0.15"> <parameter type="constant" name="variance" max="1000" min="0" factor="1000" default="0.15">
<name>Variance</name> <name>Variance</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,12 +4,10 @@
<name>Chroma Keep</name> <name>Chroma Keep</name>
<description>Make image greyscale except for chosen color</description> <description>Make image greyscale except for chosen color</description>
<author>Charles Yates</author> <author>Charles Yates</author>
<parameter type="color" name="key" default="0x000000ff" notintimeline="1"> <parameter type="color" name="key" default="0x000000ff">
<name>Color key</name> <name>Color key</name>
</parameter> </parameter>
<parameter type="animated" name="variance" max="1.00" min="0.01" decimals="2" default="0.01" notintimeline="1"> <parameter type="constant" name="variance" max="100" min="0" factor="100" default="15">
<name>Variance</name> <name>Variance</name>
<comment><![CDATA[Percentage of deviation from the selected color value.<br>
Lower values keep the colors closer to the selected one; higher values include more colors.]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -1,23 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="dropshadow" id="dropshadow">
<name>Drop Shadow</name>
<description>Create a shadow effect from the alpha channel</description>
<author>Meltytech, LLC</author>
<parameter type="animated" name="radius" max="100" min="0" default="1">
<name>Blur Radius</name>
<comment>The amount in pixel to blur the edge of the shadow</comment>
</parameter>
<parameter type="animated" name="x" max="100" min="-100" default="8">
<name>X Offset</name>
<comment>The relative horizontal position of the shadow</comment>
</parameter>
<parameter type="animated" name="y" max="100" min="-100" default="8">
<name>Y Offset</name>
<comment>The relative vertical position of the shadow</comment>
</parameter>
<parameter type="color" name="color" default="#b4636363" alpha="1">
<name>Color</name>
<comment>The color of the shadow including alpha</comment>
</parameter>
</effect>

View File

@@ -1,9 +1,8 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org>, Massimo Stella <maxstar@tin.it> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>, Massimo Stella <maxstar@tin.it>
INSTALL (FILES INSTALL (FILES
frei0r_aech0r.xml
frei0r_alpha0ps.xml frei0r_alpha0ps.xml
frei0r_alphagrad.xml frei0r_alphagrad.xml
frei0r_alphaspot.xml frei0r_alphaspot.xml
@@ -53,7 +52,6 @@ frei0r_glow.xml
frei0r_hqdn3d.xml frei0r_hqdn3d.xml
frei0r_hueshift0r.xml frei0r_hueshift0r.xml
frei0r_iirblur.xml frei0r_iirblur.xml
frei0r_kaleid0sc0pe.xml
frei0r_keyspillm0pup.xml frei0r_keyspillm0pup.xml
frei0r_lenscorrection.xml frei0r_lenscorrection.xml
frei0r_letterb0xed.xml frei0r_letterb0xed.xml
@@ -65,8 +63,6 @@ frei0r_medians.xml
frei0r_nervous.xml frei0r_nervous.xml
frei0r_nosync0r.xml frei0r_nosync0r.xml
frei0r_pixeliz0r.xml frei0r_pixeliz0r.xml
frei0r_pixs0r.xml
frei0r_posterize.xml
frei0r_pr0be.xml frei0r_pr0be.xml
frei0r_pr0file.xml frei0r_pr0file.xml
frei0r_primaries.xml frei0r_primaries.xml

View File

@@ -1,31 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="frei0r.aech0r" id="frei0r.aech0r" type="video">
<name>Aech0r</name>
<description>Create an analog video echo</description>
<author>d-j-a-y + vloop</author>
<parameter type="constant" name="0" default="0" min="0" max="100" decimals="0" factor="100">
<name>Fade factor</name>
<comment><![CDATA[Disappearance Rate of the echo]]></comment>
</parameter>
<parameter type="bool" name="1" default="1" min="0" max="1">
<name>Direction</name>
<comment><![CDATA[Darker or Brighter echo]]></comment>
</parameter>
<parameter type="bool" name="2" default="1" min="0" max="1">
<name>Keep RED</name>
<comment><![CDATA[Influence on Red channel]]></comment>
</parameter>
<parameter type="bool" name="3" default="1" min="0" max="1">
<name>Keep GREEN</name>
<comment><![CDATA[Influence on Green channel]]></comment>
</parameter>
<parameter type="bool" name="4" default="1" min="0" max="1">
<name>Keep BLUE</name>
<comment><![CDATA[Influence on Blue channel]]></comment>
</parameter>
<parameter type="constant" name="5" default="0" min="0" max="8" decimals="0" factor="8">
<name>Strobe period</name>
<comment><![CDATA[Rate of the stroboscope (from 0 to 8 frames)]]></comment>
</parameter>
</effect>

View File

@@ -4,29 +4,23 @@
<name>Alpha gradient</name> <name>Alpha gradient</name>
<description>Fill the alpha channel with a specified gradient</description> <description>Fill the alpha channel with a specified gradient</description>
<author>Marko Cebokli</author> <author>Marko Cebokli</author>
<parameter type="animated" name="Position" default="0.5" min="0" max="%height" factor="%height"> <parameter type="animated" name="Position" default="0.5" min="0" max="1000" factor="1000">
<name>Position</name> <name>Position</name>
<comment><![CDATA[Define where the gradient starts.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Transition width" default="0.5" min="0" max="100" factor="100" suffix="%"> <parameter type="animated" name="Transition width" default="0.5" min="0" max="1000" factor="1000">
<name>Transition width</name> <name>Transition width</name>
<comment><![CDATA[Define the width of the transition between the densities.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Tilt" default="0" min="0" max="360" factor="360" decimals="1" suffix="> <parameter type="animated" name="Tilt" default="0.5" min="0" max="1000" factor="1000">
<name>Tilt</name> <name>Tilt</name>
<comment><![CDATA[Angle for the gradient.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Min" default="1" min="0" max="100" factor="100" suffix="%"> <parameter type="animated" name="Min" default="0" min="0" max="1000" factor="1000">
<name>Min</name> <name>Min</name>
<comment><![CDATA[Define the transparency at the top of the gradient.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Max" default="0" min="0" max="100" factor="100" suffix="%"> <parameter type="animated" name="Max" default="1" min="0" max="1000" factor="1000">
<name>Max</name> <name>Max</name>
<comment><![CDATA[Define the transparency at the bottom of the gradient.]]></comment>
</parameter> </parameter>
<parameter type="list" name="Operation" default="0" paramlist="0;0.3;0.5;0.7;1"> <parameter type="list" name="Operation" default="0" paramlist="0;0.3;0.5;0.7;1">
<paramlistdisplay>Write on clear,Max,Min,Add,Subtract</paramlistdisplay> <paramlistdisplay>Write on clear,Max,Min,Add,Subtract</paramlistdisplay>
<name>Operation</name> <name>Operation</name>
<comment><![CDATA[Define the alpha operation for compositing.]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,29 +4,23 @@
<name>Alpha gradient</name> <name>Alpha gradient</name>
<description>Fill the alpha channel with a specified gradient</description> <description>Fill the alpha channel with a specified gradient</description>
<author>Marko Cebokli</author> <author>Marko Cebokli</author>
<parameter type="animated" name="Position" default="0.5" min="0" max="%height" factor="%height"> <parameter type="animated" name="Position" default="0.5" min="0" max="1000" factor="1000">
<name>Position</name> <name>Position</name>
<comment><![CDATA[Define where the gradient starts.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Transition width" default="0.5" min="0" max="100" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="Transition width" default="0.5" min="0" max="1000" factor="1000">
<name>Transition width</name> <name>Transition width</name>
<comment><![CDATA[Define the width of the transition between the densities.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Tilt" default="0" min="0" max="360" factor="360" decimals="1" suffix="> <parameter type="animated" name="Tilt" default="0.5" min="0" max="1000" factor="1000">
<name>Tilt</name> <name>Tilt</name>
<comment><![CDATA[Angle for the gradient.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Min" default="1" min="0" max="100" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="Min" default="0" min="0" max="1000" factor="1000">
<name>Transparency top</name> <name>Min</name>
<comment><![CDATA[Define the transparency at the top of the gradient.]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Max" default="0" min="0" max="100" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="Max" default="1" min="0" max="1000" factor="1000">
<name>Transparency bottom</name> <name>Max</name>
<comment><![CDATA[Define the transparency at the bottom of the gradient.]]></comment>
</parameter> </parameter>
<parameter type="list" name="Operation" default="0" paramlist="0;0.3;0.5;0.7;1"> <parameter type="list" name="Operation" default="0" paramlist="0;0.3;0.5;0.7;1">
<paramlistdisplay>Write on clear,Max,Min,Add,Subtract</paramlistdisplay> <paramlistdisplay>Write on clear,Max,Min,Add,Subtract</paramlistdisplay>
<name>Operation</name> <name>Operation</name>
<comment><![CDATA[Define the alpha operation for compositing.]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -5,28 +5,28 @@
<description>Four corners geometry engine</description> <description>Four corners geometry engine</description>
<author>Marko Cebokli</author> <author>Marko Cebokli</author>
<parameter type="animated" widget="corners" name="0" default="0.333333333333333" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="0" default="0.333333333333333" min="0" max="6000" factor="6000">
<name>Top-left X</name> <name>Corner 1 X</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="1" default="0.333333333333333" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="1" default="0.333333333333333" min="0" max="6000" factor="6000">
<name>Top-left Y</name> <name>Corner 1 Y</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="2" default="0.666666666666667" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="2" default="0.666666666666667" min="0" max="6000" factor="6000">
<name>Top-right X</name> <name>Corner 2 X</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="3" default="0.333333333333333" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="3" default="0.333333333333333" min="0" max="6000" factor="6000">
<name>Top-right Y</name> <name>Corner 2 Y</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="4" default="0.666666666666667" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="4" default="0.666666666666667" min="0" max="6000" factor="6000">
<name>Bottom-right X</name> <name>Corner 3 X</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="5" default="0.666666666666667" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="5" default="0.666666666666667" min="0" max="6000" factor="6000">
<name>Bottom-right Y</name> <name>Corner 3 Y</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="6" default="0.333333333333333" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="6" default="0.333333333333333" min="0" max="6000" factor="6000">
<name>Bottom-left X</name> <name>Corner 4 X</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="7" default="0.666666666666667" min="0" max="6000" factor="6000"> <parameter type="animated" widget="corners" name="7" default="0.666666666666667" min="0" max="6000" factor="6000">
<name>Bottom-left Y</name> <name>Corner 4 Y</name>
</parameter> </parameter>
<parameter type="animated" widget="corners" name="9" default="0.5" min="0" max="2000" factor="2000"> <parameter type="animated" widget="corners" name="9" default="0.5" min="0" max="2000" factor="2000">
<name>Stretch X</name> <name>Stretch X</name>

View File

@@ -11,32 +11,32 @@
<parameter type="color" name="1" default="#000000"> <parameter type="color" name="1" default="#000000">
<name>Start Color</name> <name>Start Color</name>
</parameter> </parameter>
<parameter type="animated" name="2" max="100" min="0" default="0.5" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="2" max="1" min="0" default="0.5" decimals="3">
<name>Start Opacity</name> <name>Start Opacity</name>
</parameter> </parameter>
<parameter type="color" name="3" default="#ffffff"> <parameter type="color" name="3" default="#ffffff">
<name>End Color</name> <name>End Color</name>
</parameter> </parameter>
<parameter type="animated" name="4" max="100" min="0" default="0.5" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="4" max="1" min="0" default="0.5" decimals="3">
<name>End Opacity</name> <name>End Opacity</name>
</parameter> </parameter>
<parameter type="animated" name="5" max="100" min="0" default="0.5" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="5" max="1" min="0" default="0.5" decimals="3">
<name>Start X</name> <name>Start X</name>
</parameter> </parameter>
<parameter type="animated" name="6" max="100" min="0" default="0.5" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="6" max="1" min="0" default="0.5" decimals="3">
<name>Start Y</name> <name>Start Y</name>
</parameter> </parameter>
<parameter type="animated" name="7" max="100" min="0" default="0.5" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="7" max="1" min="0" default="0.5" decimals="3">
<name>End X</name> <name>End X</name>
</parameter> </parameter>
<parameter type="animated" name="8" max="100" min="0" default="0.5" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="8" max="1" min="0" default="0.5" decimals="3">
<name>End Y</name> <name>End Y</name>
</parameter> </parameter>
<parameter type="animated" name="9" max="100" min="0" default="0" factor="100" decimals="1" suffix="%"> <parameter type="animated" name="9" max="1" min="0" default="0" decimals="3">
<name>Offset</name> <name>Offset</name>
</parameter> </parameter>
<parameter type="list" name="10" default="1" paramlist="normal;add;saturate;multiply;screen;overlay;darken;lighten;colordodge;colorburn;hardlight;softlight;difference;exclusion;hslhue;hslsaturation;hslcolor;hslluminosity"> <parameter type="list" name="10" default="1" paramlist="normal;add;saturate;multiply;screen;overlay;darken;lighten;colordodge;colorburn;hardlight;softlight;difference;exclusion;hslhue;hslsaturation;hslcolor;hslluminosity">
<paramlistdisplay>Normal,Add,Saturate,Multiply,Screen,Overlay,Darken,Lighten,Color dodge,Color burn,Hard light,Soft light,Difference,Exclusion,HSL hue,HSL saturation,HSL color,HSL luminosity</paramlistdisplay> <paramlistdisplay>normal,add,saturate,multiply,screen,overlay,darken,lighten,colordodge,colorburn,hardlight,softlight,difference,exclusion,hslhue,hslsaturation,hslcolor,hslluminosity</paramlistdisplay>
<name>Blend Mode</name> <name>Blend Mode</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -3,8 +3,8 @@
<effect tag="frei0r.d90stairsteppingfix" id="frei0r.d90stairsteppingfix"> <effect tag="frei0r.d90stairsteppingfix" id="frei0r.d90stairsteppingfix">
<name>Nikon D90 Stairstepping fix</name> <name>Nikon D90 Stairstepping fix</name>
<description>Removes stairstepping artifacts from Nikon D90's 720p videos. <description>Removes stairstepping artifacts from Nikon D90's 720p videos.
Sharp lines in videos from the Nikon D90 show steps each 8th or 9th line, assumedly <full><![CDATA[Sharp lines in videos from the Nikon D90 show steps each 8th or 9th line, assumedly
due to poor downsampling. These can be smoothed out with this filter if they become too annoying. due to poor downsampling. These can be smoothed out with this filter if they become too annoying.]]></full>
</description> </description>
<author>Simon A. Eugster (Granjow)</author> <author>Simon A. Eugster (Granjow)</author>
</effect> </effect>

View File

@@ -1,65 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="frei0r.kaleid0sc0pe" id="frei0r.kaleid0sc0pe">
<name>Kaleidoscope</name>
<description>Applies a kaleidoscope effect</description>
<author>frei0r.kaleid0sc0pe</author>
<parameter type="animated" name="origin_x" default="0.5" min="0" max="100" factor="100">
<name>Origin X</name>
<comment>Move the origin of the kaleidoscope along the X axis</comment>
</parameter>
<parameter type="animated" name="origin_y" default="0.5" min="0" max="100" factor="100">
<name>Origin Y</name>
<comment>Move the origin of the kaleidoscope along the Y axis</comment>
</parameter>
<parameter type="animated" name="segmentation" default="0.125" min="0" max="128" factor="128">
<name>Segmentation</name>
<comment><![CDATA[Kaleidoscope segmentation / 128; <br>
segmentations of 1, 2, or multiples of 4 work best. Default is 16]]></comment>
</parameter>
<parameter type="bool" name="specify_source" default="0" min="0" max="1" factor="1">
<name>Specify source segment</name>
<comment><![CDATA[If checked, the source angle <br>
is read from the <em>source segment</em>, otherwise it is auto calculated]]></comment>
</parameter>
<parameter type="animated" name="source_segment" default="0" min="0" max="128" factor="128">
<name>Source segment</name>
<comment><![CDATA[Center of the source segment. Only used if <em>Specify Source Segment</em> is checked. <br>
0 is in +x and rotates counter clockwise.]]></comment>
</parameter>
<parameter type="list" name="segmentation_direction" default="1" paramlist="0;0.5;1">
<paramlistdisplay>None,Counter Clockwise,Clockwise</paramlistdisplay>
<name>Segmentation direction</name>
<comment>Direction of the segmentation.</comment>
</parameter>
<parameter type="bool" name="reflect_edges" default="1" min="0" max="1">
<name>Reflect edges</name>
<comment><![CDATA[If checked, reflections that end up outside the source reflect back into it. <br>
Otherwise the specified background color is used.]]></comment>
</parameter>
<parameter type="animated" name="edge_threshold" default="0" min="0" max="1" decimals="3">
<name>Edge threshold</name>
<comment><![CDATA[Edge threshold / 4, reflections <br>
outside the image but within this distance clamp to the edge.]]></comment>
</parameter>
<parameter type="list" name="preferred_corner" default="0" paramlist="0;0.25;0.5;0.75">
<paramlistdisplay>Top right,Top left,Bottom left,Bottom right</paramlistdisplay>
<name>Preferred corner</name>
<comment><![CDATA[If <em>Reflect Edges</em> is not checked, <br>
this parameter defines the preferred corner.]]></comment>
</parameter>
<parameter type="bool" name="corner_search" default="1" min="0" max="1">
<name>Corner Search</name>
<comment><![CDATA[If checked, search clockwise for furthest corner.<br>
Otherwise search counter clockwise.]]></comment>
</parameter>
<parameter type="fixedcolor" name="bg_color" default="#ff00ff">
<name>Background color</name>
<comment><![CDATA[Color to use if reflection lies <br>outside of the source image and not reflecting back in.]]></comment>
</parameter>
<parameter type="bool" name="bg_alpha" default="1" min="0" max="1">
<name>Use alpha background</name>
<comment><![CDATA[If checked, alpha will be used <br>
if reflection lies outside of the source image and not reflecting back in.]]></comment>
</parameter>
</effect>

View File

@@ -4,8 +4,8 @@
<effect tag="frei0r.lightgraffiti" id="frei0r.lightgraffiti"> <effect tag="frei0r.lightgraffiti" id="frei0r.lightgraffiti">
<name>Light Graffiti</name> <name>Light Graffiti</name>
<description>Light Graffiti effect. <description>Light Graffiti effect.
This effect allows one to do Light Painting (i.e. painting with light sources on a photo by keeping the shutter <full><![CDATA[This effect allows one to do Light Painting (i.e. painting with light sources on a photo by keeping the shutter
opened for a while), but for video.</description> opened for a while), but for video.]]></full></description>
<author>Simon A. Eugster (Granjow)</author> <author>Simon A. Eugster (Granjow)</author>
<parameter type="animated" name="thresholdBrightness" default="450" min="0" max="765"> <parameter type="animated" name="thresholdBrightness" default="450" min="0" max="765">
<name>Brightness Threshold</name> <name>Brightness Threshold</name>
@@ -76,8 +76,8 @@
<effect LC_NUMERIC="C" tag="frei0r.lightgraffiti" id="frei0r.lightgraffiti" version="0.2"> <effect LC_NUMERIC="C" tag="frei0r.lightgraffiti" id="frei0r.lightgraffiti" version="0.2">
<name>Light Graffiti</name> <name>Light Graffiti</name>
<description>Light Graffiti effect. <description>Light Graffiti effect.
This effect allows to do Light Painting (i.e. painting with light sources on a photo by keeping the shutter <full><![CDATA[This effect allows to do Light Painting (i.e. painting with light sources on a photo by keeping the shutter
opened for a while), but for video.</description> opened for a while), but for video.]]></full></description>
<author>Simon A. Eugster (Granjow)</author> <author>Simon A. Eugster (Granjow)</author>
<parameter type="animated" name="thresholdBrightness" default="0.588235294117647" min="0" max="765" factor="765"> <parameter type="animated" name="thresholdBrightness" default="0.588235294117647" min="0" max="765" factor="765">
<name>Brightness Threshold</name> <name>Brightness Threshold</name>

View File

@@ -1,23 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="frei0r.pixs0r" id="frei0r.pixs0r">
<name>Pixs0r</name>
<description>Glitch image shifting rows to and fro.</description>
<author>Gephex crew</author>
<parameter type="animated" name="shift_intensity" default="0.010" min="0" max="100" factor="100" decimals="1">
<name>Shift intensity</name>
<comment>Agressiveness of row/column shifting</comment>
</parameter>
<parameter type="animated" name="block_height" default="0" min="0" max="1000" decimals="0">
<name>Block height</name>
<comment>Height of each block whose shift is invariant (0 = random)</comment>
</parameter>
<parameter type="animated" name="block_height_min" default="0.009" min="0" max="1000" factor="1000" decimals="0">
<name>Minimum block height</name>
<comment><![CDATA[If <em>Block height</em> is 0 (random), <br>this determines the minimum block height.]]></comment>
</parameter>
<parameter type="animated" name="block_height_max" default="0.099" min="0" max="1000" factor="1000" decimals="0">
<name>Maximum block height</name>
<comment><![CDATA[If <em>Block height</em> is 0 (random), <br>this determines the maximum block height.]]></comment>
</parameter>
</effect>

View File

@@ -1,11 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="frei0r.posterize" id="frei0r.posterize">
<name>Posterize</name>
<description>Posterizes image by reducing the number of colors used in image</description>
<author>Janne Liljeblad</author>
<parameter type="animated" name="0" default="0.104167" min="0" max="1000" factor="1000">
<name>Levels</name>
<comment>Number of (color) values per channel</comment>
</parameter>
</effect>

View File

@@ -4,90 +4,69 @@
<name>Oscilloscope (Advanced)</name> <name>Oscilloscope (Advanced)</name>
<description>2D video oscilloscope</description> <description>2D video oscilloscope</description>
<author>Marko Cebokli</author> <author>Marko Cebokli</author>
<parameter type="animated" name="X" default="0.5" min="0" max="%width" factor="%width"> <parameter type="animated" name="X" default="0.5" min="0" max="1000" factor="1000">
<name>X</name> <name>X</name>
<comment><![CDATA[X coordinate of the profile]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Y" default="0.5" min="0" max="%height" factor="%height"> <parameter type="animated" name="Y" default="0.5" min="0" max="1000" factor="1000">
<name>Y</name> <name>Y</name>
<comment><![CDATA[Y coordinate of the profile]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Tilt" default="0.5" min="0" max="1000" factor="1000"> <parameter type="animated" name="Tilt" default="0.5" min="0" max="1000" factor="1000">
<name>Tilt</name> <name>Tilt</name>
<comment><![CDATA[Tilting of the profile]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Length" default="0.5" min="0" max="%width" factor="%width"> <parameter type="animated" name="Length" default="0.65" min="0" max="1000" factor="1000">
<name>Length</name> <name>Length</name>
<comment><![CDATA[Length of the profile in pixel]]></comment>
</parameter> </parameter>
<parameter type="list" name="Channel" default="0.5" paramlist="0;0.2;0.4;0.5;0.6;0.8;1"> <parameter type="list" name="Channel" default="0.5" paramlist="0;0.2;0.4;0.5;0.6;0.8;1">
<paramlistdisplay>R,G,B,Y',Pr,Pb,Alpha</paramlistdisplay> <paramlistdisplay>R,G,B,Y',Pr,Pb,Alpha</paramlistdisplay>
<name>Channel</name> <name>Channel</name>
<comment><![CDATA[Channel to numerically display]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Marker 1" default="0" min="0" max="%width" factor="%width"> <parameter type="animated" name="Marker 1" default="0" min="0" max="1000" factor="1000">
<name>Marker 1</name> <name>Marker 1</name>
<comment><![CDATA[Position of marker 1]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Marker 2" default="0" min="0" max="%width" factor="%width"> <parameter type="animated" name="Marker 2" default="0" min="0" max="1000" factor="1000">
<name>Marker 2</name> <name>Marker 2</name>
<comment><![CDATA[Position of marker 2]]></comment>
</parameter> </parameter>
<parameter type="bool" name="R trace" default="1"> <parameter type="bool" name="R trace" default="1">
<name>R trace</name> <name>R trace</name>
<comment><![CDATA[Show R trace (red) on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="G trace" default="1"> <parameter type="bool" name="G trace" default="1">
<name>G trace</name> <name>G trace</name>
<comment><![CDATA[Show G trace (green) on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="B trace" default="1"> <parameter type="bool" name="B trace" default="1">
<name>B trace</name> <name>B trace</name>
<comment><![CDATA[Show B trace (blue) on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Y trace" default="0"> <parameter type="bool" name="Y trace" default="0">
<name>Y trace</name> <name>Y trace</name>
<comment><![CDATA[Show Y trace (luma) on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Pr trace" default="0"> <parameter type="bool" name="Pr trace" default="0">
<name>Pr trace</name> <name>Pr trace</name>
<comment><![CDATA[Show Pr trace (red-difference) on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Pb trace" default="0"> <parameter type="bool" name="Pb trace" default="0">
<name>Pb trace</name> <name>Pb trace</name>
<comment><![CDATA[Show Pb trace (blue_difference) on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Alpha trace" default="0"> <parameter type="bool" name="Alpha trace" default="0">
<name>Alpha trace</name> <name>Alpha trace</name>
<comment><![CDATA[Show Alpha trace on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Display average" default="1"> <parameter type="bool" name="Display average" default="1">
<name>Display average</name> <name>Display average</name>
<comment><![CDATA[Show average on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Display RMS" default="1"> <parameter type="bool" name="Display RMS" default="1">
<name>Display RMS</name> <name>Display RMS</name>
<comment><![CDATA[Show RMS (root mean square) on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Display minimum" default="0"> <parameter type="bool" name="Display minimum" default="0">
<name>Display minimum</name> <name>Display minimum</name>
<comment><![CDATA[Show minimum on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="Display maximum" default="0"> <parameter type="bool" name="Display maximum" default="0">
<name>Display maximum</name> <name>Display maximum</name>
<comment><![CDATA[Show maximum on scope]]></comment>
</parameter> </parameter>
<parameter type="bool" name="256 scale" default="0"> <parameter type="bool" name="256 scale" default="0">
<name>256 scale</name> <name>256 scale</name>
<comment><![CDATA[Use a scale of 0-255 instead of 0.0-1.0]]></comment>
</parameter> </parameter>
<parameter type="list" name="Color" default="0" paramlist="0;1"> <parameter type="list" name="Color" default="0" paramlist="0;1">
<paramlistdisplay>CCIR rec. 601,CCIR rec. 709</paramlistdisplay> <paramlistdisplay>CCIR rec. 601,CCIR rec. 709</paramlistdisplay>
<name>Color encoding</name> <name>Color</name>
<comment><![CDATA[Select between interlaced (601) or progressive (709)]]></comment>
</parameter> </parameter>
<parameter type="animated" name="Crosshair color" default="0" min="0" max="1000" factor="1000"> <parameter type="animated" name="Crosshair color" default="0" min="0" max="7" factor="7">
<name>Crosshair color</name> <name>Crosshair color</name>
<comment><![CDATA[Choose a color for the crosshair/profile line]]></comment>
</parameter> </parameter>
</effect> </effect>

View File

@@ -13,10 +13,10 @@
<parameter type="color" name="White color" default="0xffffffff"> <parameter type="color" name="White color" default="0xffffffff">
<name>White color</name> <name>White color</name>
</parameter> </parameter>
<parameter type="fixed" name="Split preview" default="0"> <parameter type="bool" name="Split preview" default="0">
<name>Split screen preview</name> <name>Split screen preview</name>
</parameter> </parameter>
<parameter type="fixed" name="Source image on left side" default="0"> <parameter type="bool" name="Source image on left side" default="1">
<name>Source image on left side</name> <name>Source image on left side</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -1,192 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="gpsgraphic" id="gpsgraphic">
<name>GPS Graphic</name>
<description>Overlay GPS-related graphics onto the video.</description>
<author>Daniel F</author>
<parameter type="url" name="resource" filter="GPS files (*.gpx *.tcx)">
<name>GPS File</name>
<comment>The fullpath of file containing location (GPS) data. Supported extensions: .gpx, .tcx.</comment>
</parameter>
<parameter type="constant" name="time_offset" max="86400" min="-86400" default="0">
<name>Time offset in seconds</name>
<comment><![CDATA[An offset (in seconds) to be added to the video file to match it to the GPS track.<br>
Most of the time this will at least need to be set to the timezone difference between the 2 files plus some seconds if the video recording device isn't precisely set to correct time. GPS time is always exact and in UTC. Use positive values if GPS is ahead of video and negative otherwise.]]></comment>
</parameter>
<parameter type="constant" name="smoothing_value" max="10" min="0" default="5">
<name>Smoothing level</name>
<comment><![CDATA[How many GPS points to smooth in order to eliminate GPS errors.<br>
A value of 1 does not smooth locations, it only calculates the extra fields (speed, distance, etc), it also interpolates missing values for heart rate and altitude.]]></comment>
</parameter>
<parameter type="constant" name="speed_multiplier" min="0" max="30" decimals="2" default="1">
<name>Speed multiplier</name>
<comment><![CDATA[If the video file is a timelapse (or slow motion), use this value to set the speed up/slow down ratio.<br>
Sample values: 30 for 30x timelapse, 0.25 for 4x slow motion footage.]]></comment>
</parameter>
<parameter type="list" name="graph_data_source" paramlist="0;1;2;3" default="0">
<paramlistdisplay>GPS location/track,Altitude,Heart rate,Speed</paramlistdisplay>
<name>Graph data source</name>
<comment>What data from the GPS file is used for drawing</comment>
</parameter>
<parameter type="list" name="graph_type" paramlist="0;1;2" default="0">
<paramlistdisplay>Basic 2D map line (for location) or 1D graph per time (others),Zoom in onto the map/graph centered on current location,Draw speedometer</paramlistdisplay>
<name>Graph type</name>
<comment><![CDATA[<b>Speedometer</b> is available for all data sources but recommended only for speed; for the map type it represents the "percentage done" from trimmed start - end).<br>
Note: for type 1 (zoom and center, aka "follow the dot"):<br>
* crop values are only valid as a percentage and only the bottom (resp left) values
will be taken into consideration as both values (ie: bottom/top) will need to be equal to
keep the dot centered)<br>
* if data source is not GPS location, the centering will only be done for horizontal axis
(time), vertical axis crop will behave just like for the basic 2D map line (it will statically keep
the same min/max limit allowing the Now dot to move up and down).]]></comment>
</parameter>
<parameter type="constant" name="trim_start_p" min="0" max="100" default="0">
<name>Trim start (%)</name>
<comment><![CDATA[Trim data from the start of the GPS file (as a percentage of total). <br>
Note: both <em>Trim start</em> and <em>Trim end</em> are computed from the total file, so trimming 50% start and 50% end will result in trimming the entire file.]]></comment>
</parameter>
<parameter type="constant" name="trim_end_p" min="0" max="100" default="100">
<name>Trim end (%)</name>
<comment><![CDATA[Trim data from the end of the gps file (as a percentage of total). <br>
Note: both <em>Trim start</em> and <em>Trim end</em> are computed from the total file, so trimming 50% start and 50% end will result in trimming the entire file.]]></comment>
</parameter>
<parameter type="list" name="crop_mode_h" default="0" paramlist="0;1">
<paramlistdisplay>Percentage from min..max,Absolute value</paramlistdisplay>
<name>Crop mode horizontal</name>
<comment><![CDATA[Decides how to interpret the <em>Crop left</em> and <em>Crop right</em> values.<br>
Note: for the horizontal type, absolute values are the longitude (for the location
source type) and time (in milliseconds since epoch) for the rest of the data source types)]]></comment>
</parameter>
<parameter type="constant" name="crop_left_p" min="-200" max="200" default="0">
<name>Crop left</name>
<comment><![CDATA[Crops data from the left side of the graph (effectively zooming in). <br>
The value is interpreted either as a percentage of total or an absolute value depending on crop_mode_h. In percentage mode, the values are not restricted to 0-100 to allow for "zoom out" behaviour (ie: cropping -50 left will add an extra half of the total horizontal distance). Values over 100 (in % mode) will effectively not display anything. If <em>Graph Type</em> is set to <b>Speedometer</b>, all crop left/right values are ignored.]]></comment>
</parameter>
<parameter type="constant" name="crop_right_p" min="-200" max="200" default="100">
<name>Crop right</name>
<comment><![CDATA[Same as <em>Crop left</em> but for the right side, and percentage type is interpreted as an inverse percentage (ie: 100 = do not crop anything). Values under 0 will effectively not display anything.]]></comment>
</parameter>
<parameter type="list" name="crop_mode_v" default="0" paramlist="0;1">
<paramlistdisplay>Percentage from min..max,Absolute value</paramlistdisplay>
<name>Crop mode vertical</name>
<comment><![CDATA[Decides how to interpret the <em>Crop bottom</em> and <em>Crop top</em> values.<br/>
With an absolute value, it can zoom in to between 100 and 150m of altitude to show
small changes in altitude between those 2 values better.<br/>
Note: for the vertical type, absolute values are latitude degrees (for the location
source type) and altitude, heart rate, speed for the others interpreted as the <em>Legend unit</em>
type where applicable (ie: a value of 10 for altitude will be considered meters by default
but if changing <em>Legend unit</em> to feet it will mean 10 feet).]]></comment>
</parameter>
<parameter type="constant" name="crop_bot_p" min="-200" max="200" default="0">
<name>Crop bottom</name>
<comment><![CDATA[Crops data from the bottom side of the graph (effectively zooming in). <br>
The value is interpreted either as a percentage of total or an absolute value depending on crop_mode_v. In percentage mode the values are not restricted to 0-100 to allow for "zoom out" behaviour (ie: cropping -50 bot will add an extra half of the total vertical distance to the bottom). Values over 100 (in % mode) will effectively not display anything. If <em>Graph type</em> is <b>Speedometer</b>, this will set the minimum needle position which will clamp all values that are lower.]]></comment>
</parameter>
<parameter type="constant" name="crop_top_p" min="-200" max="200" default="100">
<name>Crop top</name>
<comment><![CDATA[Same as <em>Crop bottom</em> but for the top side, and percentage type is interpreted as an inverse percentage (ie: 100 = do not crop anything).<br>
Values under 0 will effectively not display anything.]]></comment>
</parameter>
<parameter type="list" name="color_style" paramlist="0;1;2;3;4;5;6;7;8;9;10;11;12">
<paramlistdisplay>One color,Two colors,Solid past - thin future,Solid future - thin past,Vertical gradient,Horizontal gradient,Color by duration,Color by altitude,Color by heart rate,Color by Speed,Color by Speed (max 100km/h),Color by grade (max 90 degrees),Color by grade (max 20 degrees)</paramlistdisplay>
<name>Graph color style</name>
<comment>See the documentation about the various styles available</comment>
</parameter>
<parameter type="fixedcolor" name="color.1" default="#ff00aaff">
<name>Color 1</name>
<comment>Sets the color #1 for the graph line</comment>
</parameter>
<parameter type="fixedcolor" name="color.2" default="#ff00e000">
<name>Color 2</name>
<comment>Sets the color #2 for the graph line</comment>
</parameter>
<parameter type="fixedcolor" name="color.3" default="#ffffff00">
<name>Color 3</name>
<comment>Sets the color #3 for the graph line</comment>
</parameter>
<parameter type="fixedcolor" name="color.4" default="#ffff8c00">
<name>Color 4</name>
<comment>Sets the color #4 for the graph line</comment>
</parameter>
<parameter type="fixedcolor" name="color.5" default="#ffff0000">
<name>Color 5</name>
<comment>Sets the color #5 for the graph line</comment>
</parameter>
<parameter type="bool" name="show_now_dot" min="0" max="1" default="1">
<name>Show Now dot</name>
<comment><![CDATA[Enable it to draw a disc at the current location/time over the graph line.<br>
If graph type is speedometer, this affects the needle.]]></comment>
</parameter>
<parameter type="fixedcolor" name="now_dot_color" default="white">
<name>Now dot color</name>
<comment>Sets the color for the Now dot</comment>
</parameter>
<parameter type="bool" name="show_now_text" min="0" max="1" default="0">
<name>Show Now text</name>
<comment><![CDATA[Enable it to draw the current value in big white bold letters on the bottom right side of the rect.<br>
The <em>Legend unit</em> value will be appended at the end and it will be used as the current unit (if a valid unit is found ie: kilometers if "km" is found anywhere in the <em>Legend unit</em> string).]]></comment>
</parameter>
<parameter type="constant" name="angle" min="0" max="360" default="0" decimals="3">
<name>Rotation</name>
<comment>Rotate the entire graph rectangle. For speedometer type the text stays horizontal.</comment>
</parameter>
<parameter type="constant" name="thickness" min="1" max="100" default="5">
<name>Line Thickness (px)</name>
<comment>Sets the thickness of the line graph in pixels.</comment>
</parameter>
<parameter type="bool" name="show_grid" min="0" max="1" default="0">
<name>Draw legend</name>
<comment><![CDATA[If enabled it will draw 5 horizontal (and vertical for map type) <br>
lines with small values each corresponding to the current data source value at 0%, 25%, 50%, 75% and 100% of current graph shown, affected by the <em>Legend unit</em> type if applicable, and with the string appended to the value. For speedometer type this shows division values (but without appending unit).]]></comment>
</parameter>
<parameter type="keywords" name="legend_unit" default="m" paramlist="m;meter;km;kilometer;mi;mile;ft;feet;nm;nautical;ms;m/ss;meter;km/h;mi/h;ft/s;kn;nm/h;knots;mmin;m/min;ftmin;ft/min">
<name>Legend unit</name>
<paramlistdisplay>m,meter,km,kilometer,mi,mile,ft,feet,nm,nautical,ms,m/s,meter per sec,km,km/h,kilometer per hr,mi,mi/h,mile per hr,ft,ft/s,feet per sec,kn,nm/h,knots,mmin,m/min,ftmin,ft/min</paramlistdisplay>
<comment><![CDATA[Sets the unit to be used for displaying values of type altitude and speed.<br>
Default is meters and km/h respectively. The unit is matched anywhere in the string so extra spaces can be used to tweak displaying.]]></comment>
</parameter>
<parameter type="bool" name="draw_individual_dots" min="0" max="1" default="0">
<name>Show dots only</name>
<comment><![CDATA[If enabled, the graph will be drawn using individual dots instead of lines.<br>
This will effectively show the individual data points as affected by smoothing (ie: for location data it will display each GPS fix if smoothing is 1) and can either be used as a cool effect when zoomed in enough or to debug unexpected line jumps.]]></comment>
</parameter>
<parameter type="animatedrect" name="rect" default="0 0 %width %height" fixed="0" opacity="false">
<name>Graph rectangle</name>
<comment><![CDATA[Defines the rectangle that the graph should be drawn in.<br>
Format is: "X Y W H". X, Y, W, H are assumed to be pixel units unless they have the suffix '%'.]]></comment>
</parameter>
<parameter type="url" name="bg_img_path" filter="Image files (*.png *.jpg *.webp *.jpeg)">
<name>Background image</name>
<comment><![CDATA[If a valid image file is selected, it will be used as a background for the rectangle area.<br>
Paths starting with the "!" character are ignored. TIP: use a map image to add context to the GPS track.]]></comment>
</parameter>
<parameter type="constant" name="bg_scale_w" min="0" max="200" default="1" factor="100">
<name>Background scale</name>
<comment><![CDATA[Scale the background image (relative to center) to match it to the above GPS track.<br>
Values smaller than 100 zoom into the image, values larger than 100 zoom out. 0 hides it.]]></comment>
</parameter>
<parameter type="constant" name="bg_opacity" min="0" max="100" default="1" factor="100">
<name>Background opacity</name>
<comment><![CDATA[Sets the opacity for the background image]]></comment>
</parameter>
<parameter type="fixed" name="gps_start_text">
<name>GPS start time</name>
<comment>Date and time of the first valid GPS point.</comment>
</parameter>
<parameter type="fixed" name="video_start_text">
<name>Video start time</name>
<comment>Date and time of the video file.</comment>
</parameter>
<parameter type="fixed" name="auto_gps_offset_start">
<name>Auto offset start</name>
<comment>Provides a helper offset to guarantee start of video file syncs with the start of GPS file. Correctly sets the offset if video file and GPS recording was started at the same time.</comment>
</parameter>
<parameter type="fixed" name="auto_gps_offset_now">
<name>Auto offset now</name>
<comment>Provides a helper offset to sync the first GPS point to current video time (it is updated every second). Correctly sets the offset if your video record the moment GPS starts.</comment>
</parameter>
<parameter type="fixed" name="map_coords_hint">
<name>Map hint</name>
<comment>Returns the middle latitude and longitude coordinates of the gps file.</comment>
</parameter>
</effect>

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>
INSTALL (FILES INSTALL (FILES

View File

@@ -7,10 +7,10 @@
<parameter type="fixed" name="filter" value="shape"> <parameter type="fixed" name="filter" value="shape">
<name>Filter</name> <name>Filter</name>
</parameter> </parameter>
<parameter type="urllist" paramlist="%maskPaths" name="filter.resource" filter="Video files (*)"> <parameter type="url" name="filter.resource" filter="Video files (*)">
<name>Image or video resource</name> <name>Image or video resource</name>
</parameter> </parameter>
<parameter type="keyframe" name="filter.mix" max="100" min="0" default="70" suffix="%" relative="true"> <parameter type="constant" name="filter.mix" max="100" min="0" default="100" suffix="%">
<name>Threshold</name> <name>Threshold</name>
<comment>Convert alpha or luma values below this level as opaque and above this level as transparent. This is mostly useful for luma wipe images.</comment> <comment>Convert alpha or luma values below this level as opaque and above this level as transparent. This is mostly useful for luma wipe images.</comment>
</parameter> </parameter>
@@ -20,7 +20,7 @@
</parameter> </parameter>
<parameter type="bool" name="filter.invert" default="0" min="0" max="1"> <parameter type="bool" name="filter.invert" default="0" min="0" max="1">
<name>Invert</name> <name>Invert</name>
<comment>Use the inverse of the alpha channel.</comment> <comment>Use the inverse of the alpha or luma value.</comment>
</parameter> </parameter>
<parameter type="bool" name="filter.use_luminance" default="0" min="0" max="1"> <parameter type="bool" name="filter.use_luminance" default="0" min="0" max="1">
<name>Use Luma</name> <name>Use Luma</name>
@@ -30,13 +30,5 @@
<name>Use Threshold</name> <name>Use Threshold</name>
<comment>Whether to apply a threshold filter to the luma or alpha or not. If not, luma or alpha value of the resource (File) is copied to the alpha channel.</comment> <comment>Whether to apply a threshold filter to the luma or alpha or not. If not, luma or alpha value of the resource (File) is copied to the alpha channel.</comment>
</parameter> </parameter>
<parameter type="position" name="in" default="%in" min="0" max="1000000">
<name>Offset</name>
<comment>Start position for the mask file.</comment>
</parameter>
<parameter type="position" name="out" default="-1" min="-1" max="1000000">
<name>Out</name>
<comment>End position for the mask file.</comment>
</parameter>
<parameter type="fixed" name="filter.audio_match" default="0" /> <parameter type="fixed" name="filter.audio_match" default="0" />
</effect> </effect>

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>
INSTALL (FILES INSTALL (FILES

View File

@@ -7,7 +7,7 @@
<parameter type="animatedrect" name="rect" default="adjustcenter" fixed="1" opacity="false"> <parameter type="animatedrect" name="rect" default="adjustcenter" fixed="1" opacity="false">
<name>Rectangle</name> <name>Rectangle</name>
</parameter> </parameter>
<parameter type="keyframe" name="blur" max="50" min="0" default="4" suffix="%"> <parameter type="constant" name="blur" max="50" min="0" default="4" suffix="%">
<name>Blur</name> <name>Blur</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -8,7 +8,7 @@
<parameter type="animatedrect" name="rect" default="0 0 %width %height 1"> <parameter type="animatedrect" name="rect" default="0 0 %width %height 1">
<name>Rectangle</name> <name>Rectangle</name>
</parameter> </parameter>
<parameter type="animated" name="rotation" max="360" min="-360" default="0" decimals="2" notintimeline="1"> <parameter type="animated" name="rotation" max="360" min="-360" default="0" notintimeline="1">
<name>Rotation</name> <name>Rotation</name>
</parameter> </parameter>
<parameter type="list" name="compositing" default="0" paramlist="0;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;6;8"> <parameter type="list" name="compositing" default="0" paramlist="0;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;6;8">
@@ -36,7 +36,7 @@
<parameter type="animatedrect" name="rect" default="0 0 %width %height 1"> <parameter type="animatedrect" name="rect" default="0 0 %width %height 1">
<name>Rectangle</name> <name>Rectangle</name>
</parameter> </parameter>
<parameter type="animated" name="rotation" max="360" min="-360" default="0" decimals="2" notintimeline="1" suffix="°" compact="1"> <parameter type="animated" name="rotation" max="360" min="-360" default="0" notintimeline="1" suffix="°" compact="1">
<name>Rotation</name> <name>Rotation</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -1,55 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="affine" id="3wayrotate">
<name context="Affine Transform Effect Name">3-way Rotate</name>
<description>Rotate clip in any 3 directions</description>
<author>Charles Yates</author>
<parameter type="fixed" name="transition.keyed" max="1" min="1" default="1">
</parameter>
<parameter type="bool" name="transition.repeat_off" default="1">
<name>Disable repeat</name>
<comment><![CDATA[When animating properties with keyframes,<br>
whether to repeat the animation after it reaches the last key frame.]]></comment>
</parameter>
<parameter type="bool" name="transition.mirror_off" default="1">
<name>Disable mirror</name>
<comment><![CDATA[When animating properties with keyframes and <em>Disable repeat</em> is off,<br>
whether the animation alternates between reverses and forwards for each repetition.]]></comment>
</parameter>
<parameter type="bool" name="transition.invert_scale" default="1">
<name>Invert scale</name>
<comment><![CDATA[Whether to invert the <em>Scale X</em> and <em>Scale Y</em> values.<br>
This is helpful to make animation interpolation sane because otherwise the scale values do not animate linearly.]]></comment>
</parameter>
<parameter type="animated" name="transition.rotate_x" max="360" min="-360" default="0" decimals="2" suffix="°" notintimeline="1">
<name>Rotate X</name>
<comment><![CDATA[Angle of rotation along the X axis]]></comment>
</parameter>
<parameter type="animated" name="transition.rotate_y" max="360" min="-360" default="0" decimals="2" suffix="°" notintimeline="1">
<name>Rotate Y</name>
<comment><![CDATA[Angle of rotation along the Y axis]]></comment>
</parameter>
<parameter type="animated" name="transition.rotate_z" max="360" min="-360" default="0" decimals="2" suffix="°" notintimeline="1">
<name>Rotate Z</name>
<comment><![CDATA[Angle of rotation along the Z axis]]></comment>
</parameter>
<parameter type="animated" name="transition.ox" max="%width" min="-%width" default="0" notintimeline="1">
<name>Offset X</name>
<comment><![CDATA[Offset along the X axis]]></comment>
</parameter>
<parameter type="animated" name="transition.oy" max="%height" min="-%height" default="0" notintimeline="1">
<name>Offset Y</name>
<comment><![CDATA[Offset along the Y axis]]></comment>
</parameter>
<parameter type="color" name="producer.resource" default="0x00000000" alpha="1">
<name>Background Color</name>
</parameter>
<parameter type="animated" name="transition.scale_x" max="10" min="0" default="1" decimals="2" notintimeline="1">
<name>Scale X</name>
<comment><![CDATA[Scale factor applied to the X axis]]></comment>
</parameter>
<parameter type="animated" name="transition.scale_y" max="10" min="0" default="1" decimals="2" notintimeline="1">
<name>Scale Y</name>
<comment><![CDATA[Scale factor applied to the Y axis]]></comment>
</parameter>
</effect>

View File

@@ -1,16 +1,16 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE kpartgui> <!DOCTYPE kpartgui>
<effect tag="affine" id="affine"> <effect tag="affine" id="affine">
<name>Rotate and Shear (deprecated)</name> <name>Rotate and Shear</name>
<description>Rotate clip in any 3 directions</description> <description>Rotate clip in any 3 directions</description>
<author>Charles Yates</author> <author>Charles Yates</author>
<parameter type="keyframe" name="transition.fix_rotate_x" max="1800" min="-1800" default="0" factor="10"> <parameter type="constant" name="transition.fix_rotate_x" max="1800" min="-1800" default="0" factor="10">
<name>Rotate X</name> <name>Rotate X</name>
</parameter> </parameter>
<parameter type="keyframe" name="transition.fix_rotate_y" max="1800" min="-1800" default="0" factor="10"> <parameter type="constant" name="transition.fix_rotate_y" max="1800" min="-1800" default="0" factor="10">
<name>Rotate Y</name> <name>Rotate Y</name>
</parameter> </parameter>
<parameter type="keyframe" name="transition.fix_rotate_z" max="1800" min="-1800" default="0" factor="10"> <parameter type="constant" name="transition.fix_rotate_z" max="1800" min="-1800" default="0" factor="10">
<name>Rotate Z</name> <name>Rotate Z</name>
</parameter> </parameter>
<parameter type="constant" name="transition.rotate_x" max="200" min="-200" default="0" factor="10"> <parameter type="constant" name="transition.rotate_x" max="200" min="-200" default="0" factor="10">
@@ -22,10 +22,10 @@
<parameter type="constant" name="transition.rotate_z" max="200" min="-200" default="0" factor="10"> <parameter type="constant" name="transition.rotate_z" max="200" min="-200" default="0" factor="10">
<name>Animate Rotate Z</name> <name>Animate Rotate Z</name>
</parameter> </parameter>
<parameter type="keyframe" name="transition.fix_shear_x" max="1800" min="-1800" default="0" factor="10"> <parameter type="constant" name="transition.fix_shear_x" max="1800" min="-1800" default="0" factor="10">
<name>Shear X</name> <name>Shear X</name>
</parameter> </parameter>
<parameter type="keyframe" name="transition.fix_shear_y" max="1800" min="-1800" default="0" factor="10"> <parameter type="constant" name="transition.fix_shear_y" max="1800" min="-1800" default="0" factor="10">
<name>Shear Y</name> <name>Shear Y</name>
</parameter> </parameter>
<parameter type="constant" name="transition.shear_x" max="200" min="-200" default="0" factor="10"> <parameter type="constant" name="transition.shear_x" max="200" min="-200" default="0" factor="10">

View File

@@ -1,7 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE kpartgui> <!DOCTYPE kpartgui>
<effect tag="affine" id="affinerotate"> <effect tag="affine" id="affinerotate">
<name>Rotate (deprecated)</name> <name>Rotate (keyframable)</name>
<description>Rotate clip in any 3 directions</description> <description>Rotate clip in any 3 directions</description>
<author>Charles Yates</author> <author>Charles Yates</author>
<parameter type="simplekeyframe" name="transition.rotate_x" max="1800" min="-1800" default="0" factor="10"> <parameter type="simplekeyframe" name="transition.rotate_x" max="1800" min="-1800" default="0" factor="10">

View File

@@ -4,10 +4,10 @@
<name context="Sepia Effect Name">Sepia</name> <name context="Sepia Effect Name">Sepia</name>
<description>Turn clip colors to sepia</description> <description>Turn clip colors to sepia</description>
<author>Charles Yates</author> <author>Charles Yates</author>
<parameter type="keyframe" name="u" max="255" min="0" default="75"> <parameter type="constant" name="u" max="255" min="0" default="75">
<name>Chrominance U</name> <name>Chrominance U</name>
</parameter> </parameter>
<parameter type="keyframe" name="v" max="255" min="0" default="150"> <parameter type="constant" name="v" max="255" min="0" default="150">
<name>Chrominance V</name> <name>Chrominance V</name>
</parameter> </parameter>
</effect> </effect>

View File

@@ -4,10 +4,10 @@
<name>Shape Alpha</name> <name>Shape Alpha</name>
<description>Create an alpha channel (transparency) based on another resource</description> <description>Create an alpha channel (transparency) based on another resource</description>
<author>Charles Yates</author> <author>Charles Yates</author>
<parameter type="urllist" paramlist="%maskPaths" name="resource" filter="Video files (*)"> <parameter type="url" name="resource" filter="Video files (*)">
<name>Image or video resource</name> <name>Image or video resource</name>
</parameter> </parameter>
<parameter type="keyframe" name="mix" max="100" min="0" default="100" suffix="%" relative="true"> <parameter type="constant" name="mix" max="100" min="0" default="100" suffix="%">
<name>Threshold</name> <name>Threshold</name>
<comment>Convert alpha or luma values below this level as opaque and above this level as transparent. This is mostly useful for luma wipe images.</comment> <comment>Convert alpha or luma values below this level as opaque and above this level as transparent. This is mostly useful for luma wipe images.</comment>
</parameter> </parameter>
@@ -17,7 +17,7 @@
</parameter> </parameter>
<parameter type="bool" name="invert" default="0" min="0" max="1"> <parameter type="bool" name="invert" default="0" min="0" max="1">
<name>Invert</name> <name>Invert</name>
<comment>Use the inverse of the alpha channel.</comment> <comment>Use the inverse of the alpha or luma value.</comment>
</parameter> </parameter>
<parameter type="bool" name="use_luminance" default="0" min="0" max="1"> <parameter type="bool" name="use_luminance" default="0" min="0" max="1">
<name>Use Luma</name> <name>Use Luma</name>
@@ -27,13 +27,5 @@
<name>Use Threshold</name> <name>Use Threshold</name>
<comment>Whether to apply a threshold filter to the luma or alpha or not. If not, luma or alpha value of the resource (File) is copied to the alpha channel.</comment> <comment>Whether to apply a threshold filter to the luma or alpha or not. If not, luma or alpha value of the resource (File) is copied to the alpha channel.</comment>
</parameter> </parameter>
<parameter type="position" name="in" default="%in" min="0" max="1000000">
<name>Offset</name>
<comment>Start position for the mask file.</comment>
</parameter>
<parameter type="position" name="out" default="-1" min="-1" max="1000000">
<name>Out</name>
<comment>End position for the mask file.</comment>
</parameter>
<parameter type="fixed" name="audio_match" default="0" /> <parameter type="fixed" name="audio_match" default="0" />
</effect> </effect>

View File

@@ -1,52 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="affine" id="affineshear">
<name context="Affine Transform Effect Name">Shear</name>
<description>Shear a clip along the 3 axes</description>
<author>Charles Yates</author>
<parameter type="fixed" name="keyed" default="1">
</parameter>
<parameter type="bool" name="transition.repeat_off" default="1">
<name>Disable repeat</name>
<comment><![CDATA[When animating properties with keyframes,<br>
whether to repeat the animation after it reaches the last key frame.]]></comment>
</parameter>
<parameter type="bool" name="transition.mirror_off" default="1">
<name>Disable mirror</name>
<comment><![CDATA[When animating properties with keyframes and <em>Disable repeat</em> is off,<br>
whether the animation alternates between reverses and forwards for each repetition.]]></comment>
</parameter>
<parameter type="bool" name="transition.invert_scale" default="1">
<name>Invert scale</name>
<comment><![CDATA[Whether to invert the <em>Scale X</em> and <em>Scale Y</em> values.<br>
This is helpful to make animation interpolation sane because otherwise the scale values do not animate linearly.]]></comment>
</parameter>
<parameter type="animated" name="transition.fix_shear_x" max="360" min="-360" default="0" decimals="1" notintimeline="1" suffix="°">
<name>Shear X</name>
<comment><![CDATA[Shear angle around the X axis]]></comment>
</parameter>
<parameter type="animated" name="transition.fix_shear_y" max="360" min="-360" default="0" decimals="1" notintimeline="1" suffix="°">
<name>Shear Y</name>
<comment><![CDATA[Shear angle around the Y axis]]></comment>
</parameter>
<parameter type="animated" name="transition.fix_shear_z" max="360" min="-360" default="0" decimals="1" notintimeline="1" suffix="°">
<name>Shear Z</name>
<comment><![CDATA[Shear angle around the Z axis]]></comment>
</parameter>
<parameter type="animated" name="transition.ox" max="%width" min="-%width" default="0" factor="-1" notintimeline="1">
<name>Offset X</name>
<comment><![CDATA[Offset along the X axis]]></comment>
</parameter>
<parameter type="animated" name="transition.oy" max="%height" min="-%height" default="0" notintimeline="1">
<name>Offset Y</name>
<comment><![CDATA[Offset along Y axis]]></comment>
</parameter>
<parameter type="animated" name="transition.scale_x" max="10" min="0" default="1" decimals="2" notintimeline="1">
<name>Scale X</name>
<comment><![CDATA[Scale factor applied to the X axis]]></comment>
</parameter>
<parameter type="animated" name="transition.scale_y" max="10" min="0" default="1" decimals="2" notintimeline="1">
<name>Scale Y</name>
<comment><![CDATA[Scale factor applied to the Y axis]]></comment>
</parameter>
</effect>

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>
INSTALL (FILES INSTALL (FILES

View File

@@ -1,15 +0,0 @@
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect tag="strobe" id="strobe">
<name>Alpha strobing</name>
<description>Strobes the alpha channel to 0. Many other filters overwrite the alpha channel, in that case this needs to be last.</description>
<author> Martin Sandsmark</author>
<parameter type="bool" name="strobe_invert" default="0" min="0" max="1">
<name>Invert</name>
<comment>Whether to invert which frames are on and which is off</comment>
</parameter>
<parameter type="keyframe" name="interval" max="100" min="1" default="1">
<name>Interval</name>
<comment>Duration of strobe</comment>
</parameter>
</effect>

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>
INSTALL (FILES INSTALL (FILES

View File

@@ -10,8 +10,8 @@
<parameter type="listdependency" name="algo" default="KCF" paramlist="KCF;CSRT;MOSSE;MIL;MEDIANFLOW;DaSIAM;Nano" conditional="1"> <parameter type="listdependency" name="algo" default="KCF" paramlist="KCF;CSRT;MOSSE;MIL;MEDIANFLOW;DaSIAM;Nano" conditional="1">
<paramlistdisplay>KCF,CSRT,MOSSE,MIL,MedianFlow,DaSIAM,Nano</paramlistdisplay> <paramlistdisplay>KCF,CSRT,MOSSE,MIL,MedianFlow,DaSIAM,Nano</paramlistdisplay>
<name>Tracker algorithm</name> <name>Tracker algorithm</name>
<paramdependencies value="DaSIAM" files="dasiamrpn_model.onnx;dasiamrpn_kernel_r1.onnx;dasiamrpn_kernel_cls1.onnx" folder="/opencvmodels">Required model files for DaSiam Tracker not found in &lt;a href="file://%folder"&gt;models folder&lt;/a&gt;. Check our &lt;a href="https://docs.kdenlive.org/en/effects_and_filters/video_effects/alpha_mask_keying/motion_tracker.html#id3"&gt;manual&lt;/a&gt; for instructions.</paramdependencies> <paramdependencies value="DaSIAM" files="dasiamrpn_model.onnx;dasiamrpn_kernel_r1.onnx;dasiamrpn_kernel_cls1.onnx" folder="/opencvmodels">Required model files for DaSiam Tracker not found in &lt;a href="file://%folder"&gt;models folder&lt;/a&gt;. Check our &lt;a href="https://docs.kdenlive.org/en/effects_and_compositions/video_effects/alpha_mask_keying/motion_tracker.html#dasiam"&gt;manual&lt;/a&gt; for instructions.</paramdependencies>
<paramdependencies value="Nano" files="nanotrack_backbone_sim.onnx;nanotrack_head_sim.onnx" folder="/opencvmodels">Requires OpenCV >= 4.7. Required model files for Nano Tracker not found in &lt;a href="file://%folder"&gt;models folder&lt;/a&gt;. Check our &lt;a href="https://docs.kdenlive.org/en/effects_and_filters/video_effects/alpha_mask_keying/motion_tracker.html#id3"&gt;manual&lt;/a&gt; for instructions.</paramdependencies> <paramdependencies value="Nano" files="nanotrack_backbone_sim.onnx;nanotrack_head_sim.onnx" folder="/opencvmodels">Requires OpenCV >= 4.7. Required model files for Nano Tracker not found in &lt;a href="file://%folder"&gt;models folder&lt;/a&gt;. Check our &lt;a href="https://docs.kdenlive.org/en/effects_and_compositions/video_effects/alpha_mask_keying/motion_tracker.html#nano"&gt;manual&lt;/a&gt; for instructions.</paramdependencies>
</parameter> </parameter>
<parameter type="constant" name="steps" default="5" min="0" max="120"> <parameter type="constant" name="steps" default="5" min="0" max="120">
<name>Keyframes spacing</name> <name>Keyframes spacing</name>

View File

@@ -6,22 +6,19 @@ MPEG=qscale=4 ab=192k vcodec=mpeg2video acodec=mp2 threads=%threads;mpg
[proxy] [proxy]
# proxy settings should be FFmpeg type parameters, like: -vcodec libx264 # proxy settings should be FFmpeg type parameters, like: -vcodec libx264
x264=-vf scale=%width:-2 -vsync 1 -c:v libx264 -g 1 -bf 0 -vb 0 -crf 20 -preset veryfast -c:a aac -ab 128k;mov x264=-vf scale=%width:-2 -vcodec libx264 -g 1 -bf 0 -vb 0 -crf 20 -preset veryfast -acodec aac -ab 128k;mov
x264-vaapi=-init_hw_device vaapi=vaapi0: -filter_hw_device vaapi0 -i -vf scale=%width:-2,format=nv12,hwupload -vsync 1 -c:v h264_vaapi -g 1 -bf 0 -qp 26 -c:a aac -ab 128k;mov x264-vaapi=-init_hw_device vaapi=vaapi0: -filter_hw_device vaapi0 -i -vf scale=%width:-2,format=nv12,hwupload -codec:v h264_vaapi -g 1 -bf 0 -qp 26 -acodec ac3 -ab 128k;mov
x264-amf=-f mp4 -vsync 1 -c:v h264_amf -g 1 -bf 0 -qp 26 -c:a aac -ab 128k;mp4 x264-amf=-f mp4 -codec:v h264_amf -g 1 -bf 0 -qp 26 -acodec ac3 -ab 128k;mp4
x264-qsv=-f mp4 -vsync 1 -c:v h264_qsv -g 1 -bf 0 -qp 26 -c:a aac -ab 128k;mp4 x264-qsv=-f mp4 -codec:v h264_qsv -g 1 -bf 0 -qp 26 -acodec ac3 -ab 128k;mp4
x264-videotoolbox=-f mp4 -vsync 1 -c:v h264_videotoolbox -g 1 -bf 0 -qp 26 -c:a aac -ab 128k;mp4 x264-videotoolbox=-f mp4 -codec:v h264_videotoolbox -g 1 -bf 0 -qp 26 -acodec ac3 -ab 128k;mp4
x264-vaapi-scale=-hwaccel vaapi -hwaccel_output_format vaapi -i -vf scale_vaapi=w=%width:h=-2:format=nv12,hwupload -vsync 1 -c:v h264_vaapi -g 1 -bf 0 -qp 26 -c:a aac -ab 128k;mov x264-vaapi-scale=-hwaccel vaapi -hwaccel_output_format vaapi -i -vf scale_vaapi=w=%width:h=-2:format=nv12,hwupload -codec:v h264_vaapi -g 1 -bf 0 -qp 26 -acodec ac3 -ab 128k;mov
x264-nvenc=-vsync 1 -c:v %nvcodec -resize %frameSize -i -c:v h264_nvenc -g 2 -bf 0 -c:a aac -ab 128k;mov x264-nvenc=-vsync 0 -c:v %nvcodec -resize %frameSize -i -vcodec h264_nvenc -g 2 -bf 0 -acodec copy;mov
MPEG2=-vf scale=%width:-2 -g 1 -bf 0 -vb 0 -qscale 6 -ab 128k -c:v mpeg2video -c:a ac3;mpg MPEG2=-vf scale=%width:-2 -g 1 -bf 0 -vb 0 -qscale 6 -ab 128k -vcodec mpeg2video -acodec ac3;mpg
MJPEG=-vf yadif,scale=%width:-2 -qscale 3 -c:v mjpeg -c:a pcm_s16le;mkv MJPEG=-vf yadif,scale=%width:-2 -qscale 3 -vcodec mjpeg -acodec pcm_s16le;mkv
MJPEG-vaapi=-init_hw_device vaapi=vaapi0:,connection_type=x11 -filter_hw_device vaapi0 -vf format=nv12,hwupload -c:v mjpeg_vaapi -codec:a copy;mkv MJPEG-vaapi=-init_hw_device vaapi=vaapi0:,connection_type=x11 -filter_hw_device vaapi0 -vf format=nv12,hwupload -codec:v mjpeg_vaapi -codec:a copy;mkv
ProRes=-vf scale=%width:-2 -c:v prores_ks -vb 0 -g 1 -bf 0 -vprofile 0 -vendor ap10 -qscale 11;mov ProRes=-vf scale=%width:-2 -vcodec prores_ks -vb 0 -g 1 -bf 0 -vprofile 0 -vendor ap10 -qscale 11;mov
NVENC H264=-vsync 1 -c:v h264_nvenc -vb 30000k -rc cbr -c:a aac -ab 128k;mp4 NVENC H264=-vcodec h264_nvenc -vb 30000k -rc cbr -acodec aac -ab 192k;mp4
NVENC H265=-c:v hevc_nvenc -vb 30000k -c:a aac -ab 128k;mp4 NVENC H265=-vcodec hevc_nvenc -vb 30000k -acodec aac -ab 192k;mp4
[proxy-alpha]
FFV1=-vf scale=%width:-2 -f mov -vcodec ffv1 -pix_fmt bgra -c:a aac -ab 128k;mkv
[screengrab] [screengrab]
# proxy settings should be FFmpeg type parameters, like: -vcodec libx264 # proxy settings should be FFmpeg type parameters, like: -vcodec libx264

View File

@@ -13,7 +13,7 @@
<paramlistdisplay>Seconds to 0,Seconds to 1,Frames,Timecode,Clock</paramlistdisplay> <paramlistdisplay>Seconds to 0,Seconds to 1,Frames,Timecode,Clock</paramlistdisplay>
<name>Counter Style</name> <name>Counter Style</name>
</parameter> </parameter>
<parameter type="list" name="sound" default="silent" paramlist="silent;2pop;frame0" audio="2pop;frame0"> <parameter type="list" name="sound" default="silent" paramlist="silent;2pop;frame0">
<paramlistdisplay>Silent,1kHz beep before end,1kHz beep each second</paramlistdisplay> <paramlistdisplay>Silent,1kHz beep before end,1kHz beep each second</paramlistdisplay>
<name>Sound</name> <name>Sound</name>
</parameter> </parameter>

View File

@@ -1,5 +1,5 @@
<!DOCTYPE kpartgui> <!DOCTYPE kpartgui>
<generator tag="noise" id="noise" type="audio;video"> <generator tag="noise" id="noise">
<name>White Noise</name> <name>White Noise</name>
<description>White noise producer</description> <description>White noise producer</description>
<author>Charles Yates</author> <author>Charles Yates</author>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Vincent Pinon <vpinon@kde.org>, Julius Künzel <julius.kuenzel@kde.org>, Jean-Baptiste Mardelle <jb@kdenlive.org> # SPDX-FileCopyrightText: Vincent Pinon <vpinon@kde.org>, Julius Künzel <jk.kdedev@smartlab.uber.space>, Jean-Baptiste Mardelle <jb@kdenlive.org>
ecm_install_icons(ICONS ecm_install_icons(ICONS
16-apps-kdenlive.png 16-apps-kdenlive.png

View File

@@ -22,7 +22,6 @@ Comment[fr]=Kdenlive
Comment[ga]=Kdenlive Comment[ga]=Kdenlive
Comment[gl]=Kdenlive Comment[gl]=Kdenlive
Comment[he]=Kdenlive Comment[he]=Kdenlive
Comment[hi]=केडेनलाइव
Comment[hu]=Kdenlive Comment[hu]=Kdenlive
Comment[id]=Kdenlive Comment[id]=Kdenlive
Comment[it]=Kdenlive Comment[it]=Kdenlive
@@ -42,7 +41,6 @@ Comment[pt]=Kdenlive
Comment[pt_BR]=Kdenlive Comment[pt_BR]=Kdenlive
Comment[ro]=Kdenlive Comment[ro]=Kdenlive
Comment[ru]=Kdenlive Comment[ru]=Kdenlive
Comment[sa]=क्डेन्लिव्
Comment[sk]=Kdenlive Comment[sk]=Kdenlive
Comment[sl]=Kdenlive Comment[sl]=Kdenlive
Comment[sv]=Kdenlive Comment[sv]=Kdenlive
@@ -74,7 +72,6 @@ Name[fi]=Renderöinti valmistui
Name[fr]=Rendu terminé Name[fr]=Rendu terminé
Name[gl]=Rematou a renderización Name[gl]=Rematou a renderización
Name[he]=הצלימה הושלמה Name[he]=הצלימה הושלמה
Name[hi]=रेंडरिंग समाप्त
Name[hu]=A renderelés befejeződött Name[hu]=A renderelés befejeződött
Name[id]=Perenderan selesai Name[id]=Perenderan selesai
Name[it]=Esportazione terminata Name[it]=Esportazione terminata
@@ -93,7 +90,6 @@ Name[pt]=A geração terminou
Name[pt_BR]=A renderização terminou Name[pt_BR]=A renderização terminou
Name[ro]=Randare încheiată Name[ro]=Randare încheiată
Name[ru]=Сборка завершена Name[ru]=Сборка завершена
Name[sa]=प्रतिपादनं समाप्तम्
Name[sk]=Renderovanie ukončené Name[sk]=Renderovanie ukončené
Name[sl]=Izrisovanje končano Name[sl]=Izrisovanje končano
Name[sv]=Återgivning klar Name[sv]=Återgivning klar
@@ -122,7 +118,6 @@ Comment[fi]=Renderöinti on tehty
Comment[fr]=Le rendu est terminé Comment[fr]=Le rendu est terminé
Comment[gl]=Rematou a renderización Comment[gl]=Rematou a renderización
Comment[he]=הצלימה הסתיימה Comment[he]=הצלימה הסתיימה
Comment[hi]=रेंडरिंग समाप्त हो गया है
Comment[hu]=A renderelésnek vége Comment[hu]=A renderelésnek vége
Comment[id]=Perenderan telah usai Comment[id]=Perenderan telah usai
Comment[it]=L'esportazione è terminata Comment[it]=L'esportazione è terminata
@@ -141,7 +136,6 @@ Comment[pt]=A geração terminou
Comment[pt_BR]=A renderização foi terminada Comment[pt_BR]=A renderização foi terminada
Comment[ro]=Randarea s-a încheiat Comment[ro]=Randarea s-a încheiat
Comment[ru]=Сборка завершена Comment[ru]=Сборка завершена
Comment[sa]=प्रतिपादनं समाप्तम् अस्ति
Comment[sk]=Renderovanie je skončené Comment[sk]=Renderovanie je skončené
Comment[sl]=Izrisovanje je poteklo Comment[sl]=Izrisovanje je poteklo
Comment[sv]=Återgivningen är gjord Comment[sv]=Återgivningen är gjord
@@ -173,7 +167,6 @@ Name[fi]=Renderöinti aloitettu
Name[fr]=Rendu démarré Name[fr]=Rendu démarré
Name[gl]=Comezou a renderización Name[gl]=Comezou a renderización
Name[he]=הצלימה החלה Name[he]=הצלימה החלה
Name[hi]=रेंडरिंग शुरू हुई
Name[hu]=A renderelés elkezdődött Name[hu]=A renderelés elkezdődött
Name[id]=Perenderan dimulai Name[id]=Perenderan dimulai
Name[it]=Esportazione avviata Name[it]=Esportazione avviata
@@ -192,7 +185,6 @@ Name[pt]=A geração foi iniciada
Name[pt_BR]=A renderização iniciou Name[pt_BR]=A renderização iniciou
Name[ro]=Randarea începută Name[ro]=Randarea începută
Name[ru]=Сборка запущена Name[ru]=Сборка запущена
Name[sa]=प्रतिपादनं आरब्धम्
Name[sk]=Renderovanie spustené Name[sk]=Renderovanie spustené
Name[sl]=Izrisovanje začeto Name[sl]=Izrisovanje začeto
Name[sv]=Återgivning startad Name[sv]=Återgivning startad
@@ -221,7 +213,6 @@ Comment[fi]=Renderöinti aloitettiin
Comment[fr]=Le rendu a démarré Comment[fr]=Le rendu a démarré
Comment[gl]=Comezou a renderización Comment[gl]=Comezou a renderización
Comment[he]=הצלימה החלה Comment[he]=הצלימה החלה
Comment[hi]=रेंडरिंग शुरू हो गई
Comment[hu]=A renderelés elkezdődött Comment[hu]=A renderelés elkezdődött
Comment[id]=Perenderan telah dimulai Comment[id]=Perenderan telah dimulai
Comment[it]=L'esportazione è stata avviata Comment[it]=L'esportazione è stata avviata
@@ -240,7 +231,6 @@ Comment[pt]=A geração foi iniciada
Comment[pt_BR]=A renderização foi iniciada Comment[pt_BR]=A renderização foi iniciada
Comment[ro]=Randarea a început Comment[ro]=Randarea a început
Comment[ru]=Сборка запущена Comment[ru]=Сборка запущена
Comment[sa]=प्रतिपादनं आरब्धम् आसीत्
Comment[sk]=Renderovanie bolo spustené Comment[sk]=Renderovanie bolo spustené
Comment[sl]=Izrisovanje se je začelo Comment[sl]=Izrisovanje se je začelo
Comment[sv]=Återgivningen har startats Comment[sv]=Återgivningen har startats
@@ -272,7 +262,6 @@ Name[fi]=Ruutu kaapattu
Name[fr]=Cadre capturé Name[fr]=Cadre capturé
Name[gl]=Fotograma capturado Name[gl]=Fotograma capturado
Name[he]=התמונית נלכדה Name[he]=התמונית נלכדה
Name[hi]=फ़्रेम कैप्चर किया गया
Name[hu]=Képkocka rögzítve Name[hu]=Képkocka rögzítve
Name[id]=Frame ditangkap Name[id]=Frame ditangkap
Name[it]=Fotogramma acquisito Name[it]=Fotogramma acquisito
@@ -291,7 +280,6 @@ Name[pt]=Imagem capturada
Name[pt_BR]=Imagem capturada Name[pt_BR]=Imagem capturada
Name[ro]=Cadru captat Name[ro]=Cadru captat
Name[ru]=Кадр получен Name[ru]=Кадр получен
Name[sa]=फ्रेमः गृहीतः
Name[sk]=Snímka zachytená Name[sk]=Snímka zachytená
Name[sl]=Sličica zajeta Name[sl]=Sličica zajeta
Name[sv]=Ram lagrad Name[sv]=Ram lagrad
@@ -320,7 +308,6 @@ Comment[fi]=Ruutu kaapattiin levylle
Comment[fr]=Un cadre a été capturé sur le disque Comment[fr]=Un cadre a été capturé sur le disque
Comment[gl]=Capturouse un fotograma para o disco Comment[gl]=Capturouse un fotograma para o disco
Comment[he]=תמונית נלכדה לכונן Comment[he]=תמונית נלכדה לכונן
Comment[hi]=एक फ्रेम डिस्क पर कैप्चर किया गया
Comment[hu]=Egy képkocka rögzítésre került a lemezre Comment[hu]=Egy képkocka rögzítésre került a lemezre
Comment[id]=Sebuah frame telah ditangkap ke disk Comment[id]=Sebuah frame telah ditangkap ke disk
Comment[it]=È stato acquisito un fotogramma sul disco Comment[it]=È stato acquisito un fotogramma sul disco
@@ -339,7 +326,6 @@ Comment[pt]=Foi capturada uma imagem para o disco
Comment[pt_BR]=Foi capturada uma imagem para o disco Comment[pt_BR]=Foi capturada uma imagem para o disco
Comment[ro]=Un cadru a fost captat pe disc Comment[ro]=Un cadru a fost captat pe disc
Comment[ru]=Выполнен захват кадра с сохранением на диск Comment[ru]=Выполнен захват кадра с сохранением на диск
Comment[sa]=एकः फ्रेमः डिस्कं प्रति गृहीतः आसीत्
Comment[sk]=Snímka bola uložená na disk Comment[sk]=Snímka bola uložená na disk
Comment[sl]=Sličica je bila zajeta na disk Comment[sl]=Sličica je bila zajeta na disk
Comment[sv]=En ram har lagrats på disk Comment[sv]=En ram har lagrats på disk
@@ -372,7 +358,6 @@ Name[fi]=Valmiina kaappaamaan
Name[fr]=Prêt pour la capture Name[fr]=Prêt pour la capture
Name[gl]=Listo para a captura Name[gl]=Listo para a captura
Name[he]=בהמתנה ללכידה Name[he]=בהמתנה ללכידה
Name[hi]=कब्जा करने के लिए तैयार
Name[hu]=Kezdődhet a rögzítés Name[hu]=Kezdődhet a rögzítés
Name[id]=Siap menangkap Name[id]=Siap menangkap
Name[it]=Pronto per la registrazione Name[it]=Pronto per la registrazione
@@ -391,7 +376,6 @@ Name[pt]=Pronto para capturar
Name[pt_BR]=Pronto para capturar Name[pt_BR]=Pronto para capturar
Name[ro]=Gata de captare Name[ro]=Gata de captare
Name[ru]=Готов к захвату Name[ru]=Готов к захвату
Name[sa]=गृहीतुं सज्जः
Name[sk]=Pripravené na zachytenie Name[sk]=Pripravené na zachytenie
Name[sl]=Pripravljen na zajem Name[sl]=Pripravljen na zajem
Name[sv]=Klar att lagra Name[sv]=Klar att lagra
@@ -426,7 +410,6 @@ Name[fr]=Erreur
Name[ga]=Earráid Name[ga]=Earráid
Name[gl]=Erro Name[gl]=Erro
Name[he]=שגיאה Name[he]=שגיאה
Name[hi]=गलती
Name[hu]=Hiba Name[hu]=Hiba
Name[id]=Kesalahan Name[id]=Kesalahan
Name[it]=Errore Name[it]=Errore
@@ -446,7 +429,6 @@ Name[pt]=Erro
Name[pt_BR]=Erro Name[pt_BR]=Erro
Name[ro]=Eroare Name[ro]=Eroare
Name[ru]=Ошибка Name[ru]=Ошибка
Name[sa]=त्रुटि
Name[sk]=Chyba Name[sk]=Chyba
Name[sl]=Napaka Name[sl]=Napaka
Name[sv]=Fel Name[sv]=Fel
@@ -477,7 +459,6 @@ Comment[fr]=Une erreur est survenue dans Kdenlive
Comment[ga]=Tharla earráid in Kdenlive Comment[ga]=Tharla earráid in Kdenlive
Comment[gl]=Produciuse un erro en Kdenlive Comment[gl]=Produciuse un erro en Kdenlive
Comment[he]=אירעה שגיאה ב־Kdenlive Comment[he]=אירעה שגיאה ב־Kdenlive
Comment[hi]=Kdenlive में एक त्रुटि घटित हुई
Comment[hu]=Hiba történt a Kdenlive-ban Comment[hu]=Hiba történt a Kdenlive-ban
Comment[id]=Sebuah kesalahan terjadi di Kdenlive Comment[id]=Sebuah kesalahan terjadi di Kdenlive
Comment[it]=Si è verificato un errore in Kdenlive Comment[it]=Si è verificato un errore in Kdenlive
@@ -496,7 +477,6 @@ Comment[pt]=Ocorreu um erro no Kdenlive
Comment[pt_BR]=Ocorreu um erro no Kdenlive Comment[pt_BR]=Ocorreu um erro no Kdenlive
Comment[ro]=În Kdenlive a intervenit o eroare Comment[ro]=În Kdenlive a intervenit o eroare
Comment[ru]=В Kdenlive произошла ошибка Comment[ru]=В Kdenlive произошла ошибка
Comment[sa]=Kdenlive इत्यत्र त्रुटिः अभवत्
Comment[sk]=Nastala chyba v Kdenlive Comment[sk]=Nastala chyba v Kdenlive
Comment[sl]=V Kdenlive je prišlo do napake Comment[sl]=V Kdenlive je prišlo do napake
Comment[sv]=Ett fel uppstod i Kdenlive Comment[sv]=Ett fel uppstod i Kdenlive
@@ -511,7 +491,7 @@ Action=Sound
[Event/SaveSuccess] [Event/SaveSuccess]
Name=Saving successful Name=Saving successful
Name[ar]=نجح الحفظ Name[ar]=نحج الحفظ
Name[ca]=S'ha desat correctament Name[ca]=S'ha desat correctament
Name[ca@valencia]=S'ha guardat correctament Name[ca@valencia]=S'ha guardat correctament
Name[cs]=Ukládání bylo úspěšné Name[cs]=Ukládání bylo úspěšné
@@ -519,11 +499,9 @@ Name[en_GB]=Saving successful
Name[eo]=Konservado sukcesa Name[eo]=Konservado sukcesa
Name[es]=Guardado exitoso Name[es]=Guardado exitoso
Name[eu]=Ondo gorde da Name[eu]=Ondo gorde da
Name[fi]=Tallennus onnistui
Name[fr]=Enregistrement effectué avec succès Name[fr]=Enregistrement effectué avec succès
Name[gl]=Completouse a garda Name[gl]=Completouse a garda
Name[he]=השמירה הצליחה Name[he]=השמירה הצליחה
Name[hi]=सहेजना सफल रहा
Name[hu]=A mentés sikeres Name[hu]=A mentés sikeres
Name[it]=Salvataggio riuscito Name[it]=Salvataggio riuscito
Name[ja]=保存に成功 Name[ja]=保存に成功
@@ -533,7 +511,6 @@ Name[nl]=Opslaan is gelukt
Name[pl]=Pomyślne zapisano Name[pl]=Pomyślne zapisano
Name[pt_BR]=Salvo com sucesso Name[pt_BR]=Salvo com sucesso
Name[ru]=Успешное сохранение Name[ru]=Успешное сохранение
Name[sa]=रक्षणं सफलम्
Name[sl]=Shranjevanje je uspelo Name[sl]=Shranjevanje je uspelo
Name[sv]=Spara lyckades Name[sv]=Spara lyckades
Name[tok]=awen li pona Name[tok]=awen li pona

View File

@@ -22,7 +22,6 @@ Comment[fr]=Kdenlive
Comment[ga]=Kdenlive Comment[ga]=Kdenlive
Comment[gl]=Kdenlive Comment[gl]=Kdenlive
Comment[he]=Kdenlive Comment[he]=Kdenlive
Comment[hi]=केडेनलाइव
Comment[hu]=Kdenlive Comment[hu]=Kdenlive
Comment[id]=Kdenlive Comment[id]=Kdenlive
Comment[it]=Kdenlive Comment[it]=Kdenlive
@@ -42,7 +41,6 @@ Comment[pt]=Kdenlive
Comment[pt_BR]=Kdenlive Comment[pt_BR]=Kdenlive
Comment[ro]=Kdenlive Comment[ro]=Kdenlive
Comment[ru]=Kdenlive Comment[ru]=Kdenlive
Comment[sa]=क्डेन्लिव्
Comment[sk]=Kdenlive Comment[sk]=Kdenlive
Comment[sl]=Kdenlive Comment[sl]=Kdenlive
Comment[sv]=Kdenlive Comment[sv]=Kdenlive
@@ -74,7 +72,6 @@ Name[fi]=Renderöinti valmistui
Name[fr]=Rendu terminé Name[fr]=Rendu terminé
Name[gl]=Rematou a renderización Name[gl]=Rematou a renderización
Name[he]=הצלימה הושלמה Name[he]=הצלימה הושלמה
Name[hi]=रेंडरिंग समाप्त
Name[hu]=A renderelés befejeződött Name[hu]=A renderelés befejeződött
Name[id]=Perenderan selesai Name[id]=Perenderan selesai
Name[it]=Esportazione terminata Name[it]=Esportazione terminata
@@ -93,7 +90,6 @@ Name[pt]=A geração terminou
Name[pt_BR]=A renderização terminou Name[pt_BR]=A renderização terminou
Name[ro]=Randare încheiată Name[ro]=Randare încheiată
Name[ru]=Сборка завершена Name[ru]=Сборка завершена
Name[sa]=प्रतिपादनं समाप्तम्
Name[sk]=Renderovanie ukončené Name[sk]=Renderovanie ukončené
Name[sl]=Izrisovanje končano Name[sl]=Izrisovanje končano
Name[sv]=Återgivning klar Name[sv]=Återgivning klar
@@ -122,7 +118,6 @@ Comment[fi]=Renderöinti on tehty
Comment[fr]=Le rendu est terminé Comment[fr]=Le rendu est terminé
Comment[gl]=Rematou a renderización Comment[gl]=Rematou a renderización
Comment[he]=הצלימה הסתיימה Comment[he]=הצלימה הסתיימה
Comment[hi]=रेंडरिंग समाप्त हो गया है
Comment[hu]=A renderelésnek vége Comment[hu]=A renderelésnek vége
Comment[id]=Perenderan telah usai Comment[id]=Perenderan telah usai
Comment[it]=L'esportazione è terminata Comment[it]=L'esportazione è terminata
@@ -141,7 +136,6 @@ Comment[pt]=A geração terminou
Comment[pt_BR]=A renderização foi terminada Comment[pt_BR]=A renderização foi terminada
Comment[ro]=Randarea s-a încheiat Comment[ro]=Randarea s-a încheiat
Comment[ru]=Сборка завершена Comment[ru]=Сборка завершена
Comment[sa]=प्रतिपादनं समाप्तम् अस्ति
Comment[sk]=Renderovanie je skončené Comment[sk]=Renderovanie je skončené
Comment[sl]=Izrisovanje je poteklo Comment[sl]=Izrisovanje je poteklo
Comment[sv]=Återgivningen är gjord Comment[sv]=Återgivningen är gjord
@@ -173,7 +167,6 @@ Name[fi]=Renderöinti aloitettu
Name[fr]=Rendu démarré Name[fr]=Rendu démarré
Name[gl]=Comezou a renderización Name[gl]=Comezou a renderización
Name[he]=הצלימה החלה Name[he]=הצלימה החלה
Name[hi]=रेंडरिंग शुरू हुई
Name[hu]=A renderelés elkezdődött Name[hu]=A renderelés elkezdődött
Name[id]=Perenderan dimulai Name[id]=Perenderan dimulai
Name[it]=Esportazione avviata Name[it]=Esportazione avviata
@@ -192,7 +185,6 @@ Name[pt]=A geração foi iniciada
Name[pt_BR]=A renderização iniciou Name[pt_BR]=A renderização iniciou
Name[ro]=Randarea începută Name[ro]=Randarea începută
Name[ru]=Сборка запущена Name[ru]=Сборка запущена
Name[sa]=प्रतिपादनं आरब्धम्
Name[sk]=Renderovanie spustené Name[sk]=Renderovanie spustené
Name[sl]=Izrisovanje začeto Name[sl]=Izrisovanje začeto
Name[sv]=Återgivning startad Name[sv]=Återgivning startad
@@ -221,7 +213,6 @@ Comment[fi]=Renderöinti aloitettiin
Comment[fr]=Le rendu a démarré Comment[fr]=Le rendu a démarré
Comment[gl]=Comezou a renderización Comment[gl]=Comezou a renderización
Comment[he]=הצלימה החלה Comment[he]=הצלימה החלה
Comment[hi]=रेंडरिंग शुरू हो गई
Comment[hu]=A renderelés elkezdődött Comment[hu]=A renderelés elkezdődött
Comment[id]=Perenderan telah dimulai Comment[id]=Perenderan telah dimulai
Comment[it]=L'esportazione è stata avviata Comment[it]=L'esportazione è stata avviata
@@ -240,7 +231,6 @@ Comment[pt]=A geração foi iniciada
Comment[pt_BR]=A renderização foi iniciada Comment[pt_BR]=A renderização foi iniciada
Comment[ro]=Randarea a început Comment[ro]=Randarea a început
Comment[ru]=Сборка запущена Comment[ru]=Сборка запущена
Comment[sa]=प्रतिपादनं आरब्धम् आसीत्
Comment[sk]=Renderovanie bolo spustené Comment[sk]=Renderovanie bolo spustené
Comment[sl]=Izrisovanje se je začelo Comment[sl]=Izrisovanje se je začelo
Comment[sv]=Återgivningen har startats Comment[sv]=Återgivningen har startats
@@ -272,7 +262,6 @@ Name[fi]=Ruutu kaapattu
Name[fr]=Cadre capturé Name[fr]=Cadre capturé
Name[gl]=Fotograma capturado Name[gl]=Fotograma capturado
Name[he]=התמונית נלכדה Name[he]=התמונית נלכדה
Name[hi]=फ़्रेम कैप्चर किया गया
Name[hu]=Képkocka rögzítve Name[hu]=Képkocka rögzítve
Name[id]=Frame ditangkap Name[id]=Frame ditangkap
Name[it]=Fotogramma acquisito Name[it]=Fotogramma acquisito
@@ -291,7 +280,6 @@ Name[pt]=Imagem capturada
Name[pt_BR]=Imagem capturada Name[pt_BR]=Imagem capturada
Name[ro]=Cadru captat Name[ro]=Cadru captat
Name[ru]=Кадр получен Name[ru]=Кадр получен
Name[sa]=फ्रेमः गृहीतः
Name[sk]=Snímka zachytená Name[sk]=Snímka zachytená
Name[sl]=Sličica zajeta Name[sl]=Sličica zajeta
Name[sv]=Ram lagrad Name[sv]=Ram lagrad
@@ -320,7 +308,6 @@ Comment[fi]=Ruutu kaapattiin levylle
Comment[fr]=Un cadre a été capturé sur le disque Comment[fr]=Un cadre a été capturé sur le disque
Comment[gl]=Capturouse un fotograma para o disco Comment[gl]=Capturouse un fotograma para o disco
Comment[he]=תמונית נלכדה לכונן Comment[he]=תמונית נלכדה לכונן
Comment[hi]=एक फ्रेम डिस्क पर कैप्चर किया गया
Comment[hu]=Egy képkocka rögzítésre került a lemezre Comment[hu]=Egy képkocka rögzítésre került a lemezre
Comment[id]=Sebuah frame telah ditangkap ke disk Comment[id]=Sebuah frame telah ditangkap ke disk
Comment[it]=È stato acquisito un fotogramma sul disco Comment[it]=È stato acquisito un fotogramma sul disco
@@ -339,7 +326,6 @@ Comment[pt]=Foi capturada uma imagem para o disco
Comment[pt_BR]=Foi capturada uma imagem para o disco Comment[pt_BR]=Foi capturada uma imagem para o disco
Comment[ro]=Un cadru a fost captat pe disc Comment[ro]=Un cadru a fost captat pe disc
Comment[ru]=Выполнен захват кадра с сохранением на диск Comment[ru]=Выполнен захват кадра с сохранением на диск
Comment[sa]=एकः फ्रेमः डिस्कं प्रति गृहीतः आसीत्
Comment[sk]=Snímka bola uložená na disk Comment[sk]=Snímka bola uložená na disk
Comment[sl]=Sličica je bila zajeta na disk Comment[sl]=Sličica je bila zajeta na disk
Comment[sv]=En ram har lagrats på disk Comment[sv]=En ram har lagrats på disk
@@ -372,7 +358,6 @@ Name[fi]=Valmiina kaappaamaan
Name[fr]=Prêt pour la capture Name[fr]=Prêt pour la capture
Name[gl]=Listo para a captura Name[gl]=Listo para a captura
Name[he]=בהמתנה ללכידה Name[he]=בהמתנה ללכידה
Name[hi]=कब्जा करने के लिए तैयार
Name[hu]=Kezdődhet a rögzítés Name[hu]=Kezdődhet a rögzítés
Name[id]=Siap menangkap Name[id]=Siap menangkap
Name[it]=Pronto per la registrazione Name[it]=Pronto per la registrazione
@@ -391,7 +376,6 @@ Name[pt]=Pronto para capturar
Name[pt_BR]=Pronto para capturar Name[pt_BR]=Pronto para capturar
Name[ro]=Gata de captare Name[ro]=Gata de captare
Name[ru]=Готов к захвату Name[ru]=Готов к захвату
Name[sa]=गृहीतुं सज्जः
Name[sk]=Pripravené na zachytenie Name[sk]=Pripravené na zachytenie
Name[sl]=Pripravljen na zajem Name[sl]=Pripravljen na zajem
Name[sv]=Klar att lagra Name[sv]=Klar att lagra
@@ -426,7 +410,6 @@ Name[fr]=Erreur
Name[ga]=Earráid Name[ga]=Earráid
Name[gl]=Erro Name[gl]=Erro
Name[he]=שגיאה Name[he]=שגיאה
Name[hi]=गलती
Name[hu]=Hiba Name[hu]=Hiba
Name[id]=Kesalahan Name[id]=Kesalahan
Name[it]=Errore Name[it]=Errore
@@ -446,7 +429,6 @@ Name[pt]=Erro
Name[pt_BR]=Erro Name[pt_BR]=Erro
Name[ro]=Eroare Name[ro]=Eroare
Name[ru]=Ошибка Name[ru]=Ошибка
Name[sa]=त्रुटि
Name[sk]=Chyba Name[sk]=Chyba
Name[sl]=Napaka Name[sl]=Napaka
Name[sv]=Fel Name[sv]=Fel
@@ -477,7 +459,6 @@ Comment[fr]=Une erreur est survenue dans Kdenlive
Comment[ga]=Tharla earráid in Kdenlive Comment[ga]=Tharla earráid in Kdenlive
Comment[gl]=Produciuse un erro en Kdenlive Comment[gl]=Produciuse un erro en Kdenlive
Comment[he]=אירעה שגיאה ב־Kdenlive Comment[he]=אירעה שגיאה ב־Kdenlive
Comment[hi]=Kdenlive में एक त्रुटि घटित हुई
Comment[hu]=Hiba történt a Kdenlive-ban Comment[hu]=Hiba történt a Kdenlive-ban
Comment[id]=Sebuah kesalahan terjadi di Kdenlive Comment[id]=Sebuah kesalahan terjadi di Kdenlive
Comment[it]=Si è verificato un errore in Kdenlive Comment[it]=Si è verificato un errore in Kdenlive
@@ -496,7 +477,6 @@ Comment[pt]=Ocorreu um erro no Kdenlive
Comment[pt_BR]=Ocorreu um erro no Kdenlive Comment[pt_BR]=Ocorreu um erro no Kdenlive
Comment[ro]=În Kdenlive a intervenit o eroare Comment[ro]=În Kdenlive a intervenit o eroare
Comment[ru]=В Kdenlive произошла ошибка Comment[ru]=В Kdenlive произошла ошибка
Comment[sa]=Kdenlive इत्यत्र त्रुटिः अभवत्
Comment[sk]=Nastala chyba v Kdenlive Comment[sk]=Nastala chyba v Kdenlive
Comment[sl]=V Kdenlive je prišlo do napake Comment[sl]=V Kdenlive je prišlo do napake
Comment[sv]=Ett fel uppstod i Kdenlive Comment[sv]=Ett fel uppstod i Kdenlive
@@ -507,11 +487,11 @@ Comment[x-test]=xxAn error occurred in Kdenlivexx
Comment[zh_CN]=Kdenlive 发生错误 Comment[zh_CN]=Kdenlive 发生错误
Comment[zh_TW]=Kdenlive 中發生錯誤 Comment[zh_TW]=Kdenlive 中發生錯誤
Sound=dialog-error Sound=dialog-error
Action=Sound|Popup Action=Sound
[Event/SaveSuccess] [Event/SaveSuccess]
Name=Saving successful Name=Saving successful
Name[ar]=نجح الحفظ Name[ar]=نحج الحفظ
Name[ca]=S'ha desat correctament Name[ca]=S'ha desat correctament
Name[ca@valencia]=S'ha guardat correctament Name[ca@valencia]=S'ha guardat correctament
Name[cs]=Ukládání bylo úspěšné Name[cs]=Ukládání bylo úspěšné
@@ -519,11 +499,9 @@ Name[en_GB]=Saving successful
Name[eo]=Konservado sukcesa Name[eo]=Konservado sukcesa
Name[es]=Guardado exitoso Name[es]=Guardado exitoso
Name[eu]=Ondo gorde da Name[eu]=Ondo gorde da
Name[fi]=Tallennus onnistui
Name[fr]=Enregistrement effectué avec succès Name[fr]=Enregistrement effectué avec succès
Name[gl]=Completouse a garda Name[gl]=Completouse a garda
Name[he]=השמירה הצליחה Name[he]=השמירה הצליחה
Name[hi]=सहेजना सफल रहा
Name[hu]=A mentés sikeres Name[hu]=A mentés sikeres
Name[it]=Salvataggio riuscito Name[it]=Salvataggio riuscito
Name[ja]=保存に成功 Name[ja]=保存に成功
@@ -533,7 +511,6 @@ Name[nl]=Opslaan is gelukt
Name[pl]=Pomyślne zapisano Name[pl]=Pomyślne zapisano
Name[pt_BR]=Salvo com sucesso Name[pt_BR]=Salvo com sucesso
Name[ru]=Успешное сохранение Name[ru]=Успешное сохранение
Name[sa]=रक्षणं सफलम्
Name[sl]=Shranjevanje je uspelo Name[sl]=Shranjevanje je uspelo
Name[sv]=Spara lyckades Name[sv]=Spara lyckades
Name[tok]=awen li pona Name[tok]=awen li pona

View File

@@ -22,15 +22,15 @@
<text>Utility</text> <text>Utility</text>
</group> </group>
<group list="avfilter.drawbox,avfilter.drawgrid,avfilter.dynamictext,dynamictext,vignette,frei0r.vignette,frei0r.scanline0r,frei0r.cairogradient,frei0r.cairoimagegrid,frei0r.tehroxx0r,gpstext,gpsgraphic,timer"> <group list="avfilter.drawbox,avfilter.drawgrid,avfilter.dynamictext,dynamictext,vignette,frei0r.vignette,frei0r.scanline0r,frei0r.cairogradient,frei0r.cairoimagegrid,frei0r.tehroxx0r,gpstext,timer">
<text>Generate</text> <text>Generate</text>
</group> </group>
<group list="audiowave,dance,lightshow,audiospectrum,audiowaveform,audiolevelgraph" category="master"> <group list="audiowave,dance,lightshow,audiospectrum,audiowaveform,audiolevelgraph">
<text>On Master</text> <text>On Master</text>
</group> </group>
<group list="invert,sepia,tcolor,greyscale,frei0r.B,frei0r.G,frei0r.R,frei0r.contrast0r,frei0r.saturat0r,frei0r.tint0r,chroma_hold,frei0r.colorize,frei0r.equaliz0r,frei0r.hueshift0r,frei0r.luminance,lumaliftgaingamma,lift_gamma_gain,brightness,gamma,frei0r.colgate,frei0r.balanc0r,frei0r.brightness,frei0r.levels,frei0r.three_point_balance,frei0r.curves,frei0r.coloradj_RGB,frei0r.sopsat,frei0r.bezier_curves,avfilter.selectivecolor,avfilter.lut3d,avfilter.chromahold,avfilter.colorbalance,avfilter.colorchannelmixer,avfilter.colorhold,avfilter.colorlevels,avfilter.eq,frei0r.invert0r,frei0r.normaliz0r,frei0r.gamma,frei0r.bw0r,greyscale,avfilter.vibrance,avfilter.swapuv,avfilter.negate,avfilter.histeq,avfilter.normalize,avfilter.fftfilt,avfilter.limiter,avfilter.colorcontrast,avfilter.colorcorrect,avfilter.colorize,avfilter.colortemperature,avfilter.exposure,avfilter.monochrome,hslprimaries,hslrange"> <group list="invert,sepia,tcolor,greyscale,frei0r.B,frei0r.G,frei0r.R,frei0r.contrast0r,frei0r.saturat0r,frei0r.tint0r,chroma_hold,frei0r.colorize,frei0r.equaliz0r,frei0r.hueshift0r,frei0r.luminance,lumaliftgaingamma,lift_gamma_gain,brightness,gamma,frei0r.colgate,frei0r.balanc0r,frei0r.brightness,frei0r.levels,frei0r.three_point_balance,frei0r.curves,frei0r.coloradj_RGB,frei0r.sopsat,frei0r.bezier_curves,avfilter.selectivecolor,avfilter.lut3d,avfilter.chromahold,avfilter.colorbalance,avfilter.colorchannelmixer,avfilter.colorhold,avfilter.colorlevels,avfilter.eq,frei0r.invert0r,frei0r.normaliz0r,frei0r.gamma,frei0r.bw0r,greyscale,avfilter.vibrance,avfilter.swapuv,avfilter.negate,avfilter.histeq,avfilter.normalize,avfilter.fftfilt,avfilter.limiter,avfilter.colorcontrast,avfilter.colorcorrect,avfilter.colorize,avfilter.colortemperature,avfilter.exposure,avfilter.monochrome">
<text>Color and Image correction</text> <text>Color and Image correction</text>
</group> </group>
@@ -42,11 +42,11 @@
<text>Image adjustment</text> <text>Image adjustment</text>
</group> </group>
<group list="avfilter.pixelize,frei0r.kaleid0sc0pe,frei0r.glow,frei0r.edgeglow,frei0r.softglow,charcoal,frei0r.cartoon,frei0r.emboss,frei0r.posterize,frei0r.sigmoidaltransfer,frei0r.sobel,frei0r.threelay0r,frei0r.threshold0r,frei0r.twolay0r,lightgraffiti,oldfilm,threshold,frei0r.pixeliz0r,avfilter.edgedetect,avfilter.elbg,avfilter.prewitt,avfilter.rgbashift,avfilter.roberts,avfilter.sobel,frei0r.lightgraffiti,frei0r.rgbsplit0r,frei0r.ndvi,frei0r.colordistance,frei0r.colortap,avfilter.chromashift,frei0r.primaries,frei0r.aech0r,avfilter.kirsch,avfilter.photosensitivity,typewriter"> <group list="frei0r.glow,frei0r.edgeglow,frei0r.softglow,charcoal,frei0r.cartoon,frei0r.emboss,frei0r.posterize,frei0r.sigmoidaltransfer,frei0r.sobel,frei0r.threelay0r,frei0r.threshold0r,frei0r.twolay0r,lightgraffiti,oldfilm,threshold,frei0r.pixeliz0r,avfilter.edgedetect,avfilter.elbg,avfilter.prewitt,avfilter.rgbashift,avfilter.roberts,avfilter.sobel,frei0r.lightgraffiti,frei0r.rgbsplit0r,frei0r.ndvi,frei0r.colordistance,frei0r.colortap,avfilter.chromashift,frei0r.primaries,frei0r.aech0r,avfilter.kirsch,avfilter.photosensitivity,typewriter">
<text>Stylize</text> <text>Stylize</text>
</group> </group>
<group list="fade_from_black,fade_to_black,avfilter.lagfun,frei0r.nervous,freeze,frei0r.glitch0r,frei0r.pixs0r,frei0r.vertigo,frei0r.baltan"> <group list="fade_from_black,fade_to_black,avfilter.lagfun,frei0r.nervous,freeze,frei0r.glitch0r,frei0r.vertigo,frei0r.baltan">
<text>Motion</text> <text>Motion</text>
</group> </group>
@@ -134,7 +134,7 @@
<text>Calf Plugins</text> <text>Calf Plugins</text>
</group> </group>
<group list="avfilter.dctdnoiz,avfilter.delogo,avfilter.pixscope,avfilter.vaguedenoiser,boxblur,BurningTV,frei0r.cluster,frei0r.dither,frei0r.IIRblur,frei0r.medians,frei0r.rgbnoise,frei0r.sharpness,grain,wave,rotation"> <group list="avfilter.dctdnoiz,avfilter.delogo,avfilter.pixscope,avfilter.vaguedenoiser,boxblur,BurningTV,frei0r.cluster,frei0r.dither,frei0r.IIRblur,frei0r.medians,frei0r.rgbnoise,frei0r.sharpness,grain,wave">
<text>Deprecated</text> <text>Deprecated</text>
</group> </group>

View File

@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>
install(FILES kdenlive_renderprofiles.knsrc kdenlive_wipes.knsrc kdenlive_keyboardschemes.knsrc kdenlive_titles.knsrc kdenlive_luts.knsrc kdenlive_effects.knsrc DESTINATION ${KDE_INSTALL_KNSRCDIR}) install(FILES kdenlive_renderprofiles.knsrc kdenlive_wipes.knsrc kdenlive_keyboardschemes.knsrc kdenlive_titles.knsrc kdenlive_luts.knsrc kdenlive_effects.knsrc DESTINATION ${KDE_INSTALL_KNSRCDIR})

View File

@@ -14,7 +14,6 @@ Name[fi]=Kdenliven tehostemallit
Name[fr]=Modèles d'effets pour Kdenlive Name[fr]=Modèles d'effets pour Kdenlive
Name[gl]=Modelos de efectos de Kdenlive Name[gl]=Modelos de efectos de Kdenlive
Name[he]=תבניות אפקטים של Kdenlive Name[he]=תבניות אפקטים של Kdenlive
Name[hi]=Kdenlive प्रभाव टेम्पलेट्स
Name[hu]=Kdenlive hatássablon Name[hu]=Kdenlive hatássablon
Name[id]=Templat Efek Kdenlive Name[id]=Templat Efek Kdenlive
Name[it]=Modelli di effetto di Kdenlive Name[it]=Modelli di effetto di Kdenlive
@@ -27,7 +26,6 @@ Name[pl]=Szablony efektów Kdenlive
Name[pt]=Modelos de Efeitos do Kdenlive Name[pt]=Modelos de Efeitos do Kdenlive
Name[pt_BR]=Modelos de efeito do Kdenlive Name[pt_BR]=Modelos de efeito do Kdenlive
Name[ru]=Шаблоны эффектов Kdenlive Name[ru]=Шаблоны эффектов Kdenlive
Name[sa]=Kdenlive प्रभाव टेम्पलेट्स
Name[sl]=Predloge učinkov za Kdenlive Name[sl]=Predloge učinkov za Kdenlive
Name[sv]=Kdenlive-effektmallar Name[sv]=Kdenlive-effektmallar
Name[tok]=lipu sitelen pi ilo Kdenlive Name[tok]=lipu sitelen pi ilo Kdenlive

View File

@@ -17,7 +17,6 @@ Name[fi]=Kdenliven näppäimistöteemat
Name[fr]=Raccourcis claviers Kdenlive Name[fr]=Raccourcis claviers Kdenlive
Name[gl]=Esquemas de teclado de Kdenlive Name[gl]=Esquemas de teclado de Kdenlive
Name[he]=ערכות קיצורי מקלדת של Kdenlive Name[he]=ערכות קיצורי מקלדת של Kdenlive
Name[hi]=Kdenlive कीबोर्ड योजनाएं
Name[hu]=Kdenlive billentyűzetséma Name[hu]=Kdenlive billentyűzetséma
Name[id]=Skema Keyboard Kdenlive Name[id]=Skema Keyboard Kdenlive
Name[it]=Schemi da tastiera di Kdenlive Name[it]=Schemi da tastiera di Kdenlive
@@ -31,7 +30,6 @@ Name[pl]=Układy klawiatur Kdenlive
Name[pt]=Esquemas de Teclado do Kdenlive Name[pt]=Esquemas de Teclado do Kdenlive
Name[pt_BR]=Esquemas de teclado do Kdenlive Name[pt_BR]=Esquemas de teclado do Kdenlive
Name[ru]=Схемы горячих клавиш Name[ru]=Схемы горячих клавиш
Name[sa]=Kdenlive कीबोर्ड योजनाएँ
Name[sk]=Schémy klávesnice Kdenlive Name[sk]=Schémy klávesnice Kdenlive
Name[sl]=Sheme tipkovnic Kdenlive Name[sl]=Sheme tipkovnic Kdenlive
Name[sv]=Kdenlive-tangentbordsinställningar Name[sv]=Kdenlive-tangentbordsinställningar

View File

@@ -14,7 +14,6 @@ Name[fi]=Värien hakutaulukko (LUT)
Name[fr]=Table de recherche de couleurs (LUT « Look-Up Table ») Name[fr]=Table de recherche de couleurs (LUT « Look-Up Table »)
Name[gl]=Táboa de busca de cores (LUT) Name[gl]=Táboa de busca de cores (LUT)
Name[he]=טבלת חיפוש צבעים (LUT) Name[he]=טבלת חיפוש צבעים (LUT)
Name[hi]=रंग लुकअप तालिका (LUT)
Name[hu]=Színkeresési táblázat (LUT) Name[hu]=Színkeresési táblázat (LUT)
Name[id]=Tabel Pencarian Warna (LUT) Name[id]=Tabel Pencarian Warna (LUT)
Name[it]=Tabella di ricerca del colore (LUT) Name[it]=Tabella di ricerca del colore (LUT)
@@ -27,7 +26,6 @@ Name[pl]=Tablica wyszukiwania barw (LUT)
Name[pt]=Tabela de Pesquisa de Cores (LUT) Name[pt]=Tabela de Pesquisa de Cores (LUT)
Name[pt_BR]=Tabela de consulta de cores (LUT) Name[pt_BR]=Tabela de consulta de cores (LUT)
Name[ru]=Таблица поиска цвета (LUT) Name[ru]=Таблица поиска цвета (LUT)
Name[sa]=रङ्ग-अवलोकन-सारणी (LUT) .
Name[sl]=Barvna iskalna tabela (LUT) Name[sl]=Barvna iskalna tabela (LUT)
Name[sv]=Färguppslagningstabell (LUT) Name[sv]=Färguppslagningstabell (LUT)
Name[tok]=lipu kule (LUT) Name[tok]=lipu kule (LUT)

View File

@@ -17,7 +17,6 @@ Name[fi]=Kdenliven renderöintiprofiilit
Name[fr]=Profils de rendu Kdenlive Name[fr]=Profils de rendu Kdenlive
Name[gl]=Perfís de renderización de Kdenlive Name[gl]=Perfís de renderización de Kdenlive
Name[he]=פרופילי צלימה של Kdenlive Name[he]=פרופילי צלימה של Kdenlive
Name[hi]=Kdenlive रेंडर प्रोफाइल
Name[hu]=Kdenlive renderelési profilok Name[hu]=Kdenlive renderelési profilok
Name[id]=Profil Render Kdenlive Name[id]=Profil Render Kdenlive
Name[it]=Profilo di resa di Kdenlive Name[it]=Profilo di resa di Kdenlive
@@ -31,7 +30,6 @@ Name[pl]=Profile renderowania Kdenlive
Name[pt]=Perfis de Visualização do Kdenlive Name[pt]=Perfis de Visualização do Kdenlive
Name[pt_BR]=Perfis de visualização do Kdenlive Name[pt_BR]=Perfis de visualização do Kdenlive
Name[ru]=Профили сборки Kdenlive Name[ru]=Профили сборки Kdenlive
Name[sa]=Kdenlive प्रोफाइल प्रस्तुत करें
Name[sk]=Vykresľovacie profily Kdenline Name[sk]=Vykresľovacie profily Kdenline
Name[sl]=Izrisovalni profili za Kdenlive Name[sl]=Izrisovalni profili za Kdenlive
Name[sv]=Kdenlive-återgivningsprofiler Name[sv]=Kdenlive-återgivningsprofiler

View File

@@ -17,7 +17,6 @@ Name[fi]=Kdenliven otsikkopohjat
Name[fr]=Modèles de titre Kdenlive Name[fr]=Modèles de titre Kdenlive
Name[gl]=Modelos de título de Kdenlive Name[gl]=Modelos de título de Kdenlive
Name[he]=תבניות כותר של Kdenlive Name[he]=תבניות כותר של Kdenlive
Name[hi]=Kdenlive शीर्षक टेम्पलेट्स
Name[hu]=Kdenlive címsablonok Name[hu]=Kdenlive címsablonok
Name[id]=Templat Judul Kdenlive Name[id]=Templat Judul Kdenlive
Name[it]=Modelli di titolo di Kdenlive Name[it]=Modelli di titolo di Kdenlive
@@ -31,7 +30,6 @@ Name[pl]=Szablony tytułów Kdenlive
Name[pt]=Perfis de Títulos do Kdenlive Name[pt]=Perfis de Títulos do Kdenlive
Name[pt_BR]=Modelos de títulos do Kdenlive Name[pt_BR]=Modelos de títulos do Kdenlive
Name[ru]=Шаблоны титров Kdenlive Name[ru]=Шаблоны титров Kdenlive
Name[sa]=Kdenlive शीर्षक टेम्पलेट्स
Name[sk]=Šablóny dlaždíc Kdenlive Name[sk]=Šablóny dlaždíc Kdenlive
Name[sl]=Predloge naslovov za Kdenlive Name[sl]=Predloge naslovov za Kdenlive
Name[sv]=Kdenlive-titelmallar Name[sv]=Kdenlive-titelmallar

View File

@@ -17,7 +17,6 @@ Name[fi]=Kdenliven siirtymäpyyhkäisyt
Name[fr]=Transitions par balayage de Kdenlive Name[fr]=Transitions par balayage de Kdenlive
Name[gl]=Borrados de transición de Kdenlive Name[gl]=Borrados de transición de Kdenlive
Name[he]=ניגובי מעברונים של Kdenlive Name[he]=ניגובי מעברונים של Kdenlive
Name[hi]=Kdenlive संक्रमण वाइप्स
Name[hu]=Kdenlive átmenettörlések Name[hu]=Kdenlive átmenettörlések
Name[id]=Usapan Transisi Kdenlive Name[id]=Usapan Transisi Kdenlive
Name[it]=Tendine di transizione di Kdenlive Name[it]=Tendine di transizione di Kdenlive
@@ -31,7 +30,6 @@ Name[pl]=Przejścia Kdenlive
Name[pt]=Varrimentos de Transição do Kdenlive Name[pt]=Varrimentos de Transição do Kdenlive
Name[pt_BR]=Limpeza de transição do Kdenlive Name[pt_BR]=Limpeza de transição do Kdenlive
Name[ru]=Файлы вытеснения Kdenlive Name[ru]=Файлы вытеснения Kdenlive
Name[sa]=Kdenlive संक्रमण पोंछे
Name[sk]=Zahladenia prechodov Kdenlive Name[sk]=Zahladenia prechodov Kdenlive
Name[sl]=Obrisi prehodov za Kdenlive Name[sl]=Obrisi prehodov za Kdenlive
Name[sv]=Kdenlive-övergångar Name[sv]=Kdenlive-övergångar

View File

@@ -1,4 +1,4 @@
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: Julius Künzel <julius.kuenzel@kde.org> # SPDX-FileCopyrightText: Julius Künzel <jk.kdedev@smartlab.uber.space>
install(FILES kdenlive.1 kdenlive_render.1 DESTINATION ${KDE_INSTALL_MANDIR}/man1 ) install(FILES kdenlive.1 kdenlive_render.1 DESTINATION ${KDE_INSTALL_MANDIR}/man1 )

View File

@@ -28,7 +28,6 @@
<name xml:lang="fr">Kdenlive</name> <name xml:lang="fr">Kdenlive</name>
<name xml:lang="gl">Kdenlive</name> <name xml:lang="gl">Kdenlive</name>
<name xml:lang="he">Kdenlive</name> <name xml:lang="he">Kdenlive</name>
<name xml:lang="hi">केडेनलाइव</name>
<name xml:lang="id">Kdenlive</name> <name xml:lang="id">Kdenlive</name>
<name xml:lang="it">Kdenlive</name> <name xml:lang="it">Kdenlive</name>
<name xml:lang="ja">Kdenlive</name> <name xml:lang="ja">Kdenlive</name>
@@ -41,7 +40,6 @@
<name xml:lang="pt">Kdenlive</name> <name xml:lang="pt">Kdenlive</name>
<name xml:lang="pt-BR">Kdenlive</name> <name xml:lang="pt-BR">Kdenlive</name>
<name xml:lang="ru">Kdenlive</name> <name xml:lang="ru">Kdenlive</name>
<name xml:lang="sa">क्डेन्लिव्</name>
<name xml:lang="sk">Kdenlive</name> <name xml:lang="sk">Kdenlive</name>
<name xml:lang="sl">Kdenlive</name> <name xml:lang="sl">Kdenlive</name>
<name xml:lang="sv">Kdenlive</name> <name xml:lang="sv">Kdenlive</name>
@@ -60,11 +58,9 @@
<summary xml:lang="eo">Videoredaktilo</summary> <summary xml:lang="eo">Videoredaktilo</summary>
<summary xml:lang="es">Editor de video</summary> <summary xml:lang="es">Editor de video</summary>
<summary xml:lang="eu">Bideo editorea</summary> <summary xml:lang="eu">Bideo editorea</summary>
<summary xml:lang="fi">Videomuokkain</summary>
<summary xml:lang="fr">Éditeur vidéo</summary> <summary xml:lang="fr">Éditeur vidéo</summary>
<summary xml:lang="gl">Editor de vídeo</summary> <summary xml:lang="gl">Editor de vídeo.</summary>
<summary xml:lang="he">עורך וידאו</summary> <summary xml:lang="he">עורך וידאו</summary>
<summary xml:lang="hi">वीडियो संपादक</summary>
<summary xml:lang="id">Editor video</summary> <summary xml:lang="id">Editor video</summary>
<summary xml:lang="it">Editor video</summary> <summary xml:lang="it">Editor video</summary>
<summary xml:lang="ka">ვიდეორედაქტორი</summary> <summary xml:lang="ka">ვიდეორედაქტორი</summary>
@@ -73,7 +69,6 @@
<summary xml:lang="pl">Edytor wideo</summary> <summary xml:lang="pl">Edytor wideo</summary>
<summary xml:lang="pt-BR">Editor de Vídeo</summary> <summary xml:lang="pt-BR">Editor de Vídeo</summary>
<summary xml:lang="ru">Видеоредактор</summary> <summary xml:lang="ru">Видеоредактор</summary>
<summary xml:lang="sa">विडियो सम्पादक</summary>
<summary xml:lang="sl">Program za videomontažo</summary> <summary xml:lang="sl">Program za videomontažo</summary>
<summary xml:lang="sv">Videoeditor</summary> <summary xml:lang="sv">Videoeditor</summary>
<summary xml:lang="tr">Video Düzenleyicisi</summary> <summary xml:lang="tr">Video Düzenleyicisi</summary>
@@ -90,20 +85,16 @@
<p xml:lang="eo">Kdenlive estas videoredakta aplikaĵo kun subteno por multaj audaĵaj kaj vidaĵaj formatoj. Ĝi ofertas altnivelajn redaktajn funkciojn, diversajn efektojn kaj transirojn, kolorkorektado, aŭda postproduktado kaj subtitolaj iloj. Aldone, ĝi provizas la flekseblecon por redoni en preskaŭ ajna formato de via elekto.</p> <p xml:lang="eo">Kdenlive estas videoredakta aplikaĵo kun subteno por multaj audaĵaj kaj vidaĵaj formatoj. Ĝi ofertas altnivelajn redaktajn funkciojn, diversajn efektojn kaj transirojn, kolorkorektado, aŭda postproduktado kaj subtitolaj iloj. Aldone, ĝi provizas la flekseblecon por redoni en preskaŭ ajna formato de via elekto.</p>
<p xml:lang="es">Kdenlive es una aplicación de edición de video con soporte para una variedad de formatos de audio y video. Ofrece características avanzadas de edición, múltiples efectos y transiciones, corrección de color, posproducción de audio y herramientas de subtitulado. Adicionalmente, permite la exportación a prácticamente cualquier formato de audio y video existente.</p> <p xml:lang="es">Kdenlive es una aplicación de edición de video con soporte para una variedad de formatos de audio y video. Ofrece características avanzadas de edición, múltiples efectos y transiciones, corrección de color, posproducción de audio y herramientas de subtitulado. Adicionalmente, permite la exportación a prácticamente cualquier formato de audio y video existente.</p>
<p xml:lang="eu">Kdenlive, audio- eta bideo-formatu askorako euskarria duen bideoa editatzeko tresna bat da. Edizio-funtzio aurreratuak eskaintzen ditu, efektu eta trantsizio ezberdinak, kolore-zuzenketa, audio post-produkzioa eta azpidatzietarako tresnak. Gainera, aukeratzen duzun ia edozein formatutan errendatzeko malgutasuna ematen du.</p> <p xml:lang="eu">Kdenlive, audio- eta bideo-formatu askorako euskarria duen bideoa editatzeko tresna bat da. Edizio-funtzio aurreratuak eskaintzen ditu, efektu eta trantsizio ezberdinak, kolore-zuzenketa, audio post-produkzioa eta azpidatzietarako tresnak. Gainera, aukeratzen duzun ia edozein formatutan errendatzeko malgutasuna ematen du.</p>
<p xml:lang="fi">Kdenlive on videomuokkaussovellus, joka tukee monia ääni- ja videomuotoja. Se työkalut tarjoavat edistyneet muokkausominaisuudet, joukon tehosteita ja siirtymiä, värinkorjauksen, äänen jälkituotannon sekä tekstityksen. Lisäksi se tarjoaa joustoa hahmontaa tuloksen lähes mihin tahansa haluamaasi muotoon.</p>
<p xml:lang="fr">Kdenlive est une application de montage vidéo prenant en charge de nombreux formats audio et vidéo. Il offre des fonctionnalités d'édition avancées, une variété d'effets et de transitions, une correction des couleurs, une post-production audio et des outils de sous-titrage. En outre, il offre la flexibilité de faire un rendu dans pratiquement n'importe quel format de votre choix.</p> <p xml:lang="fr">Kdenlive est une application de montage vidéo prenant en charge de nombreux formats audio et vidéo. Il offre des fonctionnalités d'édition avancées, une variété d'effets et de transitions, une correction des couleurs, une post-production audio et des outils de sous-titrage. En outre, il offre la flexibilité de faire un rendu dans pratiquement n'importe quel format de votre choix.</p>
<p xml:lang="gl">Kdenlive é unha aplicación de edición de vídeo para moitos formatos de son e de vídeo. Fornece funcionalidades avanzadas de edición, varios efectos e transicións, corrección de cor, post-produción de son e ferramentas de subtítulos. Ademais, fornece a flexibilidade de renderizar en calquera formato da súa escolla.</p> <p xml:lang="gl">Kdenlive é unha aplicación de edición de vídeo para moitos formatos de son e de vídeo. Fornece funcionalidades avanzadas de edición, varios efectos e transicións, corrección de cor, post-produción de son e ferramentas de subtítulos. Ademais, fornece a flexibilidade de renderizar en calquera formato da súa escolla.</p>
<p xml:lang="he">Kdenlive הוא יישום לעריכת וידאו עם תמיכה במגוון סוגים של וידאו ושמע. הוא מציע יכולות עריכה מתקדמות, שלל אפקטים ומעברונים, תיקון צבע, הפקת פוסט של שמע וכלי כתוביות. בנוסף, הוא מספק את הגמישות לעבד לכמעט כל סוג אפשרי שיש לבחירתך.</p> <p xml:lang="he">Kdenlive הוא יישום לעריכת וידאו עם תמיכה במגוון סוגים של וידאו ושמע. הוא מציע יכולות עריכה מתקדמות, שלל אפקטים ומעברונים, תיקון צבע, הפקת פוסט של שמע וכלי כתוביות. בנוסף, הוא מספק את הגמישות לעבד לכמעט כל סוג אפשרי שיש לבחירתך.</p>
<p xml:lang="hi">Kdenlive एक वीडियो संपादन एप्लिकेशन है जो कई ऑडियो और वीडियो प्रारूपों के लिए समर्थन प्रदान करता है। यह उन्नत संपादन सुविधाएँ, विभिन्न प्रकार के प्रभाव और संक्रमण, रंग सुधार, ऑडियो पोस्ट-प्रोडक्शन और उपशीर्षक उपकरण प्रदान करता है। इसके अतिरिक्त, यह आपकी पसंद के व्यावहारिक रूप से किसी भी प्रारूप में रेंडर करने की सुविधा प्रदान करता है।</p>
<p xml:lang="id">Kdenlive adalah aplikasi pengeditan video yang mendukung banyak format audio dan video. Aplikasi ini menawarkan fitur pengeditan tingkat lanjut, berbagai efek dan transisi, koreksi warna, pascaproduksi audio, dan alat subtitel. Selain itu, aplikasi ini menyediakan fleksibilitas untuk melakukan render ke hampir semua format pilihan Anda.</p> <p xml:lang="id">Kdenlive adalah aplikasi pengeditan video yang mendukung banyak format audio dan video. Aplikasi ini menawarkan fitur pengeditan tingkat lanjut, berbagai efek dan transisi, koreksi warna, pascaproduksi audio, dan alat subtitel. Selain itu, aplikasi ini menyediakan fleksibilitas untuk melakukan render ke hampir semua format pilihan Anda.</p>
<p xml:lang="it">Kdenlive è un'applicazione di editing video che supporta molti formati audio e video. Offre funzionalità avanzate di modifica, un assortimento di effetti e transizioni, correzione del colore, strumenti per la post-produzione audio e la sottotitolazione. In aggiunta, fornisce la flessibilità di produrre praticamente in qualsiasi formato tu desideri.</p> <p xml:lang="it">Kdenlive è un'applicazione di editing video che supporta molti formati audio e video. Offre funzionalità avanzate di modifica, un assortimento di effetti e transizioni, correzione del colore, strumenti per la post-produzione audio e la sottotitolazione. In aggiunta, fornisce la flessibilità di produrre praticamente in qualsiasi formato tu desideri.</p>
<p xml:lang="ka">Kdenlive ვიდეორედაქტორია ბევრი აუდიო და ვიდეოფორმატების მხარდაჭერით. ის გთავაზობთ დამატებითი ჩასწორების ფუნქციებს, მრავალ ეფექტსა და გადასვლას, ფერის შესწორებას, აუდიოს პოსტ-პროდაქშენს და სუბტიტრების მორგებას. დამატებით, ის გაძლევთ საშუალებას, დაარენდეროთ პრაქტიკულად ნებისმიერ ფორმატში, რომელსაც აირჩევთ.</p> <p xml:lang="ka">Kdenlive ვიდეორედაქტორია ბევრი აუდიო და ვიდეოფორმატების მხარდაჭერით. ის გთავაზობთ დამატებითი ჩასწორების ფუნქციებს, მრავალ ეფექტსა და გადასვლას, ფერის შესწორებას, აუდიოს პოსტ-პროდაქშენს და სუბტიტრების მორგებას. დამატებით, ის გაძლევთ საშუალებას, დაარენდეროთ პრაქტიკულად ნებისმიერ ფორმატში, რომელსაც აირჩევთ.</p>
<p xml:lang="lv">„Kdenlive“ ir video rediģēšanas programma ar daudzu audio un video formātu atbalstu. Tā sniedz plašas rediģēšanas iespējas, dažādus efektus un pārejas, krāsu korekcijas iespējas, skaņas pēcapstrādes un subtitru rīkus. Turklāt „Kdenlive“ ļauj renderēt praktiski jebkurā formātā pēc jūsu izvēles.</p> <p xml:lang="lv">„Kdenlive“ ir video rediģēšanas programma ar daudzu audio un video formātu atbalstu. Tā sniedz plašas rediģēšanas iespējas, dažādus efektus un pārejas, krāsu korekcijas iespējas, skaņas pēcapstrādes un subtitru rīkus. Turklāt „Kdenlive“ ļauj renderēt praktiski jebkurā formātā pēc jūsu izvēles.</p>
<p xml:lang="nl">Kdenlive is een toepassing voor video bewerken met ondersteuning voor vele audio- en videoformaten. Het biedt geavanceerde bewerkingsfuncties, een verscheidenheid aan effecten en transities, kleurcorrectie, audio nabewerking en hulpmiddelen voor ondertiteling. Bovendien levert het de flexibiliteit om te renderen in praktisch elk formaat van uw keuze.</p> <p xml:lang="nl">Kdenlive is een toepassing voor video bewerken met ondersteuning voor vele audio- en videoformaten. Het biedt geavanceerde bewerkingsfuncties, een verscheidenheid aan effecten en transities, kleurcorrectie, audio nabewerking en hulpmiddelen voor ondertiteling. Bovendien levert het de flexibiliteit om te renderen in praktisch elk formaat van uw keuze.</p>
<p xml:lang="pl">Kdenlive jest aplikacją do edytowania wideo z obsługą wielu formatów dźwięku i obrazu. Daje rozbudowane możliwości, wiele efektów i przejść, poprawianie barw, po-produkcję dźwięki oraz narzędzia do napisów. Dodatkowo, zapewnia możliwość zapisania do właściwie dowolnego formatu jaki sobie wybierzesz.</p> <p xml:lang="pl">Kdenlive jest aplikacją do edytowania wideo z obsługą wielu formatów dźwięku i obrazu. Daje rozbudowane możliwości, wiele efektów i przejść, poprawianie barw, po-produkcję dźwięki oraz narzędzia do napisów. Dodatkowo, zapewnia możliwość zapisania do właściwie dowolnego formatu jaki sobie wybierzesz.</p>
<p xml:lang="pt-BR">Kdenlive é um aplicativo de edição de vídeo com suporte para vários formatos de áudio e vídeo. Ele oferece recursos avançados de edição, uma variedade de efeitos e transições, correção de cores, pós-produção de áudio e ferramentas de legenda. Além disso, fornece a flexibilidade para renderizar em praticamente qualquer formato que você escolher.</p>
<p xml:lang="ru">Kdenlive — видеоредактор, поддерживающий различные форматы аудио- и видеозаписей. Программа предоставляет расширенные возможности редактирования, широкий ряд эффектов и переходов, инструменты цветокоррекции, окончательного монтажа аудио и наложения субтитров. Кроме того, гибкость настройки программы позволяет получить на выходе файл практически любого формата.</p> <p xml:lang="ru">Kdenlive — видеоредактор, поддерживающий различные форматы аудио- и видеозаписей. Программа предоставляет расширенные возможности редактирования, широкий ряд эффектов и переходов, инструменты цветокоррекции, окончательного монтажа аудио и наложения субтитров. Кроме того, гибкость настройки программы позволяет получить на выходе файл практически любого формата.</p>
<p xml:lang="sa">Kdenlive इति एकः विडियो सम्पादन-अनुप्रयोगः अस्ति यस्य समर्थनं बहुषु श्रव्य-वीडियो-स्वरूपेषु भवति । अस्मिन् उन्नतसम्पादनविशेषताः, विविधाः प्रभावाः संक्रमणाः च, वर्णशुद्धिः, श्रव्य-उत्तरनिर्माणं, उपशीर्षकसाधनं च प्राप्यते । तदतिरिक्तं, भवतः पसन्दस्य व्यावहारिकरूपेण कस्मिन् अपि प्रारूपे प्रतिपादयितुं लचीलापनं प्रदाति ।</p>
<p xml:lang="sl">Kdenlive je program za montažo videoposnetkov s podporo za številne zvokovne in video zapise. Ponuja napredne funkcije montaže, urejanja, različne učinke in prehode, korekcijo barv, poprodukcijo zvoka in orodja za podnaslavljanje. Poleg tega zagotavlja prilagodljivost za izrisovanje v praktično poljuben zapis po vašem izboru.</p> <p xml:lang="sl">Kdenlive je program za montažo videoposnetkov s podporo za številne zvokovne in video zapise. Ponuja napredne funkcije montaže, urejanja, različne učinke in prehode, korekcijo barv, poprodukcijo zvoka in orodja za podnaslavljanje. Poleg tega zagotavlja prilagodljivost za izrisovanje v praktično poljuben zapis po vašem izboru.</p>
<p xml:lang="sv">Kdenlive är ett videoredigeringsprogram med stöd för många ljud- och videoformat. Det erbjuder avancerade redigeringsfunktioner, en mängd olika effekter och övergångar, färgkorrigering, efterproduktion av ljud och textningsverktyg. Dessutom ger det flexibiliteten att återge till praktiskt taget vilket format som helst.</p> <p xml:lang="sv">Kdenlive är ett videoredigeringsprogram med stöd för många ljud- och videoformat. Det erbjuder avancerade redigeringsfunktioner, en mängd olika effekter och övergångar, färgkorrigering, efterproduktion av ljud och textningsverktyg. Dessutom ger det flexibiliteten att återge till praktiskt taget vilket format som helst.</p>
<p xml:lang="tr">Kdenlive, birçok ses ve video biçimini destekleyen bir video düzenleme uygulamasıdır. Gelişmiş düzenleme özellikleri, çeşitli efektler ve geçişler, renk düzeltme, ses post prodüksiyon ve altyazı araçları sunar. Ek olarak, neredeyse seçtiğiniz herhangi bir biçime dönüştürme esnekliği de sağlar.</p> <p xml:lang="tr">Kdenlive, birçok ses ve video biçimini destekleyen bir video düzenleme uygulamasıdır. Gelişmiş düzenleme özellikleri, çeşitli efektler ve geçişler, renk düzeltme, ses post prodüksiyon ve altyazı araçları sunar. Ek olarak, neredeyse seçtiğiniz herhangi bir biçime dönüştürme esnekliği de sağlar.</p>
@@ -130,7 +121,6 @@
<p xml:lang="fr">Fonctionnalités :</p> <p xml:lang="fr">Fonctionnalités :</p>
<p xml:lang="gl">Funcionalidades:</p> <p xml:lang="gl">Funcionalidades:</p>
<p xml:lang="he">יכולות:</p> <p xml:lang="he">יכולות:</p>
<p xml:lang="hi">विशेषताएँ:</p>
<p xml:lang="id">Fitur:</p> <p xml:lang="id">Fitur:</p>
<p xml:lang="it">Funzionalità:</p> <p xml:lang="it">Funzionalità:</p>
<p xml:lang="ja">特徴:</p> <p xml:lang="ja">特徴:</p>
@@ -143,7 +133,6 @@
<p xml:lang="pt">Funcionalidades:</p> <p xml:lang="pt">Funcionalidades:</p>
<p xml:lang="pt-BR">Funcionalidades:</p> <p xml:lang="pt-BR">Funcionalidades:</p>
<p xml:lang="ru">Возможности:</p> <p xml:lang="ru">Возможности:</p>
<p xml:lang="sa">गुणाः:</p>
<p xml:lang="sk">Funkcie:</p> <p xml:lang="sk">Funkcie:</p>
<p xml:lang="sl">Zmožnosti:</p> <p xml:lang="sl">Zmožnosti:</p>
<p xml:lang="sv">Funktioner:</p> <p xml:lang="sv">Funktioner:</p>
@@ -161,20 +150,16 @@
<li xml:lang="eo">Ingitaj Sinsekvoj</li> <li xml:lang="eo">Ingitaj Sinsekvoj</li>
<li xml:lang="es">Secuencias anidadas</li> <li xml:lang="es">Secuencias anidadas</li>
<li xml:lang="eu">Habiaratutako sekuentziak</li> <li xml:lang="eu">Habiaratutako sekuentziak</li>
<li xml:lang="fi">Sisäkkäiset sekvenssit</li>
<li xml:lang="fr">Séquences imbriquées</li> <li xml:lang="fr">Séquences imbriquées</li>
<li xml:lang="gl">Secuencias aniñadas.</li> <li xml:lang="gl">Secuencias aniñadas.</li>
<li xml:lang="he">רצפים מקוננים</li> <li xml:lang="he">רצפים מקוננים</li>
<li xml:lang="hi">नेस्टेड अनुक्रम</li>
<li xml:lang="id">Urutan Bersarang</li> <li xml:lang="id">Urutan Bersarang</li>
<li xml:lang="it">Sequenze annidate</li> <li xml:lang="it">Sequenze annidate</li>
<li xml:lang="ka">ერთმანეთში ჩალაგებული მიმდევრობები</li> <li xml:lang="ka">ერთმანეთში ჩალაგებული მიმდევრობები</li>
<li xml:lang="lv">Ievietotas sekvences</li> <li xml:lang="lv">Ievietotas sekvences</li>
<li xml:lang="nl">Geneste sequenties</li> <li xml:lang="nl">Geneste sequenties</li>
<li xml:lang="pl">Osadzone odcinki</li> <li xml:lang="pl">Osadzone odcinki</li>
<li xml:lang="pt-BR">Sequências aninhadas</li>
<li xml:lang="ru">Вложенные последовательности</li> <li xml:lang="ru">Вложенные последовательности</li>
<li xml:lang="sa">नेस्टेड अनुक्रम</li>
<li xml:lang="sl">Ugnezdena zaporedja</li> <li xml:lang="sl">Ugnezdena zaporedja</li>
<li xml:lang="sv">Nästlade sekvenser</li> <li xml:lang="sv">Nästlade sekvenser</li>
<li xml:lang="tr">İç içe geçmiş sekanslar</li> <li xml:lang="tr">İç içe geçmiş sekanslar</li>
@@ -190,20 +175,16 @@
<li xml:lang="eo">Agordeblaj interfaco kaj ŝparvojoj</li> <li xml:lang="eo">Agordeblaj interfaco kaj ŝparvojoj</li>
<li xml:lang="es">Interfaz y atajos de teclado configurables</li> <li xml:lang="es">Interfaz y atajos de teclado configurables</li>
<li xml:lang="eu">Interfaze eta lasterbide konfiguragarriak</li> <li xml:lang="eu">Interfaze eta lasterbide konfiguragarriak</li>
<li xml:lang="fi">Mukautettava käyttöliittymä ja pikanäppäimet</li>
<li xml:lang="fr">Interface et raccourcis configurables</li> <li xml:lang="fr">Interface et raccourcis configurables</li>
<li xml:lang="gl">Interface e atallos configurábeis.</li> <li xml:lang="gl">Interface e atallos configurábeis.</li>
<li xml:lang="he">ממשק וקיצורי דרך גמישים</li> <li xml:lang="he">ממשק וקיצורי דרך גמישים</li>
<li xml:lang="hi">कॉन्फ़िगर करने योग्य इंटरफ़ेस और शॉर्टकट</li>
<li xml:lang="id">Pintasan dan antarmuka yang dapat dikonfigurasi</li> <li xml:lang="id">Pintasan dan antarmuka yang dapat dikonfigurasi</li>
<li xml:lang="it">Scorciatoie e interfaccia configurabili</li> <li xml:lang="it">Scorciatoie e interfaccia configurabili</li>
<li xml:lang="ka">მორგებადი ინტერფეისი და მალსახმობები</li> <li xml:lang="ka">მორგებადი ინტერფეისი და მალსახმობები</li>
<li xml:lang="lv">Konfigurējama saskarne un saīsnes</li> <li xml:lang="lv">Konfigurējama saskarne un saīsnes</li>
<li xml:lang="nl">Te configureren interface en sneltoetsen</li> <li xml:lang="nl">Te configureren interface en sneltoetsen</li>
<li xml:lang="pl">Interfejs i skróty dające się dostosować</li> <li xml:lang="pl">Interfejs i skróty dające się dostosować</li>
<li xml:lang="pt-BR">Interface e atalhos configuráveis</li>
<li xml:lang="ru">Настраиваемые интерфейс и комбинации клавиш</li> <li xml:lang="ru">Настраиваемые интерфейс и комбинации клавиш</li>
<li xml:lang="sa">विन्यासयोग्यं अन्तरफलकं शॉर्टकट् च</li>
<li xml:lang="sl">Nastavljiv vmesnik in bližnjice</li> <li xml:lang="sl">Nastavljiv vmesnik in bližnjice</li>
<li xml:lang="sv">Anpassningsbart gränssnitt och genvägar</li> <li xml:lang="sv">Anpassningsbart gränssnitt och genvägar</li>
<li xml:lang="tr">Yapılandırılabilir arayüz ve kısayollar</li> <li xml:lang="tr">Yapılandırılabilir arayüz ve kısayollar</li>
@@ -222,16 +203,13 @@
<li xml:lang="fr">Oscilloscopes : histogramme, oscilloscope vectoriel, défilé RVB, mesure de signaux et audiomètre</li> <li xml:lang="fr">Oscilloscopes : histogramme, oscilloscope vectoriel, défilé RVB, mesure de signaux et audiomètre</li>
<li xml:lang="gl">Ámbitos: histograma, vectorscopio, desfile RGB, forma de onda e medidor de son.</li> <li xml:lang="gl">Ámbitos: histograma, vectorscopio, desfile RGB, forma de onda e medidor de son.</li>
<li xml:lang="he">טווחים: היסטוגרמה, וקטורסקופ, צורת גל ומד עוצמת שמע</li> <li xml:lang="he">טווחים: היסטוגרמה, וקטורסקופ, צורת גל ומד עוצמת שמע</li>
<li xml:lang="hi">कार्यक्षेत्र: हिस्टोग्राम, वेक्टरस्कोप, आरजीबी परेड, वेवफॉर्म और ऑडियो मीटर</li>
<li xml:lang="id">Cakupan: Histogram, Vectorscope, RGB Parade, Bentuk Gelombang, dan Pengukur Audio</li> <li xml:lang="id">Cakupan: Histogram, Vectorscope, RGB Parade, Bentuk Gelombang, dan Pengukur Audio</li>
<li xml:lang="it">Diagrammi: istogramma, Evidenza le punte massime, Esibizione RGB, Forma d'onda e Misuratore audio</li> <li xml:lang="it">Diagrammi: istogramma, Evidenza le punte massime, Esibizione RGB, Forma d'onda e Misuratore audio</li>
<li xml:lang="ka">მზომები: ჰისტოგრამა, ვექტორსკოპი, RGB პარადი, Waveform და აუდიომეტრი</li> <li xml:lang="ka">მზომები: ჰისტოგრამა, ვექტორსკოპი, RGB პარადი, Waveform და აუდიომეტრი</li>
<li xml:lang="lv">Tvērumi: histogramma, vektorskops, RGB parāde, viļņformas un audio mērītājs</li> <li xml:lang="lv">Tvērumi: histogramma, vektorskops, RGB parāde, viļņformas un audio mērītājs</li>
<li xml:lang="nl">Scopes: Histogram, Vectorscope, RGB Parade, golfvorm en Audio-meter</li> <li xml:lang="nl">Scopes: Histogram, Vectorscope, RGB Parade, golfvorm en Audio-meter</li>
<li xml:lang="pl">Widoki: Histogram, Wektoroskop, Parada RGB, Kształt Fali oraz Miernik Dźwięku</li> <li xml:lang="pl">Widoki: Histogram, Wektoroskop, Parada RGB, Kształt Fali oraz Miernik Dźwięku</li>
<li xml:lang="pt-BR">Escopos: Histograma, Vetorescópio, Desfile RGB, Forma de onda e Medidor de áudio</li>
<li xml:lang="ru">Отображение: гистограмма, вектороскоп, парад RGB, звуковой спектр и уровень звука</li> <li xml:lang="ru">Отображение: гистограмма, вектороскоп, парад RGB, звуковой спектр и уровень звука</li>
<li xml:lang="sa">व्याप्तिः : हिस्टोग्राम, वेक्टरस्कोप, आरजीबी परेड, तरङ्गरूप तथा ऑडियो मीटर्</li>
<li xml:lang="sl">Merilniki: histogram, vektroskop, parada RGB, signalna oblika in merilnik jakosti zvoka</li> <li xml:lang="sl">Merilniki: histogram, vektroskop, parada RGB, signalna oblika in merilnik jakosti zvoka</li>
<li xml:lang="sv">Oscilloskop: Histogram, vektoroscilloskop, RGB-parad, vågform och ljudmätare</li> <li xml:lang="sv">Oscilloskop: Histogram, vektoroscilloskop, RGB-parad, vågform och ljudmätare</li>
<li xml:lang="tr">Kapsamlar: Histogram, Vektörskop, RGB Geçidi, Dalga Biçimi ve Ses Ölçeri</li> <li xml:lang="tr">Kapsamlar: Histogram, Vektörskop, RGB Geçidi, Dalga Biçimi ve Ses Ölçeri</li>
@@ -251,16 +229,13 @@
<li xml:lang="fr">Modification du serveur mandataire</li> <li xml:lang="fr">Modification du serveur mandataire</li>
<li xml:lang="gl">Edición intermediaria.</li> <li xml:lang="gl">Edición intermediaria.</li>
<li xml:lang="he">עריכת תיווך</li> <li xml:lang="he">עריכת תיווך</li>
<li xml:lang="hi">प्रॉक्सी संपादन</li>
<li xml:lang="id">Pengeditan proksi</li> <li xml:lang="id">Pengeditan proksi</li>
<li xml:lang="it">Modifica del proxy</li> <li xml:lang="it">Modifica del proxy</li>
<li xml:lang="ka">პროქსი ჩასწორება</li> <li xml:lang="ka">პროქსი ჩასწორება</li>
<li xml:lang="lv">Rediģēšana caur starpniekvideo un starpniekattēliem</li> <li xml:lang="lv">Rediģēšana caur starpniekvideo un starpniekattēliem</li>
<li xml:lang="nl">Proxy-bewerking</li> <li xml:lang="nl">Proxy-bewerking</li>
<li xml:lang="pl">Edytowanie pośredników</li> <li xml:lang="pl">Edytowanie pośredników</li>
<li xml:lang="pt-BR">Edição com proxy</li>
<li xml:lang="ru">Редактирование с промежуточными клипами</li> <li xml:lang="ru">Редактирование с промежуточными клипами</li>
<li xml:lang="sa">प्रॉक्सी सम्पादनम्</li>
<li xml:lang="sl">Montaža posrednih posnetkov</li> <li xml:lang="sl">Montaža posrednih posnetkov</li>
<li xml:lang="sv">Ersättningsredigering</li> <li xml:lang="sv">Ersättningsredigering</li>
<li xml:lang="tr">Vekilli düzenleme</li> <li xml:lang="tr">Vekilli düzenleme</li>
@@ -270,8 +245,8 @@
<li xml:lang="zh-TW">代理編輯</li> <li xml:lang="zh-TW">代理編輯</li>
<li>Free online assets and templates</li> <li>Free online assets and templates</li>
<li xml:lang="ar">موارد وقوالب مجانية على الإنترنت</li> <li xml:lang="ar">موارد وقوالب مجانية على الإنترنت</li>
<li xml:lang="ca">Actius i plantilles lliures en línia</li> <li xml:lang="ca">Recursos i plantilles lliures en línia</li>
<li xml:lang="ca-valencia">Actius i plantilles lliures en línia</li> <li xml:lang="ca-valencia">Recursos i plantilles lliures en línia</li>
<li xml:lang="en-GB">Free online assets and templates</li> <li xml:lang="en-GB">Free online assets and templates</li>
<li xml:lang="eo">Liberaj enretaj valoraĵoj kaj ŝablonoj</li> <li xml:lang="eo">Liberaj enretaj valoraĵoj kaj ŝablonoj</li>
<li xml:lang="es">Recursos y plantillas libres en línea</li> <li xml:lang="es">Recursos y plantillas libres en línea</li>
@@ -279,16 +254,13 @@
<li xml:lang="fr">Produits et modèles en ligne gratuits</li> <li xml:lang="fr">Produits et modèles en ligne gratuits</li>
<li xml:lang="gl">Recursos e modelos libres por Internet.</li> <li xml:lang="gl">Recursos e modelos libres por Internet.</li>
<li xml:lang="he">משאבים ותבניות מקוונים בחינם</li> <li xml:lang="he">משאבים ותבניות מקוונים בחינם</li>
<li xml:lang="hi">निःशुल्क ऑनलाइन परिसंपत्तियाँ और टेम्पलेट्स</li>
<li xml:lang="id">Templat dan aset gratis online</li> <li xml:lang="id">Templat dan aset gratis online</li>
<li xml:lang="it">Risorse e modelli in linea gratuiti</li> <li xml:lang="it">Risorse e modelli in linea gratuiti</li>
<li xml:lang="ka">უფასო მასალები და ნიმუშები ინტერნეტში</li> <li xml:lang="ka">უფასო მასალები და ნიმუშები ინტერნეტში</li>
<li xml:lang="lv">Bezmaksas tiešsaistes resursi un veidnes</li> <li xml:lang="lv">Bezmaksas tiešsaistes resursi un veidnes</li>
<li xml:lang="nl">Vrij online bezit en sjablonen</li> <li xml:lang="nl">Vrij online bezit en sjablonen</li>
<li xml:lang="pl">Darmowe zasoby i wzorce z sieci</li> <li xml:lang="pl">Darmowe zasoby i wzorce z sieci</li>
<li xml:lang="pt-BR">Recursos e modelos online gratuitos</li>
<li xml:lang="ru">Бесплатные ресурсы и шаблоны в Интернете</li> <li xml:lang="ru">Бесплатные ресурсы и шаблоны в Интернете</li>
<li xml:lang="sa">निःशुल्क ऑनलाइन सम्पत्तिः टेम्पलेट् च</li>
<li xml:lang="sl">Brezplačna spletna sredstva in predloge</li> <li xml:lang="sl">Brezplačna spletna sredstva in predloge</li>
<li xml:lang="sv">Fria tillgångar och mallar på nätet</li> <li xml:lang="sv">Fria tillgångar och mallar på nätet</li>
<li xml:lang="tr">Ücretsiz çevrimiçi kaynaklar ve şablonlar</li> <li xml:lang="tr">Ücretsiz çevrimiçi kaynaklar ve şablonlar</li>
@@ -304,11 +276,9 @@
<li xml:lang="eo">Moviĝospurado</li> <li xml:lang="eo">Moviĝospurado</li>
<li xml:lang="es">Rastreo de movimiento</li> <li xml:lang="es">Rastreo de movimiento</li>
<li xml:lang="eu">Higiduraren jarraipena</li> <li xml:lang="eu">Higiduraren jarraipena</li>
<li xml:lang="fi">Liikkeen jäljitys</li>
<li xml:lang="fr">Suivi de déplacement</li> <li xml:lang="fr">Suivi de déplacement</li>
<li xml:lang="gl">Seguimento de movemento.</li> <li xml:lang="gl">Seguimento de movemento.</li>
<li xml:lang="he">מעקב אחר תנועה</li> <li xml:lang="he">מעקב אחר תנועה</li>
<li xml:lang="hi">मोशन ट्रेकिंग</li>
<li xml:lang="id">Pelacakan gerakan</li> <li xml:lang="id">Pelacakan gerakan</li>
<li xml:lang="it">Tracciatore di movimento</li> <li xml:lang="it">Tracciatore di movimento</li>
<li xml:lang="ka">მოძრაობის ტრეკინგი</li> <li xml:lang="ka">მოძრაობის ტრეკინგი</li>
@@ -317,7 +287,6 @@
<li xml:lang="pl">Śledzenie ruchu</li> <li xml:lang="pl">Śledzenie ruchu</li>
<li xml:lang="pt-BR">Rastreamento de movimento</li> <li xml:lang="pt-BR">Rastreamento de movimento</li>
<li xml:lang="ru">Отслеживание движения</li> <li xml:lang="ru">Отслеживание движения</li>
<li xml:lang="sa">गतिनिरीक्षणम्</li>
<li xml:lang="sl">Sledenje gibanju</li> <li xml:lang="sl">Sledenje gibanju</li>
<li xml:lang="sv">Rörelseföljning</li> <li xml:lang="sv">Rörelseföljning</li>
<li xml:lang="tr">Hareket izlemesi</li> <li xml:lang="tr">Hareket izlemesi</li>
@@ -333,11 +302,9 @@
<li xml:lang="eo">AI-pelitaj iloj</li> <li xml:lang="eo">AI-pelitaj iloj</li>
<li xml:lang="es">Herramientas potenciadas mediante IA</li> <li xml:lang="es">Herramientas potenciadas mediante IA</li>
<li xml:lang="eu">AAk bultzatutako tresnak</li> <li xml:lang="eu">AAk bultzatutako tresnak</li>
<li xml:lang="fi">Tekoälytehosteiset työkalut</li>
<li xml:lang="fr">Outils alimentés par l'intelligence artificielle</li> <li xml:lang="fr">Outils alimentés par l'intelligence artificielle</li>
<li xml:lang="gl">Ferramentas que usan intelixencia artificial.</li> <li xml:lang="gl">Ferramentas que usan intelixencia artificial.</li>
<li xml:lang="he">כלים מחוזקי בינה מלאכותית</li> <li xml:lang="he">כלים מחוזקי בינה מלאכותית</li>
<li xml:lang="hi">एआई संचालित उपकरण</li>
<li xml:lang="id">Alat bertenaga AI</li> <li xml:lang="id">Alat bertenaga AI</li>
<li xml:lang="it">Strumenti alimentati dalla IA</li> <li xml:lang="it">Strumenti alimentati dalla IA</li>
<li xml:lang="ka">ფუნქციები AI-ით</li> <li xml:lang="ka">ფუნქციები AI-ით</li>
@@ -346,7 +313,6 @@
<li xml:lang="pl">Narzędzia wspomagane SI</li> <li xml:lang="pl">Narzędzia wspomagane SI</li>
<li xml:lang="pt-BR">Ferramentas com IA</li> <li xml:lang="pt-BR">Ferramentas com IA</li>
<li xml:lang="ru">Инструменты на основе ИИ</li> <li xml:lang="ru">Инструменты на основе ИИ</li>
<li xml:lang="sa">एआइ-सञ्चालित-उपकरणम्</li>
<li xml:lang="sl">Orodja, ki jih poganja umetna inteligenca</li> <li xml:lang="sl">Orodja, ki jih poganja umetna inteligenca</li>
<li xml:lang="sv">AI-drivna verktyg</li> <li xml:lang="sv">AI-drivna verktyg</li>
<li xml:lang="tr">Yapay Zeka destekli araçlar</li> <li xml:lang="tr">Yapay Zeka destekli araçlar</li>
@@ -357,11 +323,6 @@
</ul> </ul>
</description> </description>
<releases> <releases>
<release version="25.04.0" date="2025-04-17"/>
<release version="24.12.3" date="2025-03-06"/>
<release version="24.12.2" date="2025-02-06"/>
<release version="24.12.1" date="2025-01-09"/>
<release version="24.12.0" date="2024-12-12"/>
<release version="24.08.3" date="2024-11-07"/> <release version="24.08.3" date="2024-11-07"/>
<release version="24.08.2" date="2024-10-10"/> <release version="24.08.2" date="2024-10-10"/>
<release version="24.08.1" date="2024-09-12"/> <release version="24.08.1" date="2024-09-12"/>
@@ -387,12 +348,12 @@
<release version="24.02.0" date="2024-02-28"/> <release version="24.02.0" date="2024-02-28"/>
<release version="23.08.5" date="2024-02-15"/> <release version="23.08.5" date="2024-02-15"/>
</releases> </releases>
<url type="homepage">https://kdenlive.org/?mtm_campaign=appstream_data&amp;mtm_kwd=homepage</url> <url type="homepage">https://kdenlive.org/</url>
<url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?product=kdenlive</url> <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?product=kdenlive</url>
<url type="help">https://docs.kdenlive.org/?mtm_campaign=appstream_data&amp;mtm_kwd=help</url> <url type="help">https://docs.kdenlive.org</url>
<url type="donation">https://www.kde.org/community/donations/?app=kdenlive&amp;source=appdata</url> <url type="donation">https://www.kde.org/community/donations/?app=kdenlive&amp;source=appdata</url>
<url type="contact">https://kdenlive.org/contact/?mtm_campaign=appstream_data&amp;mtm_kwd=contact</url> <url type="contact">https://kdenlive.org/contact/</url>
<url type="contribute">https://kdenlive.org/developers-welcome/?mtm_campaign=appstream_data&amp;mtm_kwd=contribute</url> <url type="contribute">https://kdenlive.org/developers-welcome/</url>
<url type="translate">https://l10n.kde.org/</url> <url type="translate">https://l10n.kde.org/</url>
<url type="vcs-browser">https://invent.kde.org/multimedia/kdenlive</url> <url type="vcs-browser">https://invent.kde.org/multimedia/kdenlive</url>
<screenshots> <screenshots>
@@ -406,11 +367,9 @@
<caption xml:lang="eo">Malhela etoso</caption> <caption xml:lang="eo">Malhela etoso</caption>
<caption xml:lang="es">Tema oscuro</caption> <caption xml:lang="es">Tema oscuro</caption>
<caption xml:lang="eu">Gai iluna</caption> <caption xml:lang="eu">Gai iluna</caption>
<caption xml:lang="fi">Tumma teema</caption>
<caption xml:lang="fr">Thème sombre</caption> <caption xml:lang="fr">Thème sombre</caption>
<caption xml:lang="gl">Tema escuro.</caption> <caption xml:lang="gl">Tema escuro.</caption>
<caption xml:lang="he">ערכת צבעים כהה</caption> <caption xml:lang="he">ערכת צבעים כהה</caption>
<caption xml:lang="hi">डार्क थीम</caption>
<caption xml:lang="id">Tema gelap</caption> <caption xml:lang="id">Tema gelap</caption>
<caption xml:lang="it">Tema scuro</caption> <caption xml:lang="it">Tema scuro</caption>
<caption xml:lang="ka">ბნელი თემა</caption> <caption xml:lang="ka">ბნელი თემა</caption>
@@ -419,7 +378,6 @@
<caption xml:lang="pl">Ciemny wygląd</caption> <caption xml:lang="pl">Ciemny wygląd</caption>
<caption xml:lang="pt-BR">Tema escuro</caption> <caption xml:lang="pt-BR">Tema escuro</caption>
<caption xml:lang="ru">Тёмная тема</caption> <caption xml:lang="ru">Тёмная тема</caption>
<caption xml:lang="sa">अन्धकारमयः विषयः</caption>
<caption xml:lang="sl">Temna tema</caption> <caption xml:lang="sl">Temna tema</caption>
<caption xml:lang="sv">Mörkt tema</caption> <caption xml:lang="sv">Mörkt tema</caption>
<caption xml:lang="tr">Koyu tema</caption> <caption xml:lang="tr">Koyu tema</caption>
@@ -438,11 +396,9 @@
<caption xml:lang="eo">Defaŭlta interfaco</caption> <caption xml:lang="eo">Defaŭlta interfaco</caption>
<caption xml:lang="es">Interfaz estándar</caption> <caption xml:lang="es">Interfaz estándar</caption>
<caption xml:lang="eu">Interfaze lehenetsia</caption> <caption xml:lang="eu">Interfaze lehenetsia</caption>
<caption xml:lang="fi">Oletuskäyttöliittymä</caption>
<caption xml:lang="fr">Interface par défaut</caption> <caption xml:lang="fr">Interface par défaut</caption>
<caption xml:lang="gl">Interface predeterminada.</caption> <caption xml:lang="gl">Interface predeterminada.</caption>
<caption xml:lang="he">ממשק ברירת מחדל</caption> <caption xml:lang="he">ממשק ברירת מחדל</caption>
<caption xml:lang="hi">डिफ़ॉल्ट इंटरफ़ेस</caption>
<caption xml:lang="id">Antarmuka baku</caption> <caption xml:lang="id">Antarmuka baku</caption>
<caption xml:lang="it">Interfaccia predefinita</caption> <caption xml:lang="it">Interfaccia predefinita</caption>
<caption xml:lang="ka">ნაგულისხმევი ინტერფეისი</caption> <caption xml:lang="ka">ნაგულისხმევი ინტერფეისი</caption>
@@ -451,7 +407,6 @@
<caption xml:lang="pl">Domyślny interfejs</caption> <caption xml:lang="pl">Domyślny interfejs</caption>
<caption xml:lang="pt-BR">Interface padrão</caption> <caption xml:lang="pt-BR">Interface padrão</caption>
<caption xml:lang="ru">Интерфейс по умолчанию</caption> <caption xml:lang="ru">Интерфейс по умолчанию</caption>
<caption xml:lang="sa">पूर्वनिर्धारित अन्तरफलक</caption>
<caption xml:lang="sl">Privzeti vmesnik</caption> <caption xml:lang="sl">Privzeti vmesnik</caption>
<caption xml:lang="sv">Standardgränssnitt</caption> <caption xml:lang="sv">Standardgränssnitt</caption>
<caption xml:lang="tr">Öntanımlı arayüz</caption> <caption xml:lang="tr">Öntanımlı arayüz</caption>
@@ -471,11 +426,9 @@
<caption xml:lang="eo">Kolorkorektado</caption> <caption xml:lang="eo">Kolorkorektado</caption>
<caption xml:lang="es">Corrección de color</caption> <caption xml:lang="es">Corrección de color</caption>
<caption xml:lang="eu">Kolore zuzenketa</caption> <caption xml:lang="eu">Kolore zuzenketa</caption>
<caption xml:lang="fi">Värinkorjaus</caption>
<caption xml:lang="fr">Correction de couleurs</caption> <caption xml:lang="fr">Correction de couleurs</caption>
<caption xml:lang="gl">Corrección de cor.</caption> <caption xml:lang="gl">Corrección de cor.</caption>
<caption xml:lang="he">תיקון צבע</caption> <caption xml:lang="he">תיקון צבע</caption>
<caption xml:lang="hi">रंग सुधार</caption>
<caption xml:lang="id">Koreksi warna</caption> <caption xml:lang="id">Koreksi warna</caption>
<caption xml:lang="it">Correzione del colore</caption> <caption xml:lang="it">Correzione del colore</caption>
<caption xml:lang="ka">ფერების კორექცია</caption> <caption xml:lang="ka">ფერების კორექცია</caption>
@@ -484,7 +437,6 @@
<caption xml:lang="pl">Poprawki barw</caption> <caption xml:lang="pl">Poprawki barw</caption>
<caption xml:lang="pt-BR">Correção de cores</caption> <caption xml:lang="pt-BR">Correção de cores</caption>
<caption xml:lang="ru">Цветокоррекция</caption> <caption xml:lang="ru">Цветокоррекция</caption>
<caption xml:lang="sa">वर्णशुद्धिकरणम्</caption>
<caption xml:lang="sl">Korekcija barv</caption> <caption xml:lang="sl">Korekcija barv</caption>
<caption xml:lang="sv">Färgkorrektion</caption> <caption xml:lang="sv">Färgkorrektion</caption>
<caption xml:lang="tr">Renk düzeltmesi</caption> <caption xml:lang="tr">Renk düzeltmesi</caption>
@@ -503,11 +455,9 @@
<caption xml:lang="eo">Agordebla interfaco</caption> <caption xml:lang="eo">Agordebla interfaco</caption>
<caption xml:lang="es">Interfaz configurable</caption> <caption xml:lang="es">Interfaz configurable</caption>
<caption xml:lang="eu">Interfaze konfiguragarria</caption> <caption xml:lang="eu">Interfaze konfiguragarria</caption>
<caption xml:lang="fi">Mukautettava käyttöliittymä</caption>
<caption xml:lang="fr">Interface configurable</caption> <caption xml:lang="fr">Interface configurable</caption>
<caption xml:lang="gl">Interface configurábel.</caption> <caption xml:lang="gl">Interface configurábel.</caption>
<caption xml:lang="he">ממשק גמיש</caption> <caption xml:lang="he">ממשק גמיש</caption>
<caption xml:lang="hi">कॉन्फ़िगर करने योग्य इंटरफ़ेस</caption>
<caption xml:lang="id">Antarmuka dapat dikonfigurasi</caption> <caption xml:lang="id">Antarmuka dapat dikonfigurasi</caption>
<caption xml:lang="it">Interfaccia configurabile</caption> <caption xml:lang="it">Interfaccia configurabile</caption>
<caption xml:lang="ka">მორგებადი ინტერფეისი</caption> <caption xml:lang="ka">მორგებადი ინტერფეისი</caption>
@@ -516,7 +466,6 @@
<caption xml:lang="pl">Interfejs dający się dostosować</caption> <caption xml:lang="pl">Interfejs dający się dostosować</caption>
<caption xml:lang="pt-BR">Interface configurável</caption> <caption xml:lang="pt-BR">Interface configurável</caption>
<caption xml:lang="ru">Настраиваемый интерфейс</caption> <caption xml:lang="ru">Настраиваемый интерфейс</caption>
<caption xml:lang="sa">विन्यासयोग्यं अन्तरफलकं</caption>
<caption xml:lang="sl">Nastavljiv vmesnik</caption> <caption xml:lang="sl">Nastavljiv vmesnik</caption>
<caption xml:lang="sv">Anpassningsbart gränssnitt</caption> <caption xml:lang="sv">Anpassningsbart gränssnitt</caption>
<caption xml:lang="tr">Yapılandırılabilir arayüz</caption> <caption xml:lang="tr">Yapılandırılabilir arayüz</caption>
@@ -535,11 +484,9 @@
<caption xml:lang="eo">Titolado</caption> <caption xml:lang="eo">Titolado</caption>
<caption xml:lang="es">Titulación</caption> <caption xml:lang="es">Titulación</caption>
<caption xml:lang="eu">Tituluak ipintzea</caption> <caption xml:lang="eu">Tituluak ipintzea</caption>
<caption xml:lang="fi">Väliotsikot</caption>
<caption xml:lang="fr">Titrage</caption> <caption xml:lang="fr">Titrage</caption>
<caption xml:lang="gl">Titulación.</caption> <caption xml:lang="gl">Titulación.</caption>
<caption xml:lang="he">מתן כותרות</caption> <caption xml:lang="he">מתן כותרות</caption>
<caption xml:lang="hi">शीर्षक</caption>
<caption xml:lang="id">Pemberian teks</caption> <caption xml:lang="id">Pemberian teks</caption>
<caption xml:lang="it">Titolazione</caption> <caption xml:lang="it">Titolazione</caption>
<caption xml:lang="ka">დასათაურება</caption> <caption xml:lang="ka">დასათაურება</caption>
@@ -548,7 +495,6 @@
<caption xml:lang="pl">Nadawanie tytułów</caption> <caption xml:lang="pl">Nadawanie tytułów</caption>
<caption xml:lang="pt-BR">Gerador de caracteres</caption> <caption xml:lang="pt-BR">Gerador de caracteres</caption>
<caption xml:lang="ru">Наложение субтитров</caption> <caption xml:lang="ru">Наложение субтитров</caption>
<caption xml:lang="sa">उपाधिकरणम्</caption>
<caption xml:lang="sl">Naslavljanje</caption> <caption xml:lang="sl">Naslavljanje</caption>
<caption xml:lang="sv">Textning</caption> <caption xml:lang="sv">Textning</caption>
<caption xml:lang="tr">Başlıklandırma</caption> <caption xml:lang="tr">Başlıklandırma</caption>
@@ -570,16 +516,13 @@
<caption xml:lang="fr">Nouvelle cartographie du temps et transitions sur la même piste</caption> <caption xml:lang="fr">Nouvelle cartographie du temps et transitions sur la même piste</caption>
<caption xml:lang="gl">Cambio de asociación de tempos e transicións nunha mesma pista.</caption> <caption xml:lang="gl">Cambio de asociación de tempos e transicións nunha mesma pista.</caption>
<caption xml:lang="he">מיפוי זמן מחדש ומעברונים באותה הרצועה</caption> <caption xml:lang="he">מיפוי זמן מחדש ומעברונים באותה הרצועה</caption>
<caption xml:lang="hi">समय पुनर्निर्धारण और समान-ट्रैक संक्रमण</caption>
<caption xml:lang="id">Pemetaan ulang waktu dan transisi trek yang sama</caption> <caption xml:lang="id">Pemetaan ulang waktu dan transisi trek yang sama</caption>
<caption xml:lang="it">Modifica del tempo e transizioni nella stessa traccia</caption> <caption xml:lang="it">Modifica del tempo e transizioni nella stessa traccia</caption>
<caption xml:lang="ka">დროის თავიდან ასახვა და გადასვლები იგივე ტრეკში</caption> <caption xml:lang="ka">დროის თავიდან ასახვა და გადასვლები იგივე ტრეკში</caption>
<caption xml:lang="lv">Laika pārkartēšana ar viena celiņa pārejām</caption> <caption xml:lang="lv">Laika pārkartēšana ar viena celiņa pārejām</caption>
<caption xml:lang="nl">Snelheid van video wijzigen (time remapping) en overgangen in dezelfde track</caption> <caption xml:lang="nl">Snelheid van video wijzigen (time remapping) en overgangen in dezelfde track</caption>
<caption xml:lang="pl">Przemapowywanie czasu oraz przejścia w obrębie jednej ścieżki</caption> <caption xml:lang="pl">Przemapowywanie czasu oraz przejścia w obrębie jednej ścieżki</caption>
<caption xml:lang="pt-BR">Remapeamento de tempo e transições na mesma trilha</caption>
<caption xml:lang="ru">Переназначение времени и переходы в одной и той же дорожке</caption> <caption xml:lang="ru">Переназначение времени и переходы в одной и той же дорожке</caption>
<caption xml:lang="sa">समयस्य पुनः मानचित्रणं तथा समान-पट्टिका-संक्रमणम्</caption>
<caption xml:lang="sl">Preslikava časa in prehodi na isti stezi</caption> <caption xml:lang="sl">Preslikava časa in prehodi na isti stezi</caption>
<caption xml:lang="sv">Tidsomvandling och övergångar i samma spår</caption> <caption xml:lang="sv">Tidsomvandling och övergångar i samma spår</caption>
<caption xml:lang="tr">Zaman eşlemlemesi ve aynı izde geçişler</caption> <caption xml:lang="tr">Zaman eşlemlemesi ve aynı izde geçişler</caption>

View File

@@ -21,7 +21,6 @@ Name[fr]=Kdenlive
Name[ga]=Kdenlive Name[ga]=Kdenlive
Name[gl]=Kdenlive Name[gl]=Kdenlive
Name[he]=Kdenlive Name[he]=Kdenlive
Name[hi]=केडेनलाइव
Name[hu]=Kdenlive Name[hu]=Kdenlive
Name[id]=Kdenlive Name[id]=Kdenlive
Name[it]=Kdenlive Name[it]=Kdenlive
@@ -41,7 +40,6 @@ Name[pt]=Kdenlive
Name[pt_BR]=Kdenlive Name[pt_BR]=Kdenlive
Name[ro]=Kdenlive Name[ro]=Kdenlive
Name[ru]=Kdenlive Name[ru]=Kdenlive
Name[sa]=क्डेन्लिव्
Name[sk]=Kdenlive Name[sk]=Kdenlive
Name[sl]=Kdenlive Name[sl]=Kdenlive
Name[sv]=Kdenlive Name[sv]=Kdenlive
@@ -72,7 +70,6 @@ GenericName[fr]=Éditeur vidéo
GenericName[ga]=Eagarthóir Físe GenericName[ga]=Eagarthóir Físe
GenericName[gl]=Editor de vídeo GenericName[gl]=Editor de vídeo
GenericName[he]=עורך וידאו GenericName[he]=עורך וידאו
GenericName[hi]=वीडियो संपादक
GenericName[hu]=Videoszerkesztő GenericName[hu]=Videoszerkesztő
GenericName[id]=Pengedit Video GenericName[id]=Pengedit Video
GenericName[it]=Editor video GenericName[it]=Editor video
@@ -91,7 +88,6 @@ GenericName[pt]=Editor de Vídeo
GenericName[pt_BR]=Editor de Vídeo GenericName[pt_BR]=Editor de Vídeo
GenericName[ro]=Redactor de imagini GenericName[ro]=Redactor de imagini
GenericName[ru]=Видеоредактор GenericName[ru]=Видеоредактор
GenericName[sa]=विडियो सम्पादक
GenericName[sk]=Editor videa GenericName[sk]=Editor videa
GenericName[sl]=Program za videomontažo GenericName[sl]=Program za videomontažo
GenericName[sv]=Videoeditor GenericName[sv]=Videoeditor
@@ -119,7 +115,6 @@ Comment[fi]=KDE:n epälineaarinen videomuokkain
Comment[fr]=Éditeur vidéo non linéaire par KDE Comment[fr]=Éditeur vidéo non linéaire par KDE
Comment[gl]=Editor de vídeo non lineal por KDE Comment[gl]=Editor de vídeo non lineal por KDE
Comment[he]=עורך וידאו א־לינארי מבית KDE Comment[he]=עורך וידאו א־לינארי מבית KDE
Comment[hi]=केडीई द्वारा नॉनलाइनियर वीडियो संपादक
Comment[hu]=Nemlineáris videoszerkesztő a KDE-től Comment[hu]=Nemlineáris videoszerkesztő a KDE-től
Comment[id]=Pengedit video nonlinier oleh KDE Comment[id]=Pengedit video nonlinier oleh KDE
Comment[it]=Editor di video non lineare di KDE Comment[it]=Editor di video non lineare di KDE
@@ -133,7 +128,6 @@ Comment[pl]=Nieliniowy edytor wideo w ramach KDE
Comment[pt]=Editor de vídeo não-linear do KDE Comment[pt]=Editor de vídeo não-linear do KDE
Comment[pt_BR]=Editor de vídeo não-linear do KDE Comment[pt_BR]=Editor de vídeo não-linear do KDE
Comment[ru]=Нелинейный видеоредактор от KDE Comment[ru]=Нелинейный видеоредактор от KDE
Comment[sa]=KDE द्वारा अरैखिक विडियो सम्पादक
Comment[sk]=Nelineárny editor videa pre KDE Comment[sk]=Nelineárny editor videa pre KDE
Comment[sl]=Program za nelinearno montažo videa KDE Comment[sl]=Program za nelinearno montažo videa KDE
Comment[sv]=Icke-linjär videoeditor av KDE Comment[sv]=Icke-linjär videoeditor av KDE
@@ -168,7 +162,6 @@ Keywords[fi]=editing;video;audio;mlt;kde;editointi;ääni;
Keywords[fr]=montage;vidéo;audio;mlt;kde; Keywords[fr]=montage;vidéo;audio;mlt;kde;
Keywords[gl]=editing;edición;video;vídeo;audio;son;mlt;kde; Keywords[gl]=editing;edición;video;vídeo;audio;son;mlt;kde;
Keywords[he]=עריכה;וידאו;סרטון;שמע;אודיו;kde;mlt; Keywords[he]=עריכה;וידאו;סרטון;שמע;אודיו;kde;mlt;
Keywords[hi]=संपादन; ऑडियो;
Keywords[hu]=szerkesztés;videó;hang;mlt;kde; Keywords[hu]=szerkesztés;videó;hang;mlt;kde;
Keywords[id]=pengeditan;video;audio;mlt;kde; Keywords[id]=pengeditan;video;audio;mlt;kde;
Keywords[it]=editing;video;audio;mlt;kde; Keywords[it]=editing;video;audio;mlt;kde;
@@ -182,7 +175,6 @@ Keywords[pl]=edytowanie;video;wideo;filmy;audio;dźwięk;mlt;kde;
Keywords[pt]=edição;vídeo;áudio;MLT;kde; Keywords[pt]=edição;vídeo;áudio;MLT;kde;
Keywords[pt_BR]=edição;vídeo;áudio;mlt;kde; Keywords[pt_BR]=edição;vídeo;áudio;mlt;kde;
Keywords[ru]=editing;video;audio;редактирование;видео;аудио;mlt;kde; Keywords[ru]=editing;video;audio;редактирование;видео;аудио;mlt;kde;
Keywords[sa]=सम्पादनम्;
Keywords[sk]=editovanie;video;audio;mlt;kde; Keywords[sk]=editovanie;video;audio;mlt;kde;
Keywords[sl]=montaža;video;film;zvok;mlt;kde; Keywords[sl]=montaža;video;film;zvok;mlt;kde;
Keywords[sv]=redigering;video;ljud;mlt;kde; Keywords[sv]=redigering;video;ljud;mlt;kde;

View File

@@ -18,7 +18,6 @@
<comment xml:lang="fr">Document de projet vidéo pour Kdenlive</comment> <comment xml:lang="fr">Document de projet vidéo pour Kdenlive</comment>
<comment xml:lang="gl">Documento dun proxecto de vídeo de Kdenlive.</comment> <comment xml:lang="gl">Documento dun proxecto de vídeo de Kdenlive.</comment>
<comment xml:lang="he">מסמך מיזם וידאו של Kdenlive</comment> <comment xml:lang="he">מסמך מיזם וידאו של Kdenlive</comment>
<comment xml:lang="hi">Kdenlive वीडियो परियोजना दस्तावेज़</comment>
<comment xml:lang="hu">Kdenlive videóprojekt-dokumentum</comment> <comment xml:lang="hu">Kdenlive videóprojekt-dokumentum</comment>
<comment xml:lang="id">Dokumen proyek video Kdenlive</comment> <comment xml:lang="id">Dokumen proyek video Kdenlive</comment>
<comment xml:lang="it">Progetto video di Kdenlive</comment> <comment xml:lang="it">Progetto video di Kdenlive</comment>
@@ -33,7 +32,6 @@
<comment xml:lang="pt">Documento de projecto de vídeo do Kdenlive</comment> <comment xml:lang="pt">Documento de projecto de vídeo do Kdenlive</comment>
<comment xml:lang="pt_BR">Documento de projeto de vídeo do Kdenlive</comment> <comment xml:lang="pt_BR">Documento de projeto de vídeo do Kdenlive</comment>
<comment xml:lang="ru">Видеопроект Kdenlive</comment> <comment xml:lang="ru">Видеопроект Kdenlive</comment>
<comment xml:lang="sa">Kdenlive विडियो परियोजना दस्तावेज</comment>
<comment xml:lang="sl">Dokument video projekta Kdenlive</comment> <comment xml:lang="sl">Dokument video projekta Kdenlive</comment>
<comment xml:lang="sv">Kdenlive-videoprojektdokument</comment> <comment xml:lang="sv">Kdenlive-videoprojektdokument</comment>
<comment xml:lang="tr">Kdenlive video proje belgesi</comment> <comment xml:lang="tr">Kdenlive video proje belgesi</comment>
@@ -61,7 +59,6 @@
<comment xml:lang="fr">Titre de vidéo pour Kdenlive</comment> <comment xml:lang="fr">Titre de vidéo pour Kdenlive</comment>
<comment xml:lang="gl">Título de vídeo de Kdenlive.</comment> <comment xml:lang="gl">Título de vídeo de Kdenlive.</comment>
<comment xml:lang="he">כותרת וידאו של Kdenlive</comment> <comment xml:lang="he">כותרת וידאו של Kdenlive</comment>
<comment xml:lang="hi">Kdenlive वीडियो शीर्षक</comment>
<comment xml:lang="hu">Kdenlive videófelirat</comment> <comment xml:lang="hu">Kdenlive videófelirat</comment>
<comment xml:lang="id">Judul video Kdenlive</comment> <comment xml:lang="id">Judul video Kdenlive</comment>
<comment xml:lang="it">Titolo video di Kdenlive</comment> <comment xml:lang="it">Titolo video di Kdenlive</comment>
@@ -75,7 +72,6 @@
<comment xml:lang="pt">Título de vídeo do Kdenlive</comment> <comment xml:lang="pt">Título de vídeo do Kdenlive</comment>
<comment xml:lang="pt_BR">Título de vídeo do Kdenlive</comment> <comment xml:lang="pt_BR">Título de vídeo do Kdenlive</comment>
<comment xml:lang="ru">Видеотитры Kdenlive</comment> <comment xml:lang="ru">Видеотитры Kdenlive</comment>
<comment xml:lang="sa">Kdenlive विडियो शीर्षक</comment>
<comment xml:lang="sl">Naslov videa Kdenlive</comment> <comment xml:lang="sl">Naslov videa Kdenlive</comment>
<comment xml:lang="sv">Kdenlive-video</comment> <comment xml:lang="sv">Kdenlive-video</comment>
<comment xml:lang="tr">Kdenlive video başlığı</comment> <comment xml:lang="tr">Kdenlive video başlığı</comment>
@@ -101,7 +97,6 @@
<comment xml:lang="fr">Mise en page de l'application Kdenlive</comment> <comment xml:lang="fr">Mise en page de l'application Kdenlive</comment>
<comment xml:lang="gl">Disposición de aplicación de Kdenlive.</comment> <comment xml:lang="gl">Disposición de aplicación de Kdenlive.</comment>
<comment xml:lang="he">פריסת יישום Kdenlive</comment> <comment xml:lang="he">פריסת יישום Kdenlive</comment>
<comment xml:lang="hi">Kdenlive अनुप्रयोग लेआउट</comment>
<comment xml:lang="hu">Kdenlive alkalmazáselrendezés</comment> <comment xml:lang="hu">Kdenlive alkalmazáselrendezés</comment>
<comment xml:lang="id">Tata letak aplikasi Kdenlive</comment> <comment xml:lang="id">Tata letak aplikasi Kdenlive</comment>
<comment xml:lang="it">Disposizione dell'applicazione Kdenlive</comment> <comment xml:lang="it">Disposizione dell'applicazione Kdenlive</comment>
@@ -114,7 +109,6 @@
<comment xml:lang="pt">Disposição da aplicação Kdenlive</comment> <comment xml:lang="pt">Disposição da aplicação Kdenlive</comment>
<comment xml:lang="pt_BR">Layout de aplicativo do Kdenlive</comment> <comment xml:lang="pt_BR">Layout de aplicativo do Kdenlive</comment>
<comment xml:lang="ru">Макет приложения Kdenlive</comment> <comment xml:lang="ru">Макет приложения Kdenlive</comment>
<comment xml:lang="sa">Kdenlive अनुप्रयोग विन्यास</comment>
<comment xml:lang="sl">Postavitev programa Kdenlive</comment> <comment xml:lang="sl">Postavitev programa Kdenlive</comment>
<comment xml:lang="sv">Kdenlive programlayout</comment> <comment xml:lang="sv">Kdenlive programlayout</comment>
<comment xml:lang="tr">Kdenlive uygulama yerleşimi</comment> <comment xml:lang="tr">Kdenlive uygulama yerleşimi</comment>

Some files were not shown because too many files have changed in this diff Show More