mirror of
https://invent.kde.org/multimedia/kdenlive
synced 2025-12-07 08:50:02 +01:00
Compare commits
1 Commits
work/embed
...
new_splash
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
46be969fc5 |
4
.arcconfig
Normal file
4
.arcconfig
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"project.name" : "Kdenlive",
|
||||
"phabricator.uri" : "https://phabricator.kde.org/"
|
||||
}
|
||||
@@ -1,5 +1,3 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
---
|
||||
Language: Cpp
|
||||
# BasedOnStyle: LLVM
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
tests/catch.hpp
|
||||
tests/fakeit.hpp
|
||||
fuzzer/fakeit_standalone.hpp
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
---
|
||||
Checks: 'clang-diagnostic-*,clang-analyzer-*,,performance-*,modernize-*,readability-*, cppcoreguidelines-*, misc-definitions-in-headers, misc-misplaced-const'
|
||||
WarningsAsErrors: ''
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
[macos-64-clang]
|
||||
CodeSigning/MacCustomSignCommand = arch -arm64 /usr/local/bin/python3 ci-notary-service/signmacapp.py -v --config ci-utilities/signing/signmacapp.ini
|
||||
|
||||
@@ -1,90 +0,0 @@
|
||||
{
|
||||
"id": "org.kde.kdenlive",
|
||||
"default-branch": "master",
|
||||
"runtime": "org.kde.Platform",
|
||||
"runtime-version": "6.7",
|
||||
"sdk": "org.kde.Sdk",
|
||||
"sdk-extensions" : [ "org.freedesktop.Sdk.Extension.llvm18" ],
|
||||
"command": "kdenlive",
|
||||
"rename-icon": "kdenlive",
|
||||
"desktop-file-name-suffix": " (Nightly)",
|
||||
"finish-args": [
|
||||
"--require-version=0.11.4",
|
||||
"--share=ipc",
|
||||
"--socket=wayland",
|
||||
"--socket=fallback-x11",
|
||||
"--device=all",
|
||||
"--socket=pulseaudio",
|
||||
"--share=network",
|
||||
"--filesystem=host",
|
||||
"--filesystem=xdg-run/pipewire-0",
|
||||
"--filesystem=xdg-config/kdeglobals:ro",
|
||||
"--env=TMPDIR=/var/tmp",
|
||||
"--env=QT_ENABLE_HIGHDPI_SCALING=1",
|
||||
"--env=FREI0R_PATH=/app/lib/frei0r-1",
|
||||
"--env=LADSPA_PATH=/app/extensions/Plugins/ladspa:/app/lib/ladspa",
|
||||
"--env=PACKAGE_TYPE=flatpak"
|
||||
],
|
||||
"add-extensions": {
|
||||
"org.freedesktop.LinuxAudio.Plugins": {
|
||||
"directory": "extensions/Plugins",
|
||||
"version": "23.08",
|
||||
"add-ld-path": "lib",
|
||||
"merge-dirs": "ladspa",
|
||||
"subdirectories": true,
|
||||
"no-autodownload": true
|
||||
},
|
||||
"org.freedesktop.LinuxAudio.Plugins.swh": {
|
||||
"directory": "extensions/Plugins/swh",
|
||||
"version": "23.08",
|
||||
"add-ld-path": "lib",
|
||||
"merge-dirs": "ladspa",
|
||||
"autodelete": false,
|
||||
"subdirectories": true
|
||||
},
|
||||
"org.freedesktop.LinuxAudio.Plugins.TAP": {
|
||||
"directory": "extensions/Plugins/TAP",
|
||||
"version": "23.08",
|
||||
"add-ld-path": "lib",
|
||||
"merge-dirs": "ladspa",
|
||||
"autodelete": false,
|
||||
"subdirectories": true
|
||||
}
|
||||
},
|
||||
"cleanup": [
|
||||
"/include",
|
||||
"/lib/pkgconfig",
|
||||
"/lib/cmake",
|
||||
"/mkspecs",
|
||||
"/share/aclocal",
|
||||
"/share/gtk-doc",
|
||||
"/share/man",
|
||||
"/share/pkgconfig",
|
||||
"*.a",
|
||||
"*.la",
|
||||
"*.cmake"
|
||||
],
|
||||
"modules": [
|
||||
"packaging/flatpak/org.kde.kdenlive-dependencies.json",
|
||||
{
|
||||
"name": "kdenlive",
|
||||
"buildsystem": "cmake-ninja",
|
||||
"builddir": true,
|
||||
"config-opts": [
|
||||
"-DCMAKE_BUILD_TYPE=RelWithDebInfo",
|
||||
"-DRELEASE_BUILD=OFF",
|
||||
"-DBUILD_TESTING=OFF",
|
||||
"-DFETCH_OTIO=OFF"
|
||||
],
|
||||
"post-install": [
|
||||
"install -d /app/extensions/Plugins"
|
||||
],
|
||||
"sources": [
|
||||
{
|
||||
"type": "dir",
|
||||
"path": "."
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
23
.gitignore
vendored
23
.gitignore
vendored
@@ -1,22 +1,5 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
*~
|
||||
# restrict the rule for build folders to the root
|
||||
# level to avoid exclusion of eg. timeline2/model/builders/
|
||||
/build*/
|
||||
|
||||
build/*
|
||||
CMakeLists.txt.user*
|
||||
*.kdev4
|
||||
*.patch
|
||||
packaging/flatpak/.flatpak-builder
|
||||
|
||||
# Jetbrains IDE like CLion
|
||||
.idea
|
||||
|
||||
# clangd tooling
|
||||
.cache
|
||||
.clangd
|
||||
compile_commands.json
|
||||
|
||||
# VSCode
|
||||
.vscode/
|
||||
po
|
||||
*.patch
|
||||
|
||||
@@ -1,20 +1,4 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
include:
|
||||
- project: sysadmin/ci-utilities
|
||||
file:
|
||||
# Linting
|
||||
- /gitlab-templates/reuse-lint.yml
|
||||
- /gitlab-templates/xml-lint.yml
|
||||
# CI Qt6
|
||||
- /gitlab-templates/linux-qt6.yml
|
||||
- /gitlab-templates/linux-qt6-next.yml
|
||||
- /gitlab-templates/freebsd-qt6.yml
|
||||
# CD Qt6
|
||||
- /gitlab-templates/flatpak.yml
|
||||
- /gitlab-templates/craft-appimage-qt6.yml
|
||||
- /gitlab-templates/craft-windows-mingw64-qt6.yml
|
||||
- /gitlab-templates/craft-macos-x86-64-qt6.yml
|
||||
- /gitlab-templates/craft-macos-arm64-qt6.yml
|
||||
|
||||
- https://invent.kde.org/sysadmin/ci-tooling/raw/master/invent/ci-before.yml
|
||||
- https://invent.kde.org/sysadmin/ci-tooling/raw/master/invent/ci-applications-linux.yml
|
||||
- https://invent.kde.org/sysadmin/ci-tooling/raw/master/invent/ci-applications-freebsd.yml
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
# Important!
|
||||
|
||||
Thanks for coming here!
|
||||
|
||||
Please note that all bug reports and feature requests should be filed on https://bugs.kde.org and should never be raised here.
|
||||
|
||||
For support, it is recommended to post on the KDE forum https://discuss.kde.org/ instead or use our chat groups on [Matrix](https://go.kde.org/matrix/#/#kdenlive:kde.org) and [Telegram](https://t.me/kdenlive).
|
||||
|
||||
**:warning: Issues on KDE Invent are solely for tracking ongoing work and intended for use by developers and contributors exclusively.**
|
||||
|
||||
We request to consult with a developer or other contributor prior to opening issues here, when in doubt we recommended to open them on https://bugs.kde.org instead.
|
||||
|
||||
(Please delete this line and the warning text above and below if you create a valid issue.)
|
||||
|
||||
**If you submit a bug report or feature request here despite this notice, there's a chance it will be closed without comment or consideration.**
|
||||
@@ -1,2 +0,0 @@
|
||||
SPDX-FileCopyrightText: none
|
||||
SPDX-License-Identifier: CC0-1.0
|
||||
42
.kde-ci.yml
42
.kde-ci.yml
@@ -1,42 +0,0 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
Dependencies:
|
||||
- 'on': ['@all']
|
||||
'require':
|
||||
'frameworks/extra-cmake-modules': '@latest-kf6'
|
||||
'frameworks/breeze-icons' : '@latest-kf6'
|
||||
'frameworks/karchive' : '@latest-kf6'
|
||||
'frameworks/kbookmarks' : '@latest-kf6'
|
||||
'frameworks/kconfig' : '@latest-kf6'
|
||||
'frameworks/kconfigwidgets' : '@latest-kf6'
|
||||
'frameworks/kcompletion' : '@latest-kf6'
|
||||
'frameworks/kcoreaddons' : '@latest-kf6'
|
||||
'frameworks/kcrash' : '@latest-kf6'
|
||||
'frameworks/kdbusaddons' : '@latest-kf6'
|
||||
'frameworks/kguiaddons' : '@latest-kf6'
|
||||
'frameworks/ki18n' : '@latest-kf6'
|
||||
'frameworks/kiconthemes' : '@latest-kf6'
|
||||
'frameworks/kio' : '@latest-kf6'
|
||||
'frameworks/kitemviews' : '@latest-kf6'
|
||||
'frameworks/kjobwidgets' : '@latest-kf6'
|
||||
'frameworks/knewstuff' : '@latest-kf6'
|
||||
'frameworks/knotifications' : '@latest-kf6'
|
||||
'frameworks/knotifyconfig' : '@latest-kf6'
|
||||
'frameworks/kplotting' : '@latest-kf6'
|
||||
'frameworks/kservice' : '@latest-kf6'
|
||||
'frameworks/ktextwidgets' : '@latest-kf6'
|
||||
'frameworks/kwidgetsaddons' : '@latest-kf6'
|
||||
'frameworks/kxmlgui' : '@latest-kf6'
|
||||
'frameworks/kfilemetadata' : '@latest-kf6'
|
||||
'frameworks/purpose' : '@latest-kf6'
|
||||
|
||||
#- 'on': ['Linux', 'FreeBSD']
|
||||
#'require':
|
||||
#'plasma/drkonqi' : '@stable'
|
||||
|
||||
Options:
|
||||
require-passing-tests-on: [ 'Linux/Qt6', 'FreeBSD/Qt6']
|
||||
cppcheck-arguments: '--suppress="*:tests/fakeit.hpp" --suppress="*:tests/catch.hpp" --suppress="*:fuzzer/fakeit_standalone.hpp"'
|
||||
per-test-timeout: 120
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
*~
|
||||
build
|
||||
CMakeLists.txt.user*
|
||||
@@ -7,4 +5,4 @@ CMakeLists.txt.user*
|
||||
*.kdev*
|
||||
.git*
|
||||
.tarignore
|
||||
*.sh
|
||||
*.sh
|
||||
15
AUTHORS
15
AUTHORS
@@ -1,6 +1,3 @@
|
||||
# SPDX-FileCopyrightText: none
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
Active Kdenlive authors
|
||||
|
||||
Jean-Baptiste Mardelle <jb@kdenlive.org>
|
||||
@@ -9,18 +6,9 @@ Active Kdenlive authors
|
||||
Nicolas Carion <french.ebook.lover@gmail.com>
|
||||
Code re-architecture & timeline rewrite
|
||||
2016-present
|
||||
Dan Dennedy <dan@dennedy.org>
|
||||
MLT, Bug fixing
|
||||
2009(-2011)-present
|
||||
Vincent Pinon <vpinon@kde.org>
|
||||
KF5 port, Windows cross-build, bugs fixing
|
||||
2012-present
|
||||
Julius Künzel <julius.kuenzel@kde.org>
|
||||
Bugs fixing
|
||||
2020-present
|
||||
Sashmita Raghav
|
||||
Subtitle feature (GSoC), timeline colours
|
||||
2020-present
|
||||
|
||||
Former Kdenlive authors
|
||||
|
||||
@@ -39,6 +27,9 @@ Former Kdenlive authors
|
||||
Marco Gittler <g.marco@freenet.de>
|
||||
MLT transitions and effects, timeline, audio thumbs
|
||||
2009-2012
|
||||
Dan Dennedy <dan@dennedy.org>
|
||||
Bug fixing
|
||||
2009-2011
|
||||
Alberto Villa <avilla@FreeBSD.org>
|
||||
Bug fixing, logo, etc.
|
||||
2009-2013
|
||||
|
||||
278
CMakeLists.txt
278
CMakeLists.txt
@@ -1,69 +1,48 @@
|
||||
# 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>
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(Kdenlive)
|
||||
|
||||
# An odd patch version number means development version, while an even one means
|
||||
# stable release. An additional number can be used for bugfix-only releases.
|
||||
|
||||
# KDE Application Version, managed by release script
|
||||
set (RELEASE_SERVICE_VERSION_MAJOR "25")
|
||||
set (RELEASE_SERVICE_VERSION_MINOR "07")
|
||||
set (RELEASE_SERVICE_VERSION_MICRO "70")
|
||||
set(KDE_APPLICATIONS_VERSION_MAJOR "19")
|
||||
set(KDE_APPLICATIONS_VERSION_MINOR "07")
|
||||
set(KDE_APPLICATIONS_VERSION_MICRO "70")
|
||||
|
||||
set(KDENLIVE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
||||
set(KDENLIVE_VERSION ${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO})
|
||||
|
||||
project(Kdenlive VERSION ${KDENLIVE_VERSION})
|
||||
|
||||
include(FeatureSummary)
|
||||
include(GenerateExportHeader)
|
||||
|
||||
# Register CMake options
|
||||
option(RELEASE_BUILD "Remove Git revision from program version" ON) # To be switched on when releasing.
|
||||
option(BUILD_TESTING "Build tests" ON)
|
||||
option(CRASH_AUTO_TEST "Auto-generate testcases upon some crashes (uses RTTR library, needed for fuzzing)" 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)
|
||||
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?
|
||||
# enabled per default on Linux & BSD systems
|
||||
set(USE_DBUS_DEFAULT OFF)
|
||||
if(UNIX AND NOT APPLE AND NOT ANDROID AND NOT HAIKU)
|
||||
set(USE_DBUS_DEFAULT ON)
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
if(POLICY CMP0063)
|
||||
cmake_policy(SET CMP0063 NEW)
|
||||
endif()
|
||||
if(POLICY CMP0053)
|
||||
cmake_policy(SET CMP0053 NEW)
|
||||
endif()
|
||||
option(USE_DBUS "Build components using DBus" ${USE_DBUS_DEFAULT})
|
||||
|
||||
option(BUILD_DESIGNERPLUGIN "Build plugin for Qt Designer" OFF)
|
||||
if(BUILD_FUZZING)
|
||||
set(CMAKE_CXX_FLAGS "${KDENLIVE_CXX_FLAGS} -fsanitize=fuzzer-no-link,address")
|
||||
endif()
|
||||
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-warning-option")
|
||||
endif()
|
||||
|
||||
# To be switched on when releasing.
|
||||
option(RELEASE_BUILD "Remove Git revision from program version" ON)
|
||||
option(BUILD_TESTING "Build tests" ON)
|
||||
option(BUILD_FUZZING "Build fuzzing target" OFF)
|
||||
|
||||
# Minimum versions of main dependencies.
|
||||
set(MLT_MIN_MAJOR_VERSION 7)
|
||||
set(MLT_MIN_MINOR_VERSION 28)
|
||||
set(MLT_MIN_MAJOR_VERSION 6)
|
||||
set(MLT_MIN_MINOR_VERSION 12)
|
||||
set(MLT_MIN_PATCH_VERSION 0)
|
||||
set(MLT_MIN_VERSION ${MLT_MIN_MAJOR_VERSION}.${MLT_MIN_MINOR_VERSION}.${MLT_MIN_PATCH_VERSION})
|
||||
|
||||
# Qt version
|
||||
set(QT_MIN_VERSION 6.5.0)
|
||||
set(KF_DEP_VERSION "6.3.0")
|
||||
|
||||
find_package(ECM ${KF_DEP_VERSION} REQUIRED CONFIG)
|
||||
# KDE Frameworks
|
||||
find_package(ECM 5.18.0 REQUIRED CONFIG)
|
||||
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules)
|
||||
|
||||
if (NOT DEFINED QT_MAJOR_VERSION)
|
||||
set(QT_MAJOR_VERSION 6)
|
||||
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(KDECompilerSettings NO_POLICY_SCOPE)
|
||||
include(FeatureSummary)
|
||||
include(ECMInstallIcons)
|
||||
include(GenerateExportHeader)
|
||||
include(KDEInstallDirs)
|
||||
include(KDECMakeSettings)
|
||||
include(ECMOptionalAddSubdirectory)
|
||||
@@ -71,75 +50,17 @@ include(ECMMarkNonGuiExecutable)
|
||||
include(ECMAddAppIcon)
|
||||
include(ECMQtDeclareLoggingCategory)
|
||||
include(ECMEnableSanitizers)
|
||||
include(ECMAddQch)
|
||||
include(ECMDeprecationSettings)
|
||||
include(ECMQmlModule)
|
||||
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
|
||||
if(NOT MSVC)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-variadic-macros")
|
||||
endif()
|
||||
|
||||
# KDE Frameworks
|
||||
if (NOT DEFINED KF_MAJOR)
|
||||
set(KF_MAJOR ${QT_MAJOR_VERSION})
|
||||
endif()
|
||||
|
||||
add_definitions(-DTRANSLATION_DOMAIN=\"kdenlive\")
|
||||
find_package(KF${KF_MAJOR} ${KF_DEP_VERSION}
|
||||
REQUIRED COMPONENTS
|
||||
I18n
|
||||
Archive
|
||||
Bookmarks
|
||||
Codecs
|
||||
CoreAddons
|
||||
Config
|
||||
ConfigWidgets
|
||||
KIO
|
||||
WidgetsAddons
|
||||
NotifyConfig
|
||||
NewStuff
|
||||
XmlGui
|
||||
Notifications
|
||||
GuiAddons
|
||||
TextWidgets
|
||||
IconThemes
|
||||
Solid
|
||||
FileMetaData
|
||||
Purpose
|
||||
find_package(KF5 REQUIRED COMPONENTS Archive Bookmarks CoreAddons Config ConfigWidgets
|
||||
DBusAddons KIO WidgetsAddons NotifyConfig NewStuff XmlGui Notifications GuiAddons TextWidgets IconThemes Declarative Solid
|
||||
OPTIONAL_COMPONENTS DocTools FileMetaData Crash Purpose)
|
||||
|
||||
OPTIONAL_COMPONENTS
|
||||
DocTools
|
||||
Crash
|
||||
)
|
||||
|
||||
ecm_set_disabled_deprecation_versions(
|
||||
QT ${QT_MIN_VERSION}
|
||||
KF ${KF_DEP_VERSION}
|
||||
)
|
||||
|
||||
# Qt targets
|
||||
find_package(Qt${QT_MAJOR_VERSION}
|
||||
REQUIRED COMPONENTS
|
||||
Core Widgets
|
||||
Svg
|
||||
Quick
|
||||
QuickControls2
|
||||
Concurrent
|
||||
QuickWidgets
|
||||
Multimedia
|
||||
NetworkAuth
|
||||
SvgWidgets
|
||||
Xml
|
||||
# Test
|
||||
)
|
||||
|
||||
if(USE_DBUS)
|
||||
find_package(KF${KF_MAJOR} ${KF_DEP_VERSION} REQUIRED COMPONENTS DBusAddons)
|
||||
find_package(Qt${QT_MAJOR_VERSION} REQUIRED COMPONENTS DBus)
|
||||
endif()
|
||||
# Qt
|
||||
set(QT_MIN_VERSION 5.7.0)
|
||||
find_package(Qt5 REQUIRED COMPONENTS Core DBus Widgets Svg Quick Concurrent QuickWidgets Multimedia)
|
||||
find_package(Qt5 OPTIONAL_COMPONENTS WebKitWidgets QUIET)
|
||||
add_definitions(-DQT_NO_CAST_TO_ASCII -DQT_NO_URL_CAST_FROM_STRING)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt${QT_MAJOR_VERSION}Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
||||
set(DEFAULT_CXX_FLAGS "${DEFAULT_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
||||
|
||||
# MLT
|
||||
find_package(MLT ${MLT_MIN_VERSION} REQUIRED)
|
||||
@@ -148,34 +69,6 @@ set_package_properties(MLT PROPERTIES DESCRIPTION "Multimedia framework"
|
||||
PURPOSE "Required to do video processing")
|
||||
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
|
||||
include(CheckIncludeFiles)
|
||||
check_include_files(malloc.h HAVE_MALLOC_H)
|
||||
@@ -187,14 +80,30 @@ else()
|
||||
set(MLT_PREFIX ${MLT_ROOT_DIR})
|
||||
endif()
|
||||
|
||||
# macOS
|
||||
if(APPLE)
|
||||
set(DATA_INSTALL_PREFIX "")
|
||||
# Optional deps status
|
||||
find_package(KF5 5.23.0 OPTIONAL_COMPONENTS XmlGui QUIET)
|
||||
if(KF5XmlGui_FOUND)
|
||||
message(STATUS "Found KF5 >= 5.23.0 enabling icon coloring")
|
||||
else()
|
||||
set(DATA_INSTALL_PREFIX "/kdenlive")
|
||||
message(STATUS "KF5 < 5.23.0 Disable icon coloring")
|
||||
set(KF5_ICON_COMPATIBILITY TRUE)
|
||||
endif()
|
||||
|
||||
if(KF${KF_MAJOR}DocTools_FOUND)
|
||||
if(KF5FileMetaData_FOUND)
|
||||
message(STATUS "Found KF5 FileMetadata to extract file metadata")
|
||||
set(KF5_FILEMETADATA TRUE)
|
||||
else()
|
||||
message(STATUS "KF5 FileMetadata not found, file metadata will not be available")
|
||||
endif()
|
||||
|
||||
if(KF5Purpose_FOUND)
|
||||
message(STATUS "Found KF5 Purpose, filesharing enabled")
|
||||
set(KF5_PURPOSE TRUE)
|
||||
else()
|
||||
message(STATUS "KF5 Purpose not found, filesharing disabled")
|
||||
endif()
|
||||
|
||||
if(KF5DocTools_FOUND)
|
||||
add_subdirectory(doc)
|
||||
kdoctools_install(po)
|
||||
endif()
|
||||
@@ -215,65 +124,56 @@ if(NOT RELEASE_BUILD AND EXISTS ${CMAKE_SOURCE_DIR}/.git)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(CRASH_AUTO_TEST)
|
||||
if(BUILD_DESIGNERPLUGIN)
|
||||
message(SEND_ERROR "The options CRASH_AUTO_TEST and BUILD_DESIGNERPLUGIN do not work together, disable one of both.")
|
||||
endif()
|
||||
find_package(RTTR 0.9.6 QUIET)
|
||||
if(NOT RTTR_FOUND)
|
||||
message(STATUS "RTTR not found on system, will download source and build it")
|
||||
include(rttr.CMakeLists.txt)
|
||||
endif()
|
||||
if(BUILD_FUZZING)
|
||||
set(ECM_ENABLE_SANITIZERS fuzzer;address)
|
||||
endif()
|
||||
find_package(RTTR 0.9.6 QUIET)
|
||||
if(NOT RTTR_FOUND)
|
||||
message(STATUS "RTTR not found on system, will download source and build it")
|
||||
include(rttr.CMakeLists.txt)
|
||||
endif()
|
||||
|
||||
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||
|
||||
set(FFMPEG_SUFFIX "" CACHE STRING "FFmpeg custom suffix")
|
||||
configure_file(config-kdenlive.h.cmake config-kdenlive.h @ONLY)
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -Wno-suggest-override")
|
||||
|
||||
# Sources
|
||||
add_subdirectory(src)
|
||||
add_subdirectory(renderer)
|
||||
add_subdirectory(thumbnailer)
|
||||
add_subdirectory(data)
|
||||
|
||||
# Install
|
||||
ki18n_install(po)
|
||||
|
||||
if (BUILD_QCH)
|
||||
ecm_install_qch_export(
|
||||
TARGETS Kdenlive_QCH
|
||||
FILE KdenliveQCHTargets.cmake
|
||||
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/kdenlive"
|
||||
COMPONENT Devel
|
||||
)
|
||||
endif()
|
||||
|
||||
include(GNUInstallDirs)
|
||||
install(FILES AUTHORS README.md DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
||||
install(DIRECTORY LICENSES DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
||||
|
||||
ecm_qt_install_logging_categories(
|
||||
EXPORT KDENLIVE
|
||||
FILE kdenlive.categories
|
||||
DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}
|
||||
)
|
||||
install(FILES AUTHORS COPYING README.md DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
||||
install(FILES kdenlive.categories DESTINATION ${KDE_INSTALL_CONFDIR})
|
||||
|
||||
############################
|
||||
# Tests
|
||||
############################
|
||||
|
||||
if(BUILD_TESTING)
|
||||
message(STATUS "Building tests")
|
||||
add_subdirectory(tests)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -fexceptions")
|
||||
include_directories(
|
||||
${CMAKE_BINARY_DIR}
|
||||
${CMAKE_BINARY_DIR}/src
|
||||
${MLT_INCLUDE_DIR}
|
||||
${MLTPP_INCLUDE_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/lib/external
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/lib
|
||||
src)
|
||||
add_executable(runTests ${Tests_SRCS})
|
||||
set_property(TARGET runTests PROPERTY CXX_STANDARD 14)
|
||||
target_link_libraries(runTests kdenliveLib)
|
||||
add_test(runTests runTests -d yes)
|
||||
endif()
|
||||
if(BUILD_FUZZING AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang"))
|
||||
|
||||
if(BUILD_FUZZING)
|
||||
message(STATUS "Building fuzzing")
|
||||
set(CMAKE_CXX_COMPILER /usr/bin/clang++)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDENLIVE_CXX_FLAGS} -fsanitize=fuzzer-no-link,address")
|
||||
add_subdirectory(fuzzer)
|
||||
elseif(BUILD_FUZZING)
|
||||
message(STATUS "Fuzzing build was requested but not enabled because compiler is ${CMAKE_CXX_COMPILER_ID} and not Clang")
|
||||
endif()
|
||||
|
||||
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||
|
||||
# pre-commit hook
|
||||
include(KDEGitCommitHooks)
|
||||
kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
|
||||
|
||||
|
||||
512
COPYING
512
COPYING
@@ -1,232 +1,280 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
“This License” refers to version 3 of the GNU General Public License.
|
||||
|
||||
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
|
||||
|
||||
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
|
||||
|
||||
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
|
||||
|
||||
A “covered work” means either the unmodified Program or a work based on the Program.
|
||||
|
||||
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
|
||||
|
||||
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
|
||||
|
||||
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
|
||||
|
||||
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
|
||||
|
||||
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
|
||||
|
||||
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
|
||||
|
||||
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
|
||||
|
||||
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
|
||||
|
||||
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
|
||||
|
||||
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
350
ChangeLog
Normal file
350
ChangeLog
Normal file
@@ -0,0 +1,350 @@
|
||||
15.08
|
||||
Changes (~450 commits):
|
||||
* New file format
|
||||
- Can load old format but not save to it: no way back
|
||||
wait a bit for big projects!
|
||||
- All data are now in MLT structures
|
||||
should ease exchanges with Shotcut and other editors?
|
||||
* New monitor, using OpenGL & QML
|
||||
- *brings back Movit* (GPU effects), but not mandatory ;)
|
||||
- great *split screen* functionality to tune effect parameter
|
||||
* Completely renewed bin manager (previously named project list)
|
||||
- Allows *adding effects to bin clips*, affecting all timeline instances
|
||||
- Free directory structure
|
||||
- Icon / list / tree views
|
||||
- More clip properties can be changed
|
||||
- Much work to restore all old functions :\
|
||||
* Effects list improvements
|
||||
- improve sorting and marking item as favorite
|
||||
* New audio waveform on timeline (à la Shotcut)
|
||||
making information more visible
|
||||
* New duplicate clip function (cool for titles)
|
||||
* Propose predefined monitor zoom values
|
||||
* Fixed several look issues (sizes, colors, icons...)
|
||||
* Refactoring: replacing XML manipulations by MLT API calls
|
||||
- reduces data duplication: faster, safer...
|
||||
* Automatic builds (CI) on Linux and OSX
|
||||
* Code checked by several static analyzers
|
||||
* Some bugs fixed from 15.04 port (capture, effects, ...)
|
||||
|
||||
15.04
|
||||
Changes:
|
||||
* Port to KDE Frameworks 5
|
||||
* Add ripple delete function
|
||||
* Add stem audio export
|
||||
* Make images sequences generation more convenient
|
||||
* Save and restore title widget size
|
||||
* Start some refactoring
|
||||
* Fix warnings from compiler, static analyzers, execution...
|
||||
|
||||
Bug fix:
|
||||
* #3407 don't copy clips if project is also on removable drive
|
||||
* #3408 crash on selecting clip with grouped effects
|
||||
* #3405 crash on adding 1st clip not matching project profile
|
||||
* #3338 import clip keyframes
|
||||
* #3160 Autosave new projects before saving
|
||||
* #3415 FFmpeg recording freeze
|
||||
|
||||
0.9.10
|
||||
Changes:
|
||||
* handle VBR encoding profiles, and use it!
|
||||
* video stabilizer: added new "vid.stab", removed older ones
|
||||
* environment variable MLT_PREFIX overrides profiles & melt path
|
||||
* several fixes for high dpi screens
|
||||
* change proxy profile, obsolete with libav
|
||||
* add SVG to image formats for slideshows
|
||||
* restore project render bitrate (#3326)
|
||||
* show proxy name in clipproperties
|
||||
* add link to MLT doc in render edit dialog (#3355)
|
||||
|
||||
Bug fix:
|
||||
* update maximum track height (#3241)
|
||||
* resize render path box (#3300)
|
||||
* change transition settings layout (#3336)
|
||||
* heat colormap in spectrogram (#3142)
|
||||
* fix clip monitor switch on proxy creation end (#3308)
|
||||
* fix clip jobs (stabilize) operating on proxies (#3337)
|
||||
* fix timeline corruption by clip resize end + zoom change
|
||||
* fix title clip duration not taken into account (#3309)
|
||||
* fix timeline thumbs flicker when fully zoomed (#3247)
|
||||
* fix thumbnailer aspect ratio
|
||||
* fix fades for split audio (#3323)
|
||||
* fix transcoding (#3334)
|
||||
* fix 'Clip in Timeline' when project monitor is inactive (#3261)
|
||||
* fix audio analysis (use dynamic memory instead of stack)
|
||||
* fix render end notification
|
||||
* fix render timecode overlay (#3260)
|
||||
* set tooltip for monitor pause button (#3256)
|
||||
* fix slideshow clips adding 1 frame (#3289)
|
||||
* fix archive project icon (#3325)
|
||||
* fix compilation on armhf (#3345)
|
||||
* don't allow creating keyframes for "fixed" filters (#2956)
|
||||
* re-enable compilation on KDE < 4.5 (squeeze) (#3319)
|
||||
* re-enable Clip menu (fix bug #3347)
|
||||
* fix screen recording failure (#3358)
|
||||
* fix crash detected with undo/redo (bug #3240)
|
||||
* fix crash cutting group on a clip edge (#3312, #3350)
|
||||
* fix crash on image sequence (#3331)
|
||||
* fix crash in tracks config editor (#3367)
|
||||
* fix crash on audiofiles
|
||||
* fix crash on opening project file with images
|
||||
* fix warnings from static analyzers (cppcheck, krazy)
|
||||
* sort source files, easier to understand (for new developers)
|
||||
|
||||
0.9.8
|
||||
Changes:
|
||||
* Clean encoding profiles using MLT presets & profiles
|
||||
* Fades ui: video instead of audio on AV clips
|
||||
* Support a custom suffix for FFmpeg binaries (mostly for packagers)
|
||||
* Make audio align work asynchronously
|
||||
* Remove the MLT processing threads option that never really worked
|
||||
* Copy proxies with 'move project'
|
||||
* Add support for JogShuttle on newer systems, make shuttle device selection more straightforward, add ProV2 keys
|
||||
|
||||
Bug fix:
|
||||
* Code cleanup (use const ref, fix includes, mem leaks, optimize...)
|
||||
* Fix warnings from gcc, cppcheck, clang, scan-build: fixes many crashes & leaks
|
||||
* Fix keyframing messed up for some effects
|
||||
* Fix timeline corruption when trying to move clip before 0
|
||||
* Fix crash when closing title widget
|
||||
* Fix thumbnails for image clips in timeline
|
||||
* Fix crash on quick undo/redo (#3240)
|
||||
* Fix multithreading (#3186)
|
||||
* Fix some problems with transitions keyframes
|
||||
* Fix scopes (#3052)
|
||||
|
||||
0.9.6
|
||||
|
||||
Changes:
|
||||
* New Median filter from Marko Cebokli
|
||||
* Show project duration in status bar
|
||||
* Add reverse clip to clip actions (#2933)
|
||||
* Make audio / video bitrate easily configurable in custom render profiles (#3012)
|
||||
* Implement deinterlacer and rescale options for MLT consumer
|
||||
* Automatic recovery of corrupted files produced by Kdenlive 0.9.4
|
||||
* Make monitor ruler slightly bigger so it's easier to click for seeking
|
||||
* Show clip size & fps in project tree tooltip
|
||||
* Allow retrieval of metadata created by Magic Lantern for canon cams
|
||||
|
||||
Bug fix:
|
||||
* Fix font GUI issue (#3049)
|
||||
* Fixes timeline corruption by spacer tool
|
||||
* Correctly handle unsupported filters
|
||||
* Remove space from filename start / end in render dialog (#3018)
|
||||
* Fix possible crash when changing speed effect
|
||||
* Fix vstab angle parameter (#2955)
|
||||
* Fix playlist corruption & crash when moving clip (#3046)
|
||||
* Fix moving transition sometimes losing properties (#3025)
|
||||
* Fix crash in title widget (#3032)
|
||||
* Fix crash when doing clip resize and clicking item quickly
|
||||
* Fix wrong group moving when groups overlap
|
||||
* Set document as modified when changing project metadata (#2996)
|
||||
* Don't corrupt project when adding a title clip and a transition already is in place
|
||||
* Fix monitor displaying corrupt image on startup (#2992)
|
||||
* Fix clip monitor not activated on open (#2992)
|
||||
* Fix cutting of geometry keyframes (like pan & zoom) (#2991)
|
||||
* Optimize jogshuttle code
|
||||
* Fix metadata not properly set for project (#2996)
|
||||
* Fix "Clip in project tree" in groups (#2781)
|
||||
* Fix keyframes when undoing a clip / group cut
|
||||
* Fix double click in a timeline clip to add keyframe
|
||||
* Warn before overwriting stabilized clip
|
||||
* Fix monitor focus on ruler wheel event
|
||||
* Fix proxy of playlist aspect ratio broken on some locales
|
||||
* Fix Coverity warnings from v0.9.4
|
||||
* Fix crash when opening invalid file from command line (#2984)
|
||||
* Fix DVD chapters broken when using an intro movie, show chapters in monitor ruler
|
||||
* Fix small UI bugs in title widget (#1257)
|
||||
* Fix timeline seek sometimes not refreshing on last frame of the seek, small update for monitor ruler colors
|
||||
* Small cleanup in render widget, fix error message (no matching profile) sometimes appearing when it should not
|
||||
* Fix monitor timecode not visible with some window decorations (#2979)
|
||||
* Fix moving guide bug
|
||||
* Fix some clips metadata corrupting project file (#2976)
|
||||
* Fix possible crash on track deletion (#2967)
|
||||
* Fix compilation on OSX (moc issue)
|
||||
* Fix keyframe line not painted over clips in timeline
|
||||
|
||||
0.9.4
|
||||
* Fix color parameter in some effects not working correctly (#2644)
|
||||
* Fix V4l licensing issue (#2632)
|
||||
* Fix keyframes lost / broken when pasting an effect
|
||||
|
||||
0.9.2
|
||||
* Fix firewire capture (preview not showing)
|
||||
* Fix freeze when reloading previously missing clip
|
||||
* Fade effects lost when moving / resizing clip
|
||||
* Undoing change in clip crop start breaking clip
|
||||
* Make disabling of track effects possible
|
||||
* Fix slideshow clips not working
|
||||
* Fix crash on composite transition
|
||||
* Fix crash when opening stop motion widget
|
||||
* Fix rendering of projects created in another locale
|
||||
|
||||
0.9
|
||||
* Fix monitor effect scene sometimes forcing monitor minimum size
|
||||
* Improve detection of locale issues (default to POSIX when there is a locale conflict on the system)
|
||||
* Improve timeline operation for small clips (disable resizing, only allow move)
|
||||
* Add background color parameter to "Rotate" and "Pan and Zoom" effects
|
||||
* Allow to scroll using the mouse wheel in monitor editing scene
|
||||
* Zoom to mouse when using CTRL + mouse wheel in monitor editing scene
|
||||
* Add support for new slope mode in "Color Selection" effect to allow smooth alpha transition
|
||||
* Introduce grouping of effects; groups can also be saved
|
||||
* Allow dragging an effect to another clip/track
|
||||
* Allow record monitor to go fullscreen
|
||||
* Image sequences can now start at an arbitrary frame (#2508)
|
||||
* Add automatic clip alignment based on audio (experimental, has to be manually enabled)s
|
||||
* Allow archiving for offline use (only archive proxies)
|
||||
* Offline editing: Allow working on project with only proxies available (#2509)
|
||||
* Allow rendering to another framerate
|
||||
* Check for missing locale and ask to install instead of opening corrupted project
|
||||
* Allow to open project files manually extracted from archived project
|
||||
* Support dropping a folder in the project tree (#1288)
|
||||
* Add "select all clips in track" and "select all clips in timeline" features (#1950)
|
||||
* Put audio effects in subcategories to avoid uberlong menus (#2436)
|
||||
* Support for project metadata (can be embedded in rendered file)
|
||||
* Add Online Resource Widget allowing easy search and download of online services (freesound, openclipart, archive.org)
|
||||
* Introduce MLT clip analysis to get auto normalize data in sox gain effect
|
||||
* Connect recording to audio scopes
|
||||
* Add audio only recording (works while playing)
|
||||
* Add extract zone function: part of clip is copied to new file without re-encoding
|
||||
* Introduce generic job framework to process clips
|
||||
* Improve the Choose color widget: Use less space and make it easier to pick the average color value from an area
|
||||
* Add GUI for effect Dynamic Text: Allows to display timecode/framecount and other data
|
||||
* Rework effect stack: All effects are shown at once and are collapsible
|
||||
* Add two different video stabilizers
|
||||
* Add IIR Blur GUI
|
||||
* Add date column to project tree
|
||||
|
||||
* Fix clip move sometimes giving error when it should work
|
||||
* Fix custom effects not considering capital letters in name (#2580)
|
||||
* Fix script rendering when script name contains whitespace
|
||||
* Ensure clip in project tree is visible after rename (scroll if necessary) (#2563)
|
||||
* Fix monitor scene never resetting scrollbars
|
||||
* Fix issues with transitions when inserting track (#2477)
|
||||
* Fix some GUI elements not responding to color theme change
|
||||
* Do not hide render profile list when there is only one item to avoid confusion (#2543)
|
||||
* Fix consecutive error messages overwriting each other (#2519)
|
||||
* Fix crash when editing properties of several missing clips
|
||||
* Fix vectorscope for 24b RGB images (#2478)
|
||||
* Fix archiving sometimes not saving playlist clips and subclips (#2475)
|
||||
* Fix archiving feature not saving playlist clips and slowmotion clips inside them (#2475)
|
||||
* Fix crash recovery feature issues with long or non UTF-8 filenames (#2441), (#2450)
|
||||
* Fix rendering jobs sometimes not starting
|
||||
* Fix crash on proxy creation (concurrency issue) (#2471)
|
||||
* Fix zone playing (#2468)
|
||||
* Fix click on monitor sometimes not triggering play
|
||||
* Fix crash when moving a folder and a clip in project tree (#2458)
|
||||
* Fix color change not working in title widget (#2459)
|
||||
* Fix slideshow clips created with invalid frame duration
|
||||
* Fix profile warning with clips that have 1088 pixels height
|
||||
* Fix unnecessary proxy reload on document load
|
||||
* Fix detection of broken render scripts
|
||||
|
||||
0.8.2.1
|
||||
* Fix title text oultine transparency not working
|
||||
* Make titler window fit on smaller resolutions (1024x768)
|
||||
* Fix corruption when undoing and redoing a transition add + move
|
||||
* Fix possible crash in thumbnails
|
||||
* Fix possible crashes in clip transcoding and improve feedback when failing
|
||||
* Various small optimizations (unnecessary clip reloads)
|
||||
* Fix timecode widget hard to edit and sometimes giving random values
|
||||
* Workaround locale issue ahappening when system C locale and Qt's locale did not give the same numeric separator
|
||||
* Fix audio thumbnail concurrency issue
|
||||
* Fix various video thumbnails issues (don't load several times the same thumb, load all of them, ...)
|
||||
* Fix crash when opening a file dialog on KDE < 4.5
|
||||
* Fix various proxy issues (missing extension, concurrency, disabling broken proxy, ...)
|
||||
* Fix startup crash caused by invalid parsing of v4l data
|
||||
* Fix project tree disabled after loading some projects / creating new one
|
||||
* Fix corrupted timeline / monitor timecode
|
||||
* Fix search path for Luma files when missing
|
||||
|
||||
0.8.2
|
||||
* Load zone thumbnails from disk if available.
|
||||
* Optimise document loading.
|
||||
* In case of missing or invalid clips, open only one dialog box instead of one for each clip.
|
||||
* Display proxy creation progress in project tree.
|
||||
* Improve way of picking an average color of an area.
|
||||
* Make audio bitrate in render dialog selectable.
|
||||
* Add support for handling different versions of filters and add rules to convert between them.
|
||||
* Move all cached data in one operation, so that user does not get one dialog box for each file in case of duplicates. (#2297)
|
||||
* Show filter version in filter info box.
|
||||
* When multiple clips are selected do not allow resizing, but moving only. (#2257)
|
||||
* Add remux with MKV transcode preset.
|
||||
* Make audio only render profiles faster by telling ffmpeg to skip video.
|
||||
* Open documents using a locale different to the system as read only.
|
||||
* Replace locale-dependent comma with slash in geometry value.
|
||||
* Add Kdenlive manual converted from UserBase QuickStart page.
|
||||
* Improve handling of missing luma files. (#2216)
|
||||
* Remove the "avformat-novalidate" trick for faster loading, caused crash. (#2205)
|
||||
* Allow to assign a shortcut to usage of proxies in project.
|
||||
* Use separate thread for generation of timeline thumbnails when zoom is at frame level to keep UI responsive.
|
||||
* Allow to use JScript in render profile parameter values. Values that need evaluation need to be indicated by '%'.
|
||||
* Check for missing proxies on document opening.
|
||||
* Check document for invalid (overlapping) transitions.
|
||||
* Check for duration mismatch in clip producers when opening a document (can cause corruption).
|
||||
* Automatically create backups of the project file; they can be restored in a recovery dialog.
|
||||
* Allow to manually edit video4linux capture profile.
|
||||
* Allow to store presets for proxy creation parameters.
|
||||
* Enable proxies for playlist clips (*.mlt, *.kdenlive).
|
||||
* Directly encode capture from Decklink card to make it usable in Kdenlive.
|
||||
* Allow to use bitrate different from presets in render dialog.
|
||||
* Whole projects (including all necessary files) can be archieved into a directory or file.
|
||||
* Allow use of different ffmpeg preset for 1st and 2nd render pass.
|
||||
* Notes widget: context menu now allows to insert clickable timecode to make easy reference to some place in the project.
|
||||
|
||||
* Fix encoding of dvd vob menu file.
|
||||
* Fix possible crash when doing fast start/stop.
|
||||
* Fix multiple concurrency crashes related to thumbnail and proxy creation.
|
||||
* Fix name of dvgrab captured file. (#2344)
|
||||
* Fix issues with simultaneous 2-pass rendering (x264). (#2338)
|
||||
* Fix rendering progress not shown if multiple copies of Kdenlive are open. (#1265)
|
||||
* Fix DVD chapters discarded when opening from render dialog. (#2335)
|
||||
* Fix possible corruption caused by vertical offset of transitions in timeline.
|
||||
* Fix aspect ratio of thumbnails to correctly use the project's arpect ratio.
|
||||
* Fix bitrate broken when editing render profile or making it a favorite. (#2321)
|
||||
* Fix audio issues in rendered file when using a recent ffmpeg version by replacing 'b' with 'vb' (ffmpeg bitrate parameter). (#2318)
|
||||
* Fix rendering to Flash could be broken by setting the number of encoder threads. (#2312)
|
||||
* Fix DVD wizard losing chapters data when switching to menu page.
|
||||
* Fix previewing of affine transitions with transparent png.
|
||||
* Fix timeline corruption when using 'Remove space' tool (transitions could overlap).
|
||||
* Fix 'adjust to original size' and 'fit to width/height' for title and color clips in geometry widget (pan and zoom, composite, affine).
|
||||
* Fix vorbis rendering by setting the audio quality (aq).
|
||||
* Rotoscoping: do not allow to add keyframes until initial spline is created to avoid corruptions.
|
||||
* Fix possible crash in DVD wizard chapters. (#2264)
|
||||
* Do not duplicate effect stack after split audio but move audio effects only.
|
||||
* Fix issues related to the usage of comma as numeric separator in some locales.
|
||||
* Fix build on GNU/kFreeBSD.
|
||||
* Fix cursor not visible in title widget. (#2231)
|
||||
* Fix aspect ratio in title widget background image. (#2225)
|
||||
* Fix layout in save profile dialog. (#2224)
|
||||
* Fix timeline corruption because resizing a clip end could overlap another clip in some cases.
|
||||
* Fix last keyframe for composite transition (and other geometry effects) inserted one frame after the end of the transition.
|
||||
* Prevent crash when deleting a clip while playing. (#2200)
|
||||
* Disable save action if we are in the same state as last save.
|
||||
* Fix pan and zoom keyframes lost after clip resize. (#2210)
|
||||
* Fix mouse wheel in slider section of (effect) parameters with a large range (> 1000).
|
||||
* Fix GUI setup issues with some list parameters (for effects).
|
||||
* Fix timecode widget not communicating changes upon focus leave.
|
||||
* Fix list of effects in effect stack taking up to much space by default.
|
||||
* Fix transition track not correctly saved. (#2187)
|
||||
* Fix "save zone" saving proxy instead of real clip. (#2184)
|
||||
* Fix freeze when saving while timeline is at maximum zoom. (#2174)
|
||||
* Fix crash when deleting a track and having an audio clip on last track. (#2168)
|
||||
* Do not allow to create overlapping transitions that could corrupt timeline. (#1901)
|
||||
* Fix sometimes effects were missing. (#2152)
|
||||
* Fix crash in histogram scope.
|
||||
* Fix multiple possible timeline corruptions. (#2157)
|
||||
* Do not allow rendering to a frame rate different than current project's profile. (#2138)
|
||||
* Fix DVD menu entries hidden under some circumstances.
|
||||
* Fix channels in audio thumbnails being displaced by one frame. (#1976)
|
||||
* Fix possible crash caused by audio thumbnails. (#2147)
|
||||
* Fix possible freeze and error on project opening. (#2144)
|
||||
* Fix progress bar running twice on 2pass render.
|
||||
* Fix proxy file path issue on system installation.
|
||||
* Use luma as default channel for levels effect.
|
||||
* Fix handling of proxies when duration != duration of original clip.
|
||||
* Fix filename encoding problem in renderer. (#2110)
|
||||
* Fix user specified CFLAGS ignored. (#2108)
|
||||
|
||||
0.8
|
||||
See http://kdenlive.org/discover/0.8
|
||||
@@ -1,73 +0,0 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -1,9 +0,0 @@
|
||||
Copyright (c) <year> <owner>
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
@@ -1,11 +0,0 @@
|
||||
Copyright (c) <year> <owner>. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
@@ -1,7 +0,0 @@
|
||||
Boost Software License - Version 1.0 - August 17th, 2003
|
||||
|
||||
Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:
|
||||
|
||||
The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
@@ -1,170 +0,0 @@
|
||||
Creative Commons Attribution-ShareAlike 4.0 International
|
||||
|
||||
Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.
|
||||
|
||||
Using Creative Commons Public Licenses
|
||||
|
||||
Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses.
|
||||
|
||||
Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors.
|
||||
|
||||
Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described.
|
||||
|
||||
Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public.
|
||||
|
||||
Creative Commons Attribution-ShareAlike 4.0 International Public License
|
||||
|
||||
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
|
||||
|
||||
Section 1 – Definitions.
|
||||
|
||||
a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
|
||||
|
||||
b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
|
||||
|
||||
c. BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License.
|
||||
|
||||
d. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
|
||||
|
||||
e. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
|
||||
|
||||
f. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
|
||||
|
||||
g. License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike.
|
||||
|
||||
h. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
|
||||
|
||||
i. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
|
||||
|
||||
j. Licensor means the individual(s) or entity(ies) granting rights under this Public License.
|
||||
|
||||
k. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
|
||||
|
||||
l. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
|
||||
|
||||
m. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.
|
||||
|
||||
Section 2 – Scope.
|
||||
|
||||
a. License grant.
|
||||
|
||||
1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
|
||||
|
||||
A. reproduce and Share the Licensed Material, in whole or in part; and
|
||||
|
||||
B. produce, reproduce, and Share Adapted Material.
|
||||
|
||||
2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
|
||||
|
||||
3. Term. The term of this Public License is specified in Section 6(a).
|
||||
|
||||
4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
|
||||
|
||||
5. Downstream recipients.
|
||||
|
||||
A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
|
||||
|
||||
B. Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply.
|
||||
|
||||
C. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
|
||||
|
||||
6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
|
||||
|
||||
b. Other rights.
|
||||
|
||||
1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
|
||||
|
||||
2. Patent and trademark rights are not licensed under this Public License.
|
||||
|
||||
3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.
|
||||
|
||||
Section 3 – License Conditions.
|
||||
|
||||
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
|
||||
|
||||
a. Attribution.
|
||||
|
||||
1. If You Share the Licensed Material (including in modified form), You must:
|
||||
|
||||
A. retain the following if it is supplied by the Licensor with the Licensed Material:
|
||||
|
||||
i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
|
||||
|
||||
ii. a copyright notice;
|
||||
|
||||
iii. a notice that refers to this Public License;
|
||||
|
||||
iv. a notice that refers to the disclaimer of warranties;
|
||||
|
||||
v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
|
||||
|
||||
B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
|
||||
|
||||
C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
|
||||
|
||||
2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
|
||||
|
||||
3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
|
||||
|
||||
b. ShareAlike.In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
|
||||
|
||||
1. The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License.
|
||||
|
||||
2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
|
||||
|
||||
3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
|
||||
|
||||
Section 4 – Sui Generis Database Rights.
|
||||
|
||||
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
|
||||
|
||||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;
|
||||
|
||||
b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
|
||||
|
||||
c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
|
||||
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
|
||||
|
||||
Section 5 – Disclaimer of Warranties and Limitation of Liability.
|
||||
|
||||
a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.
|
||||
|
||||
b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.
|
||||
|
||||
c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
|
||||
|
||||
Section 6 – Term and Termination.
|
||||
|
||||
a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
|
||||
|
||||
b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
|
||||
|
||||
1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
|
||||
|
||||
2. upon express reinstatement by the Licensor.
|
||||
|
||||
c. For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
|
||||
|
||||
d. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
|
||||
|
||||
e. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
|
||||
|
||||
Section 7 – Other Terms and Conditions.
|
||||
|
||||
a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
|
||||
|
||||
b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
|
||||
|
||||
Section 8 – Interpretation.
|
||||
|
||||
a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
|
||||
|
||||
b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
|
||||
|
||||
c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
|
||||
|
||||
d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
|
||||
|
||||
Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.
|
||||
|
||||
Creative Commons may be contacted at creativecommons.org.
|
||||
@@ -1,121 +0,0 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
CC0 1.0 Universal
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER.
|
||||
|
||||
Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
||||
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following:
|
||||
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose.
|
||||
|
||||
4. Limitations and Disclaimers.
|
||||
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document.
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law.
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work.
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work.
|
||||
@@ -1,117 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification follow.
|
||||
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
one line to give the program's name and an idea of what it does. Copyright (C) yyyy name of author
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
signature of Ty Coon, 1 April 1989 Ty Coon, President of Vice
|
||||
@@ -1,232 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
“This License” refers to version 3 of the GNU General Public License.
|
||||
|
||||
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
|
||||
|
||||
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
|
||||
|
||||
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
|
||||
|
||||
A “covered work” means either the unmodified Program or a work based on the Program.
|
||||
|
||||
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
|
||||
|
||||
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
|
||||
|
||||
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
|
||||
|
||||
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
|
||||
|
||||
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
|
||||
|
||||
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
|
||||
|
||||
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
|
||||
|
||||
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
|
||||
|
||||
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
|
||||
|
||||
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
@@ -1,232 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
“This License” refers to version 3 of the GNU General Public License.
|
||||
|
||||
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
|
||||
|
||||
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
|
||||
|
||||
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
|
||||
|
||||
A “covered work” means either the unmodified Program or a work based on the Program.
|
||||
|
||||
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
|
||||
|
||||
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
|
||||
|
||||
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
|
||||
|
||||
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
|
||||
|
||||
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
|
||||
|
||||
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
|
||||
|
||||
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
|
||||
|
||||
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
|
||||
|
||||
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
|
||||
|
||||
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
@@ -1,71 +0,0 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license document.
|
||||
|
||||
4. Combined Works.
|
||||
You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
|
||||
@@ -1,304 +0,0 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license document.
|
||||
|
||||
4. Combined Works.
|
||||
You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
“This License” refers to version 3 of the GNU General Public License.
|
||||
|
||||
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
|
||||
|
||||
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
|
||||
|
||||
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
|
||||
|
||||
A “covered work” means either the unmodified Program or a work based on the Program.
|
||||
|
||||
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
|
||||
|
||||
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
|
||||
|
||||
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
|
||||
|
||||
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
|
||||
|
||||
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
|
||||
|
||||
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
|
||||
|
||||
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
|
||||
|
||||
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
|
||||
|
||||
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
|
||||
|
||||
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
@@ -1,12 +0,0 @@
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License as
|
||||
published by the Free Software Foundation; either version 3 of
|
||||
the license or (at your option) at any later version that is
|
||||
accepted by the membership of KDE e.V. (or its successor
|
||||
approved by the membership of KDE e.V.), which shall act as a
|
||||
proxy as defined in Section 14 of version 3 of the license.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
@@ -1,12 +0,0 @@
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 3 of the license or (at your option) any later version
|
||||
that is accepted by the membership of KDE e.V. (or its successor
|
||||
approved by the membership of KDE e.V.), which shall act as a
|
||||
proxy as defined in Section 6 of version 3 of the license.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
@@ -1,9 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) <year> <copyright holders>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
10
Messages.sh
10
Messages.sh
@@ -1,11 +1,9 @@
|
||||
#!/bin/sh
|
||||
# SPDX-FileCopyrightText: None
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#!bin/sh
|
||||
|
||||
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 `find $kdenlive_subdirs -name \*.rc -a ! -name encodingprofiles.rc -a ! -name camcorderfilters.rc -a ! -name externalproxies.rc -o -name \*.ui` >> rc.cpp
|
||||
$EXTRACTRC --tag=name --tag=description --tag=label --tag=comment --tag=paramlistdisplay data/effects/*.xml data/kdenliveeffectscategory.rc >> rc.cpp
|
||||
$EXTRACTRC `find $kdenlive_subdirs -name \*.rc -a ! -name encodingprofiles.rc -a ! -name camcorderfilters.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` *.cpp -o $podir/kdenlive.pot
|
||||
rm -f rc.cpp
|
||||
|
||||
30
README.md
30
README.md
@@ -2,42 +2,26 @@
|
||||
|
||||
# About Kdenlive
|
||||
|
||||
[Kdenlive](https://kdenlive.org) is a Free and Open Source video editing application, based on MLT Framework and KDE Frameworks 6. It is distributed under the [GNU General Public License Version 3](https://www.gnu.org/licenses/gpl-3.0.en.html) or any later version that is accepted by the KDE project.
|
||||
[Kdenlive](https://kdenlive.org) is a Free and Open Source video editing application, based on MLT Framework and KDE Frameworks 5. It is distributed under the GNU General Public Licence Version 2.
|
||||
|
||||
# Building from source
|
||||
# Builing from source
|
||||
|
||||
[Instructions to build Kdenlive](dev-docs/build.md) are available in the dev-docs folder.
|
||||
|
||||
# Testing Kdenlive via Nightly Builds
|
||||
|
||||
- AppImage (Linux): https://cdn.kde.org/ci-builds/multimedia/kdenlive/master/linux/
|
||||
- Flatpak (Linux):
|
||||
- Add the kde flatpak repository (if not already done) by typing `flatpak remote-add --if-not-exists kdeapps --from https://distribute.kde.org/kdeapps.flatpakrepo` on a command line. (This step may be optional in your version of Flatpak.)
|
||||
- Install kdenlive nightly with `flatpak install kdeapps org.kde.kdenlive`.
|
||||
- Use `flatpak update` to update if the nightly is already installed.
|
||||
- _Attention! If you use the stable kdenlive flatpak already, the `*.desktop` file (e.g. responsible for start menu entry) is maybe replaced by the nightly (and vice versa). You can still run the stable version with `flatpak run org.kde.kdenlive/x86_64/stable` and the nightly with `flatpak run org.kde.kdenlive/x86_64/master` (replace `x86_64` by `aarch64` or `arm` depending on your system)_
|
||||
- Windows: https://cdn.kde.org/ci-builds/multimedia/kdenlive/master/windows/
|
||||
- macOS x86: https://cdn.kde.org/ci-builds/multimedia/kdenlive/master/macos-x86_64/
|
||||
- macOS ARM: https://cdn.kde.org/ci-builds/multimedia/kdenlive/master/macos-arm64/
|
||||
|
||||
*Note * - nightly/daily builds are not meant to be used in production.*
|
||||
[Instructions to build Kdenlive](https://community.kde.org/Kdenlive/Development) are available on the KDE wiki.
|
||||
|
||||
# Contributing to Kdenlive
|
||||
|
||||
Please note that Kdenlive's Github repo is just a mirror: read [this explanation for more details](https://community.kde.org/Infrastructure/Github_Mirror).
|
||||
|
||||
The prefered way of submitting patches is a merge request on the [KDE GitLab on invent.kde.org](https://invent.kde.org/-/ide/project/multimedia/kdenlive): if you are not familar with the process there is a [step by step instruction on how to submit a merge reqest in KDE context](https://community.kde.org/Infrastructure/GitLab#Submitting_a_Merge_Request).
|
||||
Please note that Kdenlive's Github repo is just a mirror: see [the detailed explanations on how to submit patches](https://community.kde.org/Infrastructure/Github_Mirror).
|
||||
|
||||
We welcome all feedback and offers for help!
|
||||
|
||||
* Talk about us!
|
||||
* [Report bugs](https://kdenlive.org/en/bug-reports/) you encounter (if not already done)
|
||||
* [Report bugs](https://bugs.kde.org) you encounter (if not already done)
|
||||
* Help other users [on the forum](http://forum.kde.org/viewforum.php?f=262) and bug tracker
|
||||
* [Help to fill the manual](https://community.kde.org/Kdenlive/Workgroup/Documentation)
|
||||
* [Help to fill the manual](http://userbase.kde.org/Kdenlive)
|
||||
* Complete and check [application and documentation translation](http://l10n.kde.org)
|
||||
* Prepare video tutorials (intro, special tricks...) in your language
|
||||
and send us a link to add in homepage or doc
|
||||
* Detail improvement suggestions
|
||||
we don't test every (any?) other video editor, so give precise explanations
|
||||
* Code! Help fixing bugs, improving usability, optimizing, porting...
|
||||
register on KDE infrastructure, study its guidelines, and pick from roadmap. See [here](dev-docs/contributing.md) for more information
|
||||
register on KDE infrastructure, study its guidelines, and pick from roadmap:
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
SPDX-FileCopyrightText: none
|
||||
SPDX-License-Identifier: CC0-1.0
|
||||
265
REUSE.toml
265
REUSE.toml
@@ -1,265 +0,0 @@
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
# SPDX-FileCopyrightText: None
|
||||
|
||||
version = 1
|
||||
SPDX-PackageName = "Kdenlive"
|
||||
SPDX-PackageSupplier = "kdenlive@kde.org"
|
||||
SPDX-PackageDownloadLocation = "https://invent.kde.org/multimedia/kdenlive"
|
||||
|
||||
[[annotations]]
|
||||
path = ["data/effects/**.xml", "data/transitions/**.xml", "data/generators/**.xml"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "none"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = ["data/effects/**/CMakeLists.txt", "data/effects/CMakeLists.txt"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "none"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/effects/README.md"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Julius Künzel"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = ["data/lumas/PAL/**", "data/lumas/HD/**"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Massimo Stella"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/luts/**.cube"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "None"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/knewstuff/**.knsrc"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Kdenlive translators"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/icons/breeze/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "2014 Uri Herrera <uri_herrera@nitrux.in> and others"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = ["data/icons/**.png", "data/icons/kdenlive.ico", "data/icons/sc-apps-kdenlive.svgz", "data/icons/sc-mimetypes-application-x-kdenlivetitle.svgz"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Nara Oliveira and Farid Abdelnour"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/icons/sc-mimetypes-application-x-kdenlive.svgz"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Vincent Pinon"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/icons/**.svg"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Julius Künzel"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/icons/sc-mimetypes-video-mlt-playlist.svgz"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "The Oxygen Icon Theme"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/resourceproviders/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "2021 Julius Künzel"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/titles/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Marco Gittler"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[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"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/pics/breeze-light/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/pics/kdenlive-logo.png"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Nara Oliveira and Farid Abdelnour"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/pics/splash-background.png"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Farid Abdelnour"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/pics/kde-logo.png"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "KDE project"
|
||||
SPDX-License-Identifier = "LGPL-3.0-or-later"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/profiles.xml"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Vincent Pinon, Farid Abdelnour, Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/profiles/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = ["data/excluded_effects.txt", "data/excluded_transitions.txt", "data/included_effects.txt", "data/included_transitions.txt"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle, Massimo Stella"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/scripts/**.txt"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "2024 Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/man/kdenlive**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Mads Bondo Dydensborg"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/preferred_effects.txt"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle, Juku Trump"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/org.kde.kdenlive.**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Kdenlive translators"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/meta_magiclantern.png"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Magic Lantern Project"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/kdenlive**.notifyrc"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle, Kdenlive translators"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = ["data/slideanimations.rc", "data/kdenlivedefaultlayouts.rc", "data/kdenlivetranscodingrc"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/kdenliveeffectscategory.rc"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Massimo Stella"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "data/shortcuts/Premiere"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Bruno Santos"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = [".flatpak-manifest.json", "packaging/flatpak/python-modules.json", "packaging/flatpak/org.kde.kdenlive-**.json"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "none"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "dev-docs/**.md"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "2020 Kdenlive contributors"
|
||||
SPDX-License-Identifier = "CC-BY-SA-4.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "doc/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "2020 Kdenlive contributors"
|
||||
SPDX-License-Identifier = "CC-BY-SA-4.0"
|
||||
|
||||
[[annotations]]
|
||||
path = ["src/qml/qmldir"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "None"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "src/uiresources.qrc"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Julius Künzel, Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = ["src/org.kdenlive.MainWindow.xml", "src/mlt_config.h.in", "src/kdenliveui.rc", "src/kdenlivesettings.kcfg"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "po/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Kdenlive translators (see each file for details)"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = "tests/dataset/**"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle, Eric Jiang"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "tests/small.mkv"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "None"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = ["thumbnailer/mltpreview.json", "thumbnailer-deprecated/mltpreview.desktop"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Kdenlive translators"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
|
||||
[[annotations]]
|
||||
path = ["suppressions.txt", ".mailmap"]
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "None"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
[[annotations]]
|
||||
path = "config-kdenlive.h.cmake"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Jean-Baptiste Mardelle, Alberto Villa"
|
||||
SPDX-License-Identifier = "BSD-2-Clause"
|
||||
|
||||
[[annotations]]
|
||||
path = "snapcraft.yaml"
|
||||
precedence = "aggregate"
|
||||
SPDX-FileCopyrightText = "Scarlett Moore"
|
||||
SPDX-License-Identifier = "GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL"
|
||||
@@ -1,7 +1,6 @@
|
||||
# cmake macro to find DrMinGW Windows crash handler
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2018 Vincent Pinon <vpinon@kde.org>
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# copyright (c) 2018, Vincent Pinon <vpinon@kde.org>
|
||||
#
|
||||
# once done this will define:
|
||||
#
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# cmake macro to find LibV4L2
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2009 Jaroslav Reznik <jreznik@redhat.com>
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright (c) 2009, Jaroslav Reznik <jreznik@redhat.com>
|
||||
#
|
||||
# Once done this will define:
|
||||
#
|
||||
# LIBV4L2_FOUND - System has LibV4L2
|
||||
|
||||
@@ -1,19 +1,12 @@
|
||||
# Find the MLT includes and libraries
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2007-2012 Jean-Baptiste Mardell <jb@kdenlive.org>
|
||||
# SPDX-FileCopyrightText: 2012 Alberto Villa <avilla@FreeBSD.org>
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
# Copyright (c) 2007-2012 Jean-Baptiste Mardell (jb@kdenlive.org)
|
||||
# Copyright (c) 2012 Alberto Villa <avilla@FreeBSD.org>
|
||||
#
|
||||
# Redistribution and use is allowed according to the terms of the BSD license.
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
pkg_check_modules(PC_MLT mlt++-7)
|
||||
|
||||
# Workaround cmake 3.17 issue (dropped .dll extension for library search)
|
||||
if(WIN32)
|
||||
list(INSERT CMAKE_FIND_LIBRARY_SUFFIXES 0 .dll)
|
||||
endif()
|
||||
pkg_check_modules(PC_MLT mlt++)
|
||||
|
||||
find_path(MLT_INCLUDE_DIR
|
||||
NAMES framework/mlt.h
|
||||
@@ -23,11 +16,11 @@ find_path(MLT_INCLUDE_DIR
|
||||
PATHS
|
||||
/usr/local/include
|
||||
/usr/include
|
||||
PATH_SUFFIXES mlt-7
|
||||
PATH_SUFFIXES mlt
|
||||
)
|
||||
|
||||
find_library(MLT_LIBRARIES
|
||||
NAMES mlt-7
|
||||
NAMES mlt
|
||||
HINTS
|
||||
${PC_MLT_LIBDIR}
|
||||
${PC_MLT_PREFIX}/lib
|
||||
@@ -44,11 +37,10 @@ find_path(MLTPP_INCLUDE_DIR
|
||||
PATHS
|
||||
/usr/local/include
|
||||
/usr/include
|
||||
PATH_SUFFIXES mlt-7
|
||||
)
|
||||
|
||||
find_library(MLTPP_LIBRARIES
|
||||
NAMES mlt++-7
|
||||
NAMES mlt++
|
||||
HINTS
|
||||
${PC_MLT_LIBDIR}
|
||||
${PC_MLT_PREFIX}/lib
|
||||
|
||||
@@ -1,53 +1,39 @@
|
||||
# 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>
|
||||
|
||||
add_subdirectory(effects)
|
||||
add_subdirectory(generators)
|
||||
add_subdirectory(transitions)
|
||||
add_subdirectory(icons)
|
||||
add_subdirectory(knewstuff)
|
||||
add_subdirectory(lumas)
|
||||
add_subdirectory(scripts)
|
||||
add_subdirectory(man)
|
||||
add_subdirectory(titles)
|
||||
add_subdirectory(profiles)
|
||||
add_subdirectory(resourceproviders)
|
||||
add_subdirectory(shortcuts)
|
||||
add_subdirectory(luts)
|
||||
|
||||
if (APPLE)
|
||||
# Apple app package
|
||||
set_target_properties(kdenlive PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
||||
set_target_properties(kdenlive PROPERTIES
|
||||
MACOSX_BUNDLE_DISPLAY_NAME "Kdenlive"
|
||||
MACOSX_BUNDLE_BUNDLE_NAME "Kdenlive"
|
||||
MACOSX_BUNDLE_LONG_VERSION_STRING "Kdenlive ${RELEASE_SERVICE_VERSION}"
|
||||
MACOSX_BUNDLE_SHORT_VERSION_STRING "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}"
|
||||
MACOSX_BUNDLE_BUNDLE_VERSION "${RELEASE_SERVICE_VERSION}"
|
||||
MACOSX_BUNDLE_GUI_IDENTIFIER "org.kde.Kdenlive"
|
||||
MACOSX_BUNDLE_COPYRIGHT "2000-2022 The Kdenlive Authors")
|
||||
|
||||
if (KF5_ICON_COMPATIBILITY)
|
||||
add_subdirectory(pics)
|
||||
endif()
|
||||
|
||||
install(FILES
|
||||
meta_magiclantern.png
|
||||
banner.png
|
||||
encodingprofiles.rc
|
||||
externalproxies.rc
|
||||
metadata.properties
|
||||
meta_ffmpeg.png
|
||||
meta_libav.png
|
||||
meta_magiclantern.png
|
||||
timeline_athumbs.png
|
||||
timeline_avthumbs.png
|
||||
timeline_nothumbs.png
|
||||
timeline_vthumbs.png
|
||||
kdenliveeffectscategory.rc
|
||||
kdenlivetranscodingrc
|
||||
kdenlivedefaultlayouts.rc
|
||||
slideanimations.rc
|
||||
clipjobsettings.rc
|
||||
|
||||
DESTINATION ${KDE_INSTALL_DATADIR}${DATA_INSTALL_PREFIX})
|
||||
|
||||
install(FILES kdenlive.notifyrc DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR})
|
||||
|
||||
install(FILES profiles.xml DESTINATION ${KDE_INSTALL_DATADIR}${DATA_INSTALL_PREFIX}/export)
|
||||
DESTINATION ${DATA_INSTALL_DIR}/kdenlive)
|
||||
install(FILES kdenlive.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR})
|
||||
install(FILES kdenlive_renderprofiles.knsrc kdenlive_wipes.knsrc kdenlive_keyboardschemes.knsrc kdenlive_titles.knsrc DESTINATION ${CONFIG_INSTALL_DIR})
|
||||
install(FILES profiles.xml DESTINATION ${DATA_INSTALL_DIR}/kdenlive/export)
|
||||
install(FILES org.kde.kdenlive.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
|
||||
install(FILES org.kde.kdenlive.desktop DESTINATION ${KDE_INSTALL_APPDIR})
|
||||
install(FILES org.kde.kdenlive.desktop DESTINATION ${XDG_APPS_INSTALL_DIR})
|
||||
|
||||
find_package(SharedMimeInfo REQUIRED)
|
||||
install(FILES org.kde.kdenlive.xml westley.xml DESTINATION ${KDE_INSTALL_MIMEDIR})
|
||||
update_xdg_mimetypes(${KDE_INSTALL_MIMEDIR})
|
||||
install(FILES org.kde.kdenlive.xml westley.xml DESTINATION ${XDG_MIME_INSTALL_DIR})
|
||||
update_xdg_mimetypes(${XDG_MIME_INSTALL_DIR})
|
||||
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>${MACOSX_BUNDLE_INFO_STRING}</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>${MACOSX_BUNDLE_ICON_FILE}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleLongVersionString</key>
|
||||
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.13</string>
|
||||
<key>NSMicrophoneUsageDescription</key>
|
||||
<string>audio recording</string>
|
||||
<key>CSResourcesFileMapped</key>
|
||||
<true/>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>${MACOSX_BUNDLE_COPYRIGHT}</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<string>True</string>
|
||||
<key>com.apple.security.device.audio-input</key>
|
||||
<true/>
|
||||
<key>LSApplicationQueriesSchemes</key>
|
||||
<array>
|
||||
<string>https</string>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,6 +1,3 @@
|
||||
# SPDX-FileCopyrightText: Pino Toscano <pino@kde.org>
|
||||
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||
|
||||
function get_files
|
||||
{
|
||||
echo org.kde.kdenlive.xml
|
||||
|
||||
BIN
data/banner.png
Normal file
BIN
data/banner.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
81
data/blacklisted_effects.txt
Normal file
81
data/blacklisted_effects.txt
Normal file
@@ -0,0 +1,81 @@
|
||||
# crashing effects
|
||||
frei0r.transparency
|
||||
frei0r.water
|
||||
|
||||
# duplicate effects
|
||||
frei0r.bluescreen0r
|
||||
frei0r.bw0r
|
||||
frei0r.gamma
|
||||
frei0r.invert0r
|
||||
|
||||
# unusable effects
|
||||
frei0r.3dflippo
|
||||
frei0r.perspective
|
||||
|
||||
#Effects not usable with a simple GUI
|
||||
#ladspa
|
||||
jackrack
|
||||
luma
|
||||
data_show
|
||||
gtkrescale
|
||||
watermark
|
||||
region
|
||||
resize
|
||||
resample
|
||||
mono
|
||||
transition
|
||||
|
||||
# Effects need extra GUI to create the resulting melt.xml with the corrected content
|
||||
videostab
|
||||
videostab2
|
||||
|
||||
# Unimplemented/unusable Avfilter Effects
|
||||
avfilter.abench
|
||||
avfilter.adelay
|
||||
avfilter.aemphasis
|
||||
avfilter.aeval
|
||||
avfilter.afade
|
||||
avfilter.afftfilt
|
||||
avfilter.aformat
|
||||
avfilter.ssim
|
||||
avfilter.ass
|
||||
avfilter.bbox
|
||||
avfilter.bench
|
||||
|
||||
# Crashing avfilters (would require an XML file to correctly define parameters
|
||||
avfilter.acompressor
|
||||
avfilter.aecho
|
||||
avfilter.agate
|
||||
avfilter.ametadata
|
||||
avfilter.arealtime
|
||||
avfilter.areverse
|
||||
avfilter.ashowinfo
|
||||
avfilter.channelmap
|
||||
avfilter.chorus
|
||||
avfilter.curves
|
||||
avfilter.drawtext
|
||||
avfilter.earwax
|
||||
avfilter.fade
|
||||
avfilter.field
|
||||
avfilter.fieldhint
|
||||
avfilter.fieldorder
|
||||
avfilter.find_rect
|
||||
avfilter.geq
|
||||
avfilter.hflip
|
||||
avfilter.metadata
|
||||
avfilter.negate
|
||||
avfilter.nnedi
|
||||
avfilter.qp
|
||||
avfilter.realtime
|
||||
avfilter.removelogo
|
||||
avfilter.reverse
|
||||
avfilter.showinfo
|
||||
avfilter.stereo3d
|
||||
avfilter.subtitles
|
||||
avfilter.super2xsai
|
||||
avfilter.swapuv
|
||||
avfilter.vectorscope
|
||||
avfilter.vflip
|
||||
avfilter.vignette
|
||||
avfilter.volume
|
||||
avfilter.volumedetect
|
||||
@@ -1,17 +0,0 @@
|
||||
#Built in jobs have no name as this is filled by Kdenlive on startup with translated names
|
||||
[Ids]
|
||||
stabilize=
|
||||
scenesplit=
|
||||
timewarp=
|
||||
custom=My Custom job
|
||||
|
||||
#FolderName is the name of the folder where output file will be placed, if any
|
||||
[FolderName]
|
||||
stabilize=Stabilize
|
||||
timewarp=Speed
|
||||
|
||||
#FolderUse can be: rootfolder (place folder at top level), subfolder (place folder where the source clip is), nooutput (this job doesn't create a video file, replace (the resulting file will replace clip in project
|
||||
[FolderUse]
|
||||
stabilize=rootfolder
|
||||
timewarp=subfolder
|
||||
scenesplit=nooutput
|
||||
@@ -1,92 +1,137 @@
|
||||
# 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>
|
||||
|
||||
INSTALL (FILES
|
||||
|
||||
audiobalance.xml
|
||||
audiolevelgraph.xml
|
||||
audiomap.xml
|
||||
audiopan.xml
|
||||
audiospectrum.xml
|
||||
audiowave.xml
|
||||
audiowaveform.xml
|
||||
automask.xml
|
||||
audiobalance.xml
|
||||
audiopan.xml
|
||||
boxblur.xml
|
||||
box_blur.xml
|
||||
brightness.xml
|
||||
channelcopy.xml
|
||||
copychannelstostereo.xml
|
||||
charcoal.xml
|
||||
chroma_hold.xml
|
||||
chroma.xml
|
||||
crop.xml
|
||||
dance.xml
|
||||
dropshadow.xml
|
||||
dust.xml
|
||||
dynamic_loudness.xml
|
||||
dynamictext.xml
|
||||
fade_from_black.xml
|
||||
fade_to_black.xml
|
||||
fadein.xml
|
||||
fadeout.xml
|
||||
freeze.xml
|
||||
gain.xml
|
||||
gamma.xml
|
||||
gpstext.xml
|
||||
gpsgraphic.xml
|
||||
grain.xml
|
||||
greyscale.xml
|
||||
invert.xml
|
||||
lift_gamma_gain.xml
|
||||
lightshow.xml
|
||||
loudness.xml
|
||||
luma.xml
|
||||
lumaliftgaingamma.xml
|
||||
mask_start.xml
|
||||
mask_start_frei0r_alphaspot.xml
|
||||
mask_start_frei0r_select0r.xml
|
||||
mask_start_rotoscoping.xml
|
||||
mask_start_shape.xml
|
||||
mask_apply.xml
|
||||
mirror.xml
|
||||
mono.xml
|
||||
mute.xml
|
||||
normalise.xml
|
||||
obscure.xml
|
||||
oldfilm.xml
|
||||
pan_zoom.xml
|
||||
pillar_echo.xml
|
||||
qtblend.xml
|
||||
qtcrop.xml
|
||||
rboctaveshift.xml
|
||||
rbpitchscale.xml
|
||||
rotation_keyframable.xml
|
||||
rotate-3-way.xml
|
||||
obscure.xml
|
||||
region.xml
|
||||
rotation.xml
|
||||
rotoscoping.xml
|
||||
rotation_keyframable.xml
|
||||
scratchlines.xml
|
||||
sepia.xml
|
||||
shape.xml
|
||||
shear.xml
|
||||
speed.xml
|
||||
spot_remover.xml
|
||||
strobe.xml
|
||||
swapchannels.xml
|
||||
timer.xml
|
||||
tcolor.xml
|
||||
sox_bass.xml
|
||||
sox_gain.xml
|
||||
sox_phaser.xml
|
||||
sox_band.xml
|
||||
sox_echo.xml
|
||||
sox_flanger.xml
|
||||
sox_stretch.xml
|
||||
threshold.xml
|
||||
tracker.xml
|
||||
typewriter.xml
|
||||
vidstab.xml
|
||||
vignette.xml
|
||||
volume.xml
|
||||
wave.xml
|
||||
fadein.xml
|
||||
fadeout.xml
|
||||
frei0r_alpha0ps.xml
|
||||
frei0r_alphagrad.xml
|
||||
frei0r_alphaspot.xml
|
||||
frei0r_balanc0r.xml
|
||||
frei0r_baltan.xml
|
||||
frei0r_bezier_curves.xml
|
||||
frei0r_brightness.xml
|
||||
frei0r_cartoon.xml
|
||||
frei0r_cluster.xml
|
||||
frei0r_colgate.xml
|
||||
frei0r_coloradj_rgb.xml
|
||||
frei0r_colordistance.xml
|
||||
frei0r_colortap.xml
|
||||
frei0r_contrast0r.xml
|
||||
frei0r_c0rners.xml
|
||||
frei0r_curves.xml
|
||||
frei0r_d90stairsteppingfix.xml
|
||||
frei0r_defish0r.xml
|
||||
frei0r_delay0r.xml
|
||||
frei0r_delaygrab.xml
|
||||
frei0r_distort0r.xml
|
||||
frei0r_edgeglow.xml
|
||||
frei0r_equaliz0r.xml
|
||||
frei0r_flippo.xml
|
||||
frei0r_glow.xml
|
||||
frei0r_hqdn3d.xml
|
||||
frei0r_hueshift0r.xml
|
||||
frei0r_iirblur.xml
|
||||
frei0r_keyspillm0pup.xml
|
||||
frei0r_lenscorrection.xml
|
||||
frei0r_letterb0xed.xml
|
||||
frei0r_levels.xml
|
||||
frei0r_lightgraffiti.xml
|
||||
frei0r_luminance.xml
|
||||
frei0r_mask0mate.xml
|
||||
frei0r_medians.xml
|
||||
frei0r_nervous.xml
|
||||
frei0r_nosync0r.xml
|
||||
frei0r_pixeliz0r.xml
|
||||
frei0r_pr0be.xml
|
||||
frei0r_pr0file.xml
|
||||
frei0r_primaries.xml
|
||||
frei0r_rgbparade.xml
|
||||
frei0r_saturat0r.xml
|
||||
frei0r_scale0tilt.xml
|
||||
frei0r_scanline0r.xml
|
||||
frei0r_select0r.xml
|
||||
frei0r_sharpness.xml
|
||||
frei0r_sobel.xml
|
||||
frei0r_sopsat.xml
|
||||
frei0r_squareblur.xml
|
||||
frei0r_tehroxx0r.xml
|
||||
frei0r_three_point_balance.xml
|
||||
frei0r_threelay0r.xml
|
||||
frei0r_threshold0r.xml
|
||||
frei0r_timeout.xml
|
||||
frei0r_tint0r.xml
|
||||
frei0r_twolay0r.xml
|
||||
frei0r_vectorscope.xml
|
||||
frei0r_vertigo.xml
|
||||
frei0r_vignette.xml
|
||||
frei0r_facebl0r.xml
|
||||
frei0r_facedetect.xml
|
||||
fade_from_black.xml
|
||||
fade_to_black.xml
|
||||
gain.xml
|
||||
lift_gamma_gain.xml
|
||||
movit_blur.xml
|
||||
movit_deconvolution_sharpen.xml
|
||||
movit_diffusion.xml
|
||||
movit_glow.xml
|
||||
movit_lift_gamma_gain.xml
|
||||
movit_mirror.xml
|
||||
movit_opacity.xml
|
||||
movit_rect.xml
|
||||
movit_saturation.xml
|
||||
movit_unsharp_mask.xml
|
||||
movit_vignette.xml
|
||||
movit_white_balance.xml
|
||||
qtblend.xml
|
||||
rotoscoping.xml
|
||||
speed.xml
|
||||
swapchannels.xml
|
||||
tcolor.xml
|
||||
vignette.xml
|
||||
tracker.xml
|
||||
|
||||
DESTINATION ${KDE_INSTALL_DATADIR}${DATA_INSTALL_PREFIX}/effects)
|
||||
|
||||
DESTINATION ${DATA_INSTALL_DIR}/kdenlive/effects)
|
||||
|
||||
add_subdirectory(update)
|
||||
add_subdirectory(avfilter)
|
||||
add_subdirectory(frei0r)
|
||||
add_subdirectory(ladspa)
|
||||
add_subdirectory(movit)
|
||||
add_subdirectory(sox)
|
||||
add_subdirectory(templates)
|
||||
|
||||
147
data/effects/README
Normal file
147
data/effects/README
Normal file
@@ -0,0 +1,147 @@
|
||||
================================
|
||||
------------EFFECTS-------------
|
||||
================================
|
||||
|
||||
==========
|
||||
Kdenlive uses MLT for all video/audio effects/filters.
|
||||
For filters that provide metadata the GUI can be generated automatically.
|
||||
If the generated GUI is not sufficient a custom one can be build using a XML
|
||||
file describing the effect and its parameters.
|
||||
==========
|
||||
|
||||
|
||||
|
||||
==========
|
||||
The basic structure of a XML filter description:
|
||||
--------------------------------------------------------------------------------------
|
||||
01 <!DOCTYPE kpartgui>
|
||||
02 <effect tag="mlt_filter" id="mlt_filter_custom1">
|
||||
03 <name>Filter name</name>
|
||||
04 <description>Filter the image</description>
|
||||
05 <author>Anon</author>
|
||||
06 <parameter type="constant" name="amount" default="10" min="0" max="1000" factor="1000">
|
||||
07 <name>Amount of filtering</name>
|
||||
08 </parameter>
|
||||
09 <parameter type="bool" name="enable" default="0">
|
||||
10 <name>Enable</name>
|
||||
11 </parameter>
|
||||
15 </effect>
|
||||
--------------------------------------------------------------------------------------
|
||||
|
||||
Line 1:
|
||||
- required to make strings used in the effect translatable
|
||||
Line 2:
|
||||
- tag: MLT ("mlt_service") name of the effect
|
||||
- id: internal kdenlive id, can be anything, but must be unique for each effect
|
||||
- type: (default = "video") whether effect modifies video or audio (use "audio" then)
|
||||
- unique: (default = "0") this effect cannot be attached multiple times to one clip (speed, fades, ...)
|
||||
- version: (optional) minimum version of the effect required to be available (works only if the MLT filter provides the necessary metadata)
|
||||
Line 3:
|
||||
- name of the effect that will appear to the user
|
||||
Line 4:
|
||||
- Short description of the effect to be shown in the effects list
|
||||
- Additionally a <full> part can be added inside. It's content will be available in the effect stack (see frei0r_lightgraffiti.xml for an example):
|
||||
- supports HTML formatting (requires the use of CDATA)
|
||||
Line 5:
|
||||
- name of the author(s) of the filter (not of the XML file ;))
|
||||
The rest:
|
||||
- list of effect parameters:
|
||||
- tag "name": visible name of the parameter (depending on the GUI this parameter uses)
|
||||
- tag "comment": (optional) description of the parameter (support HTML formatting) (not yet supported by all widgets)
|
||||
- attribute "name": MLT filter parameter name
|
||||
- attribute "paramprefix": a string to be prepended to the parameter value before passing it to MLT
|
||||
- attribute "default": initial value, format depends on parameter type
|
||||
- attribute "optional": if it is set, it means that this parameter can have an empty value. So then loading a project, don't set its value to default
|
||||
- attribute "type": widget (GUI) to use
|
||||
- "fixed":
|
||||
- sets a (MLT filter) parameter, but does not expose it to the user (no GUI)
|
||||
- "constant":
|
||||
- number
|
||||
- represented by a slider
|
||||
- additional parameter attributes:
|
||||
- "factor": (optional) values coming from MLT will be multiplied with factor
|
||||
- "offset": (optional) will be added to values coming from MLT after "factor" is applied
|
||||
- "min": smallest value possible (after multiplying with "factor")
|
||||
- "max": largest value possible (after multiplying with "factor")
|
||||
- "suffix": (optional) displayed unit of the values
|
||||
- "double":
|
||||
- synonym for "constant"
|
||||
- "bool":
|
||||
- true/false
|
||||
- represented by a checkbox
|
||||
- "switch":
|
||||
- 2 possible options defined by strings (max / min)
|
||||
- represented by a checkbox
|
||||
- "list":
|
||||
- multiple choice
|
||||
- represented by a drop-down menu
|
||||
- additional parameter attribute:
|
||||
- "paramlist": list of possible values separated by semicolon (no whitespaces!)
|
||||
- additional tag:
|
||||
- "paramlistdisplay": (optional) list of names to use for the values separated by comma
|
||||
- "position":
|
||||
- time stored as frame number
|
||||
- represented by a slider
|
||||
- "color":
|
||||
- color value, similar to representation HTML ("#rrggbb"/"#aarrggbb" or "0xrrggbbaa")
|
||||
- represented by a button opening the KDE color dialog + a color picker button
|
||||
- additional attributes:
|
||||
- "alpha": (default = "0") use to enable alpha support
|
||||
- "keyframe":
|
||||
- keyframable number
|
||||
- keyframes are opt-in (only one keyframe by default -> should be preferred over "constant" whenever possible)
|
||||
- works with MLT filters that utilize start/end values
|
||||
- same attributes as "constant"
|
||||
- additional attributes:
|
||||
- "intimeline": (default = "0") parameter to preselect for editing in the timeline (only one parameter can have "1")
|
||||
- "widget": (optional) GUI based on the standard keyframe GUI (possible values: "corners")
|
||||
- "simplekeyframe":
|
||||
- works with MLT filters that use mlt_geometry for keyframe support (includes all frei0r filters)
|
||||
- same attributes as "keyframe"
|
||||
- "geometry":
|
||||
- a rectangle: position + dimension + additional value
|
||||
- works with MLT filters using mlt_geometry
|
||||
- the rect can be edited on the project monitor
|
||||
- additional attributes:
|
||||
- "fixed": (default = "0") use to disable keyframe support
|
||||
- "showrotation": (default = "0") use to enable support to 3 axis rotation
|
||||
- "opacity": (default = "true") use to disable support of the opacity setting
|
||||
- "url":
|
||||
- url/path
|
||||
- represented by button to open "file open" dialog
|
||||
- additional attributes:
|
||||
- "filter": Filter for file extensions. Example : "*.cpp *.cc *.C|C++ Source Files\n*.h *.H|Header files" or as using MIME type: "image/png text/html"
|
||||
- "wipe":
|
||||
- special GUI for the wipe transition makes it possible to select a direction of a slide
|
||||
- "addedgeometry":
|
||||
- parameter linked to a "geometry" parameter
|
||||
- "curve":
|
||||
- cubic curve editor for the frei0r color curves filter (old version)
|
||||
- "bezier_spline":
|
||||
- cubic Bézier spline editor for the frei0r color curves filter (new version, might be reused for other filters)
|
||||
- "roto-spline":
|
||||
- GUI for the rotoscoping filter (spline on the monitor)
|
||||
- "keywords":
|
||||
- Text entry with a selection of possible keywords to be inserted in the text.
|
||||
- additional tags:
|
||||
- "keywords": list of possible keyword values separated by semicolon
|
||||
- "keywordsdisplay": list of names to use for the values separated by semicolon
|
||||
- "fontfamily":
|
||||
- Font typeface entry
|
||||
- "readonly" :
|
||||
- Data (usually an animated geometry) that can be pasted to clipboard or dragged/dropped on another geometry parameter. Cannot be modified directly by user.
|
||||
==========
|
||||
|
||||
==========
|
||||
Effects can be blacklisted in kdenlive/data/blacklisted_effects.txt
|
||||
All effects with a custom XML GUI need to be blacklisted.
|
||||
==========
|
||||
|
||||
==========
|
||||
Effects can be assigned to an effect category in kdenlive/data/kdenliveeffectscategory.rc.
|
||||
==========
|
||||
|
||||
==========
|
||||
Kdenlive parses the effect folder at each startup, so that if you have an XML file describing a new effect,
|
||||
just copy it to your ~/.kde/share/apps/kdenlive/effects/ folder and restart Kdenlive to enable the new effect.
|
||||
==========
|
||||
@@ -1,247 +0,0 @@
|
||||
# Effects (and Transitions)
|
||||
|
||||
Kdenlive uses MLT for all video/audio effects/filters.
|
||||
For filters that provide metadata the GUI can be generated automatically.
|
||||
If the generated GUI is not sufficient a custom one can be build using a XML
|
||||
file describing the effect and its parameters.
|
||||
|
||||
## Important notes
|
||||
* Effects can be blacklisted in `kdenlive/data/blacklisted_effects.txt`. All effects with a custom XML GUI need to be blacklisted
|
||||
|
||||
* Effects can be added to "Main effects" list in `kdenlive/data/preferred_effects.txt`
|
||||
|
||||
* Effects can be assigned to an effect category in `kdenlive/data/kdenliveeffectscategory.rc`.
|
||||
|
||||
* Kdenlive parses the effect folder at each startup, so that if you have an XML file describing a new effect,
|
||||
just copy it to your `~/.kde/share/apps/kdenlive/effects/` folder and restart Kdenlive to enable the new effect.
|
||||
|
||||
## The basic structure of a XML filter description:
|
||||
```xml
|
||||
01 <!DOCTYPE kpartgui>
|
||||
02 <effect tag="mlt_filter" id="mlt_filter_custom1">
|
||||
03 <name>Filter name</name>
|
||||
04 <description>Filter the image</description>
|
||||
05 <author>Anon</author>
|
||||
06 <parameter type="constant" name="amount" default="10" min="0" max="1000" factor="1000">
|
||||
07 <name>Amount of filtering</name>
|
||||
08 </parameter>
|
||||
09 <parameter type="bool" name="enable" default="0">
|
||||
10 <name>Enable</name>
|
||||
11 </parameter>
|
||||
15 </effect>
|
||||
```
|
||||
|
||||
Line 1:
|
||||
* required to make strings used in the effect translatable (see [here](https://api.kde.org/frameworks/ki18n/html/prg_guide.html))
|
||||
|
||||
Line 2:
|
||||
|
||||
| tag name | description |
|
||||
| :------------| :------------- |
|
||||
| `tag` | MLT ("mlt_service") name of the effect (see [MLT Docs](https://www.mltframework.org/docs/)) |
|
||||
| `id` | internal kdenlive id, can be anything, but must be unique for each effect |
|
||||
| `type` | _(default = `"video"`)_ whether effect modifies video or audio (use `"audio"` then) |
|
||||
| `unique` | _(default = `"0"`)_ this effect cannot be attached multiple times to one clip (speed, fades, ...) |
|
||||
| `version` | _(optional)_ minimum version of the effect required to be available (works only if the MLT filter provides the necessary metadata) |
|
||||
| `dependency` | _(optional)_ ) MLT ("mlt_service") name of an effect or composition this asset depends on. If the dependency is not available this asset will not be available in Kdenlive too|
|
||||
|
||||
Line 3:
|
||||
* name of the effect that will appear to the user
|
||||
|
||||
Line 4:
|
||||
* Short description of the effect to be shown in the effects list
|
||||
* Additionally a <full> part can be added inside. It's content will be available in the effect stack (see [frei0r_lightgraffiti.xml](frei0r_lightgraffiti.xml) for an example):
|
||||
* supports HTML formatting (requires the use of CDATA)
|
||||
|
||||
Line 5:
|
||||
* name of the author(s) of the filter (not of the XML file ;))
|
||||
|
||||
The rest:
|
||||
|
||||
### list of tags for `<parameter>...</parameter>`
|
||||
|
||||
| tag name | description |
|
||||
| :-------- | :------------- |
|
||||
| `name` | visible name of the parameter (depending on the GUI this parameter uses) |
|
||||
| `comment` | _(optional)_ description of the parameter (support HTML formatting) (not yet supported by all widgets) |
|
||||
|
||||
### list of attributes for `<parameter ...>`
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `name` | MLT filter parameter name |
|
||||
| `paramprefix` | a string to be prepended to the parameter value before passing it to MLT |
|
||||
| `suffix` | a string to be appended to the parameter (for UI display only) |
|
||||
| `min` | the minimal accepted value |
|
||||
| `max` | the maximal accepted value |
|
||||
| `visualmin` | the minimal value displayed in timeline keyframes (can be > than min) |
|
||||
| `visualmax` | the maximal value displayed in timeline keyframes (can be < than max) |
|
||||
| `default` | initial value, format depends on parameter type |
|
||||
| `value` | |
|
||||
| `optional` | if it is set, it means that this parameter can have an empty value. So then loading a project, don't set its value to default |
|
||||
| `type` | widget (GUI) to use. See section below for possible values
|
||||
|
||||
For double values these placeholders are available:
|
||||
|
||||
| placeholder | description |
|
||||
| :--------------------- | :---------- |
|
||||
| `%maxWidth ` | width of the current profile |
|
||||
| `%maxHeight` | height of the current profile |
|
||||
| `%width` | synonym for `%maxWidth` |
|
||||
| `%height` | synonym for `%maxHeight` |
|
||||
| `%contentWidth` | width of the target clip |
|
||||
| `%contentHeight` | height of the target clip |
|
||||
| `%fittedContentWidth` | width of the target clip scaled to fit current profile |
|
||||
| `%fittedContentHeight` | height of the target clip scaled to fit current profile |
|
||||
| `%out` | the out position of the current item |
|
||||
| `%fade"` | the default fade duration (can be configured by the user) |
|
||||
|
||||
|
||||
|
||||
#### values for attribute `type`
|
||||
|
||||
##### `"fixed"`
|
||||
* sets a (MLT filter) parameter, but does not expose it to the user (no GUI)
|
||||
|
||||
##### `"constant"`
|
||||
* number
|
||||
* represented by a slider
|
||||
* ###### additional parameter attributes:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `factor` | _(optional)_ values coming from MLT will be multiplied with factor |
|
||||
| `offset` | _(optional)_ will be added to values coming from MLT after `factor` is applied |
|
||||
| `min` | smallest value possible (after multiplying with `factor`) |
|
||||
| `max` | largest value possible (after multiplying with `factor`) |
|
||||
| `suffix` | _(optional)_ displayed unit of the value
|
||||
|
||||
|
||||
##### `"double"`
|
||||
* synonym for `"constant"`
|
||||
|
||||
|
||||
##### `"bool"`
|
||||
* true/false
|
||||
* represented by a checkbox
|
||||
|
||||
|
||||
##### `"switch"`
|
||||
* 2 possible options defined by strings (max / min)
|
||||
* represented by a checkbox
|
||||
|
||||
|
||||
##### `"list"`
|
||||
* multiple choice
|
||||
* represented by a drop-down menu
|
||||
* ###### additional parameter attributes:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `paramlist` | list of possible values separated by semicolon (no whitespaces!). Special keyword `%lumaPaths` available to show files in the applications luma directories |
|
||||
* ###### additional tags:
|
||||
| tag name | description |
|
||||
| :----------------- | :------------- |
|
||||
| `paramlistdisplay` | _(optional)_ list of names to use for the values separated by comma |
|
||||
|
||||
|
||||
##### `"position"`
|
||||
* time stored as frame number
|
||||
* represented by a slider
|
||||
|
||||
|
||||
##### `"color"`
|
||||
* color value, similar to representation HTML (`"#rrggbb"`/`"#aarrggbb"` or `"0xrrggbbaa"`)
|
||||
* represented by a button opening the KDE color dialog + a color picker button
|
||||
* ###### additional attributes:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `alpha` | _(default = `"0"`)_ use to enable alpha support |
|
||||
|
||||
|
||||
##### `"keyframe"`
|
||||
* keyframable number
|
||||
* keyframes are opt-in (only one keyframe by default -> should be preferred over "constant" whenever possible)
|
||||
* works with MLT filters that utilize start/end values
|
||||
* same attributes as "constant"
|
||||
* ###### additional attributes:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `factor` | _(optional)_ values coming from MLT will be multiplied with factor |
|
||||
| `intimeline` | _(default = `"0"`)_ parameter to preselect for editing in the timeline (only one parameter can have `"1"`) |
|
||||
| `widget` | _(optional)_ GUI based on the standard keyframe GUI (possible values: `"corners"`) |
|
||||
|
||||
|
||||
##### `"simplekeyframe"`
|
||||
* works with MLT filters that use mlt_geometry for keyframe support (includes all frei0r filters)
|
||||
* same attributes as "keyframe"
|
||||
|
||||
|
||||
##### `"geometry"`
|
||||
* a rectangle: position + dimension + additional value
|
||||
* works with MLT filters using mlt_geometry
|
||||
* the rect can be edited on the project monitor
|
||||
* ###### additional attributes:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `fixed` | _(default = `"0"`)_ use to disable keyframe support |
|
||||
| `showrotation` | _(default = `"0"`)_ use to enable support to 3 axis rotation |
|
||||
| `opacity` | _(default = `"true"`)_ use to disable support of the opacity setting |
|
||||
|
||||
You can set `default` to `"adjustcenter"` to adjust the geometry to the frame size
|
||||
|
||||
|
||||
##### `"url"`
|
||||
* url/path
|
||||
* represented by button to open "file open" dialog
|
||||
* ###### additional attributes:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `filter` | Filter for file extensions. Example : `"*.cpp *.cc *.C\|C++ Source Files\n*.h *.H\|Header files"` or as using MIME type: `"image/png text html"` |
|
||||
| `mode` | _(optional)_ Default is empty = open. `"save"` means none-exsisting files can be selected and gui label is "save"
|
||||
|
||||
<!-- Attention if you see this comment (i.e. your editor does not support markdown), note that the string above is probably not show right. Please consider "*.cpp *.cc *.C|C++ Source Files\n*.h *.H|Header" to be right -->
|
||||
|
||||
|
||||
##### `"urllist"`
|
||||
* url/path
|
||||
* represented by button to open "file open" dialog (like `url`) but in addition the file can be selected from a predefined list (like `"list"`) and it has support for KNewStuff (e.g. https://store.kde.org)
|
||||
* ###### additional attributes:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `filter` | Filter for file extensions. Example : `"Source Files (*.cpp *.cc *.C);;Header files (*.h *.H)"` (warning: this format is different to `url`!) |
|
||||
| `newstuff` | _(optional)_ KNewStuff config file (usually placed in `kdenlive/data` and added to to `kdenlive/src/uiresources.qrc` so the value looks like `":data/kdenlive_wipes.knsrc"`). If this is empty no download button is shown|
|
||||
| `paramlist` | list of possible values separated by semicolon (no whitespaces!). Special keywords `%lumaPaths` and `%lutPaths` are available to show files in the applications luma/lut directories |
|
||||
* ###### additional tags:
|
||||
| tag name | description |
|
||||
| :--------------- | :------------- |
|
||||
| `paramlistdisplay` | _(optional)_ list of names to use for the values separated by comma |
|
||||
|
||||
##### `"wipe"`
|
||||
* special GUI for the wipe transition makes it possible to select a direction of a slide
|
||||
|
||||
|
||||
##### `"curve"`
|
||||
* cubic curve editor for the frei0r color curves filter (old version)
|
||||
|
||||
|
||||
##### `"bezier_spline"`
|
||||
* cubic Bézier spline editor for the frei0r color curves filter (new version, might be reused for other filters)
|
||||
|
||||
|
||||
##### `"roto-spline"`
|
||||
* GUI for the rotoscoping filter (spline on the monitor)
|
||||
|
||||
|
||||
##### `"keywords"`
|
||||
* Text entry with a selection of possible keywords to be inserted in the text.
|
||||
* ###### additional tags:
|
||||
| attribute name | description |
|
||||
| :------------- | :------------- |
|
||||
| `keywords` | list of possible keyword values separated by semicolon |
|
||||
| `keywordsdisplay` | list of names to use for the values separated by semicolon |
|
||||
|
||||
|
||||
##### `"fontfamily"`
|
||||
* Font typeface entry
|
||||
|
||||
|
||||
##### `"readonly"`
|
||||
* Data (usually an animated geometry) that can be pasted to clipboard or dragged/dropped on another geometry parameter. Cannot be modified directly by user.
|
||||
@@ -1,11 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="panner" id="audiobalance" type="audio">
|
||||
<name>Balance</name>
|
||||
<description>Adjust the left/right balance</description>
|
||||
<author>Dan Dennedy</author>
|
||||
<parameter type="fixed" name="start" min="0.5" max="0.5" default="0.5"/>
|
||||
<parameter type="animated" name="split" max="1000" min="0" default="0.5" factor="1000">
|
||||
<name>Balance</name>
|
||||
</parameter>
|
||||
<name>Balance</name>
|
||||
<description>Adjust the left/right balance</description>
|
||||
<author>Dan Dennedy</author>
|
||||
<parameter type="animated" name="split" max="1000" min="0" default=".5" factor="1000">
|
||||
<name>Balance</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="audiolevel" id="audiolevel" type="hidden">
|
||||
<name>Audio levels</name>
|
||||
<description>Compute the audio amplitude.</description>
|
||||
<author>Dan Dennedy, Marco Gittler, and Steve Harris</author>
|
||||
<parameter type="bool" name="iec_scale" default="1">
|
||||
<name>Use IEC 60268-18 Scale </name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,61 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="audiolevelgraph" id="audiolevelgraph" type="video">
|
||||
<name>Audio Level Visualization Filter</name>
|
||||
<author>Meltytech, LLC</author>
|
||||
<description>An audio visualization filter that draws an audio level meter on the image.</description>
|
||||
<parameter type="list" name="type" default="bar" paramlist="segment;bar">
|
||||
<paramlistdisplay>Segment,Bar</paramlistdisplay>
|
||||
<name>Graph type</name>
|
||||
<comment>The type of graph to display the levels.</comment>
|
||||
</parameter>
|
||||
<parameter type="color" name="bgcolor" default="0x00000000" alpha="1">
|
||||
<name>Background Color</name>
|
||||
<comment>The background color to be applied to the entire frame.</comment>
|
||||
</parameter>
|
||||
<parameter type="color" name="color.1" default="0xffffffff" alpha="1">
|
||||
<name>Gradient Color 1</name>
|
||||
<comment>The color of the waveform gradient.</comment>
|
||||
</parameter>
|
||||
<parameter type="color" name="color.2" default="0xffffffff" alpha="1">
|
||||
<name>Gradient Color 2</name>
|
||||
<comment>The color of the waveform gradient.</comment>
|
||||
</parameter>
|
||||
<parameter type="color" name="color.3" default="0xffffffff" alpha="1">
|
||||
<name>Gradient Color 3</name>
|
||||
<comment>The color of the waveform gradient.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="thickness" max="20" min="0" default="0">
|
||||
<name>Line Thickness</name>
|
||||
<comment>The thickness of the bar or segments.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="angle" max="360" min="0" default="0">
|
||||
<name>Angle</name>
|
||||
<comment>The rotation angle to be applied to the waveform.</comment>
|
||||
</parameter>
|
||||
<parameter type="animatedrect" name="rect" default="0 0 100% 100%">
|
||||
<name>Rectangle</name>
|
||||
<comment>Defines the rectangle that the waveform(s) should be drawn in.</comment>
|
||||
</parameter>
|
||||
<parameter type="bool" name="mirror" default="0">
|
||||
<name>Mirror</name>
|
||||
<comment>Mirror the spectrum about the center of the rectangle.</comment>
|
||||
</parameter>
|
||||
<parameter type="bool" name="reverse" default="0">
|
||||
<name>Reverse</name>
|
||||
<comment>Draw the points starting with the right channel first.</comment>
|
||||
</parameter>
|
||||
<parameter type="list" name="gorient" default="vertical" paramlist="vertical;horizontal">
|
||||
<paramlistdisplay>Vertical,Horizontal</paramlistdisplay>
|
||||
<name>Gradient Orientation</name>
|
||||
<comment>Direction of the color gradient.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="channels" max="500" min="0" default="2">
|
||||
<name>Channels</name>
|
||||
<comment>The number of channels to show.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="segment_gap" max="100" min="0" default="10">
|
||||
<name>Segment Gap</name>
|
||||
<comment>The space in pixels between the segments.</comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="audiomap" id="audiomap" type="audio" unique="1">
|
||||
<name>audiomap</name>
|
||||
<description>audiomap</description>
|
||||
<author> Maksym Veremeyenko</author>
|
||||
<parameter type="list" name="0" default="0" paramlist="0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31">
|
||||
<paramlistdisplay>CH1,CH2,CH3,CH4,CH5,CH6,CH7,CH8,CH9,CH10,CH11,CH12,CH13,CH14,CH15,CH16,CH17,CH18,CH19,CH20,CH21,CH22,CH23,CH24,CH25,CH26,CH27,CH28,CH29,CH30,CH31,CH32</paramlistdisplay>
|
||||
<name>CH1 source</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="1" paramlist="0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31" default="1">
|
||||
<paramlistdisplay>CH1,CH2,CH3,CH4,CH5,CH6,CH7,CH8,CH9,CH10,CH11,CH12,CH13,CH14,CH15,CH16,CH17,CH18,CH19,CH20,CH21,CH22,CH23,CH24,CH25,CH26,CH27,CH28,CH29,CH30,CH31,CH32</paramlistdisplay>
|
||||
<name>CH2 source</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="2" paramlist="0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31" default="2">
|
||||
<paramlistdisplay>CH1,CH2,CH3,CH4,CH5,CH6,CH7,CH8,CH9,CH10,CH11,CH12,CH13,CH14,CH15,CH16,CH17,CH18,CH19,CH20,CH21,CH22,CH23,CH24,CH25,CH26,CH27,CH28,CH29,CH30,CH31,CH32</paramlistdisplay>
|
||||
<name>CH3 source</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="3" paramlist="0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31" default="3">
|
||||
<paramlistdisplay>CH1,CH2,CH3,CH4,CH5,CH6,CH7,CH8,CH9,CH10,CH11,CH12,CH13,CH14,CH15,CH16,CH17,CH18,CH19,CH20,CH21,CH22,CH23,CH24,CH25,CH26,CH27,CH28,CH29,CH30,CH31,CH32</paramlistdisplay>
|
||||
<name>CH4 source</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="4" paramlist="0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31" default="4">
|
||||
<paramlistdisplay>CH1,CH2,CH3,CH4,CH5,CH6,CH7,CH8,CH9,CH10,CH11,CH12,CH13,CH14,CH15,CH16,CH17,CH18,CH19,CH20,CH21,CH22,CH23,CH24,CH25,CH26,CH27,CH28,CH29,CH30,CH31,CH32</paramlistdisplay>
|
||||
<name>CH5 source</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="5" paramlist="0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31" default="5">
|
||||
<paramlistdisplay>CH1,CH2,CH3,CH4,CH5,CH6,CH7,CH8,CH9,CH10,CH11,CH12,CH13,CH14,CH15,CH16,CH17,CH18,CH19,CH20,CH21,CH22,CH23,CH24,CH25,CH26,CH27,CH28,CH29,CH30,CH31,CH32</paramlistdisplay>
|
||||
<name>CH6 source</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,14 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="panner" id="audiopan" type="audio">
|
||||
<name context="Pan Effect Name">Pan</name>
|
||||
<description>Adjust the left/right spread of a channel</description>
|
||||
<author>Dan Dennedy</author>
|
||||
<parameter type="list" name="channel" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Left,Right</paramlistdisplay>
|
||||
<name>Channel</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="start" max="1000" min="0" default="0.5" factor="1000">
|
||||
<name context="Audio Pan">Pan</name>
|
||||
</parameter>
|
||||
<name>Pan</name>
|
||||
<description>Adjust the left/right spread of a channel</description>
|
||||
<author>Dan Dennedy</author>
|
||||
<parameter type="list" name="channel" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Left,Right</paramlistdisplay>
|
||||
<name>Channel</name>
|
||||
</parameter>
|
||||
<parameter type="keyframe" name="start" max="1000" min="0" default=".5" factor="1000">
|
||||
<name>Pan</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<group>
|
||||
<effect tag="audiospectrum" id="audiospectrum">
|
||||
<name>Audio Spectrum Filter</name>
|
||||
<description>An audio visualization filter that draws an audio spectrum on the image.</description>
|
||||
<author>Brian Matherly</author>
|
||||
<parameter type="list" name="type" default="line" paramlist="line;bar">
|
||||
<paramlistdisplay>Line,Bar</paramlistdisplay>
|
||||
<name>Graph type</name>
|
||||
<comment>The type of graph to display the spectrum.</comment>
|
||||
</parameter>
|
||||
<parameter type="color" name="bgcolor" default="0x00000000" alpha="1">
|
||||
<name>Background Color</name>
|
||||
<comment>The background color to be applied to the entire frame. The default color is transparent.</comment>
|
||||
</parameter>
|
||||
<parameter type="color" name="color.1" default="0xffffffff" alpha="1">
|
||||
<name>Foreground color</name>
|
||||
<comment>The color of the waveform.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="thickness" default="0" min="0" max="20">
|
||||
<name>Line Thickness</name>
|
||||
<comment>The thickness of the line used to draw the waveform for line graph. The thickness of the bar for bar graph.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="angle" default="0" min="0" max="360">
|
||||
<name>Angle</name>
|
||||
<comment>The rotation angle to be applied to the waveform.</comment>
|
||||
</parameter>
|
||||
<parameter type="animatedrect" name="rect" default="0 0 100% 100%" fixed="1" opacity="false">
|
||||
<name>Rectangle</name>
|
||||
<comment>Defines the rectangle that the waveform(s) should be drawn in.</comment>
|
||||
</parameter>
|
||||
<parameter type="bool" name="fill" default="0">
|
||||
<name>Fill</name>
|
||||
<comment>Whether the area under the waveform should be filled in. Only applies to line graph type.</comment>
|
||||
</parameter>
|
||||
<parameter type="bool" name="mirror" default="0">
|
||||
<name>Mirror</name>
|
||||
<comment>Mirror the spectrum about the center of the rectangle.</comment>
|
||||
</parameter>
|
||||
<parameter type="bool" name="reverse" default="0">
|
||||
<name>Reverse</name>
|
||||
<comment>Draw the points starting with the highest frequency first.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="tension" default="0.4" min="-200" max="200" factor="100">
|
||||
<name>Line Tension</name>
|
||||
<comment>Affects the amount of curve in the line interpolating between points. 0.0 = a straight line between points. 100 = very curved lines between points. Values < 0 and > 100 will cause loops in the lines. Only applies to line graph type.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="bands" default="31" min="0" max="1000">
|
||||
<name>Points</name>
|
||||
<comment>The number of bands to draw in the spectrum. Each band shows up as a data point in the graph.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="frequency_low" default="20" min="0" max="30000">
|
||||
<name>Low Frequency</name>
|
||||
<comment>The low end of the frequency range to be used for the graph.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="frequency_high" default="20000" min="0" max="30000">
|
||||
<name>High Frequency</name>
|
||||
<comment>The high end of the frequency range to be used for the graph.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="threshold" default="-30" min="-100" max="0" suffix="dB">
|
||||
<name>Level Threshold</name>
|
||||
<comment>The minimum amplitude of sound that must occur within the frequency range to cause the value to be applied.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="window_size" default="2048" min="1" max="4000">
|
||||
<name>Window Size</name>
|
||||
<comment>The number of samples that the FFT will be performed on. If window size is less than the number of samples in a frame, extra samples will be ignored. If window size is more than the number of samples in a frame, samples will be buffered from previous frames to fill the window. The buffering is performed as a sliding window so that the most recent samples are always transformed.</comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
</group>
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="audiowave" id="audiowave">
|
||||
<name>Audio Wave</name>
|
||||
<description>Display the audio waveform instead of the video</description>
|
||||
<author>Dan Dennedy</author>
|
||||
<name>Audio Wave</name>
|
||||
<description>Display the audio waveform instead of the video</description>
|
||||
<author>Dan Dennedy</author>
|
||||
</effect>
|
||||
|
||||
@@ -1,29 +1,20 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="audiowaveform" id="audiowaveform" type="video">
|
||||
<name>Audio Waveform Filter</name>
|
||||
<author>Brian Matherly</author>
|
||||
<parameter type="color" name="bgcolor" default="0x00000000" alpha="1">
|
||||
<name>Background Color</name>
|
||||
</parameter>
|
||||
<parameter type="color" name="color.1" default="0xffffffff" alpha="1">
|
||||
<name>Foreground Color</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="thickness" max="20" min="0" default="0">
|
||||
<name>Line Thickness</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="angle" default="0" min="0" max="360">
|
||||
<name>Angle</name>
|
||||
<comment>The rotation angle to be applied to the waveform.</comment>
|
||||
</parameter>
|
||||
<parameter type="animatedrect" name="rect" default="0 0 100% 100%" fixed="1" opacity="false">
|
||||
<name>Rectangle</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="fill" default="0">
|
||||
<name>Fill</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="show_channel" default="0" paramlist="-1;0;1;2;3;4;5;6;7;8;9;10">
|
||||
<paramlistdisplay>Merge,All,1,2,3,4,5,6,7,8,9,10</paramlistdisplay>
|
||||
<name>Channel to draw</name>
|
||||
</parameter>
|
||||
<effect tag="audiowaveform" id="audiowaveform" type="audio">
|
||||
<name>Audio Waveform Filter</name>
|
||||
<author>Brian Matherly</author>
|
||||
<parameter type="color" name="bgcolor" default="0x00000000" alpha="1">
|
||||
<name>Background Color</name>
|
||||
</parameter>
|
||||
<parameter type="color" name="color.1" default="0xffffffff" alpha="1">
|
||||
<name>Foreground Color</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="thickness" max="20" min="0" default="0">
|
||||
<name>Line Thickness</name>
|
||||
</parameter>
|
||||
<parameter type="geometry" name="rect" default="0 0:100% 100%" fixed="1" opacity="false">
|
||||
<name>Rectangle</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="fill" default="0">
|
||||
<name>Fill</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
|
||||
38
data/effects/automask.xml
Normal file
38
data/effects/automask.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="autotrack_rectangle" id="autotrack_rectangle">
|
||||
<name>Auto Mask</name>
|
||||
<description>Hide a selected zone and follow its movements</description>
|
||||
<author>Zachary Drew</author>
|
||||
<parameter type="geometry" name="geometry" default="50%,50%:50%x50%" fixed="1" opacity="false">
|
||||
<name>Geometry</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="motion_est.macroblock_width" max="100" min="1" default="16" suffix="pixels">
|
||||
<name>Macroblock width</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="motion_est.macroblock_height" max="100" min="1" default="16" suffix="pixels">
|
||||
<name>Macroblock height</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="motion_est.limit_x" max="500" min="1" default="64" suffix="pixels">
|
||||
<name>Maximum x distance</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="motion_est.limit_y" max="500" min="1" default="64" suffix="pixels">
|
||||
<name>Maximum y distance</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="motion_est.denoise" default="0">
|
||||
<name>Denoise</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="debug" default="0">
|
||||
<name>Debug</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="obscure" default="1">
|
||||
<name>Obscure</name>
|
||||
</parameter>
|
||||
<parameter type="filterjob" filtertag="autotrack_rectangle" filterparams="_serialize=1 motion_vector_list=0 %params in=%position" consumer="null" consumerparams="all=1 terminate_on_pause=1">
|
||||
<jobparam name="storedata" />
|
||||
<jobparam name="projecttreefilter" />
|
||||
<jobparam name="key">motion_vector_list</jobparam>
|
||||
<jobparam name="finalfilter">autotrack_rectangle</jobparam>
|
||||
<jobparam name="displaydataname">Motion vectors</jobparam>
|
||||
<name>Analyse</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,140 +1,8 @@
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
# SPDX-FileCopyrightText: Jean-Baptiste Mardelle <jb@kdenlive.org>, Massimo Stella <maxstar@tin.it>
|
||||
|
||||
INSTALL (FILES
|
||||
|
||||
acompressor.xml
|
||||
aecho.xml
|
||||
agate.xml
|
||||
avfilter_acontrast.xml
|
||||
avfilter_acrusher.xml
|
||||
avfilter_alimiter.xml
|
||||
avfilter_allpass.xml
|
||||
avfilter_aphaser.xml
|
||||
avfilter_apulsator.xml
|
||||
avfilter_atadenoise.xml
|
||||
avfilter_avgblur.xml
|
||||
avfilter_bandpass.xml
|
||||
avfilter_bandreject.xml
|
||||
avfilter_bass.xml
|
||||
avfilter_bilateral.xml
|
||||
avfilter_boxblur.xml
|
||||
avfilter_bs2b.xml
|
||||
avfilter_bwdif.xml
|
||||
avfilter_cas.xml
|
||||
avfilter_chromahold.xml
|
||||
avfilter_chromanr.xml
|
||||
avfilter_chromashift.xml
|
||||
avfilter_colorbalance.xml
|
||||
avfilter_colorchannelmixer.xml
|
||||
avfilter_colorcontrast.xml
|
||||
avfilter_colorcorrect.xml
|
||||
avfilter_colorhold.xml
|
||||
avfilter_colorize.xml
|
||||
avfilter_colorlevels.xml
|
||||
avfilter_colormatrix.xml
|
||||
avfilter_colorspace.xml
|
||||
avfilter_colortemperature.xml
|
||||
avfilter_compand.xml
|
||||
avfilter_compensationdelay.xml
|
||||
avfilter_crossfeed.xml
|
||||
avfilter_crystalizer.xml
|
||||
avfilter_datascope.xml
|
||||
avfilter_dblur.xml
|
||||
avfilter_dcshift.xml
|
||||
avfilter_dctdnoiz.xml
|
||||
avfilter_deband.xml
|
||||
avfilter_deblock.xml
|
||||
avfilter_dedot.xml
|
||||
avfilter_deesser.xml
|
||||
avfilter_deflate.xml
|
||||
avfilter_delogo.xml
|
||||
avfilter_derain.xml
|
||||
avfilter_despill.xml
|
||||
avfilter_dilation.xml
|
||||
avfilter_doubleweave.xml
|
||||
avfilter_drawbox.xml
|
||||
avfilter_drawgrid.xml
|
||||
avfilter_edgedetect.xml
|
||||
avfilter_elbg.xml
|
||||
avfilter_epx.xml
|
||||
avfilter_eq.xml
|
||||
avfilter_equalizer.xml
|
||||
avfilter_erosion.xml
|
||||
avfilter_exposure.xml
|
||||
avfilter_extrastereo.xml
|
||||
avfilter_fftdnoiz.xml
|
||||
avfilter_fftfilt.xml
|
||||
avfilter_field.xml
|
||||
avfilter_fieldorder.xml
|
||||
avfilter_fillborders.xml
|
||||
avfilter_flanger.xml
|
||||
avfilter_framestep.xml
|
||||
avfilter_fspp.xml
|
||||
avfilter_gblur.xml
|
||||
avfilter_gradfun.xml
|
||||
avfilter_graphmonitor.xml
|
||||
avfilter_haas.xml
|
||||
avfilter_hflip.xml
|
||||
avfilter_highpass.xml
|
||||
avfilter_highshelf.xml
|
||||
avfilter_histeq.xml
|
||||
avfilter_histogram.xml
|
||||
avfilter_hqdn3d.xml
|
||||
avfilter_hqx.xml
|
||||
avfilter_il.xml
|
||||
avfilter_inflate.xml
|
||||
avfilter_kerneldeint.xml
|
||||
avfilter_kirsch.xml
|
||||
avfilter_lagfun.xml
|
||||
avfilter_lenscorrection.xml
|
||||
avfilter_limiter.xml
|
||||
avfilter_loudnorm.xml
|
||||
avfilter_lowpass.xml
|
||||
avfilter_lowshelf.xml
|
||||
selectivecolor.xml
|
||||
avfilter_lut3d.xml
|
||||
avfilter_mcdeint.xml
|
||||
avfilter_median.xml
|
||||
avfilter_monochrome.xml
|
||||
avfilter_negate.xml
|
||||
avfilter_noise.xml
|
||||
avfilter_normalize.xml
|
||||
avfilter_oscilloscope.xml
|
||||
avfilter_phase.xml
|
||||
avfilter_photosensitivity.xml
|
||||
avfilter_pixelize.xml
|
||||
avfilter_prewitt.xml
|
||||
avfilter_random.xml
|
||||
avfilter_removegrain.xml
|
||||
avfilter_rgbashift.xml
|
||||
avfilter_roberts.xml
|
||||
avfilter_sab.xml
|
||||
avfilter_scroll.xml
|
||||
avfilter_selectivecolor.xml
|
||||
avfilter_separatefields.xml
|
||||
avfilter_setrange.xml
|
||||
avfilter_shear.xml
|
||||
avfilter_shuffleplanes.xml
|
||||
avfilter_smartblur.xml
|
||||
avfilter_sobel.xml
|
||||
avfilter_sofalizer.xml
|
||||
avfilter_sr.xml
|
||||
avfilter_stereo3D.xml
|
||||
avfilter_stereotools.xml
|
||||
avfilter_stereowiden.xml
|
||||
avfilter_tmix.xml
|
||||
avfilter_transpose.xml
|
||||
avfilter_unsharp.xml
|
||||
avfilter_vaguedenoiser.xml
|
||||
avfilter_vectorscope.xml
|
||||
avfilter_vflip.xml
|
||||
avfilter_vibrance.xml
|
||||
avfilter_vibrato.xml
|
||||
avfilter_w3fdif.xml
|
||||
avfilter_waveform.xml
|
||||
avfilter_weave.xml
|
||||
avfilter_xbr.xml
|
||||
avfilter_yadif.xml
|
||||
avfilter_zoompan.xml
|
||||
subtitles.xml
|
||||
DESTINATION ${KDE_INSTALL_DATADIR}${DATA_INSTALL_PREFIX}/effects)
|
||||
DESTINATION ${DATA_INSTALL_DIR}/kdenlive/effects)
|
||||
|
||||
@@ -1,42 +1,42 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.acompressor" type="audio">
|
||||
<name>Compressor (avfilter)</name>
|
||||
<description>Audio Compressor</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.level_in" max="64" min="0.016" default="1" decimals="3">
|
||||
<name>Input Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.threshold" max="1" min="0.001" default="0.125" decimals="3">
|
||||
<name>Threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.ratio" max="20" min="1" default="2">
|
||||
<name>Ratio</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.attack" max="2000" min="0.01" default="20" decimals="3">
|
||||
<name>Attack</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.release" max="9000" min="0.01" default="250" decimals="3">
|
||||
<name>Release</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.makeup" max="64" min="1" default="2">
|
||||
<name>Make Up Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.knee" max="8" min="1" default="2.828" decimals="3">
|
||||
<name>Knee</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.link" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Average,Maximum</paramlistdisplay>
|
||||
<name>Link Type</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.detection" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Peak,Rms</paramlistdisplay>
|
||||
<name>Detection</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.level_sc" max="64" min="0.016" default="1" decimals="3">
|
||||
<name>Sidechain Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.mix" max="1" min="0" default="1" decimals="3">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
<name>Compressor (avfilter)</name>
|
||||
<description>Audio Compressor</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.level_in" max="64" min="0.016" default="1" decimals="3">
|
||||
<name>Input Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.threshold" max="1" min="0.001" default="0.125" decimals="3">
|
||||
<name>Threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.ratio" max="20" min="1" default="2">
|
||||
<name>Ratio</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.attack" max="2000" min="0.01" default="20" decimals="3">
|
||||
<name>Attack</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.release" max="9000" min="0.01" default="250" decimals="3">
|
||||
<name>Release</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.makeup" max="64" min="1" default="2">
|
||||
<name>Make Up Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.knee" max="8" min="1" default="2.828" decimals="3">
|
||||
<name>Knee</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.link" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Average,Maximum</paramlistdisplay>
|
||||
<name>Link Type</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.detection" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Peak,Rms</paramlistdisplay>
|
||||
<name>Detection</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.level_sc" max="64" min="0.016" default="1" decimals="3">
|
||||
<name>Sidechain Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.mix" max="1" min="0" default="1" decimals="3">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.aecho" type="audio">
|
||||
<name>Echo (avfilter)</name>
|
||||
<description>Add Echo</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.in_gain" max="1" min="0" default="0.6" decimals="3">
|
||||
<name>Input Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.out_gain" max="1" min="0" default="0.3" decimals="3">
|
||||
<name>Output Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.delays" max="90000" min="0" default="1000">
|
||||
<name>Delay</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.decays" max="1" min="0" default="0.5" decimals="2">
|
||||
<name>Decay</name>
|
||||
</parameter>
|
||||
<name>Echo (avfilter)</name>
|
||||
<description>Add Echo</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.in_gain" max="1" min="0" default="0.6" decimals="3">
|
||||
<name>Input Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.out_gain" max="1" min="0" default="0.3" decimals="3">
|
||||
<name>Output Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.delays" max="90000" min="0" default="1000">
|
||||
<name>Delay</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.decays" max="1" min="0" default="0.5" decimals="2">
|
||||
<name>Decay</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
|
||||
|
||||
@@ -1,39 +1,39 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.agate" type="audio">
|
||||
<name>Gate (avfilter)</name>
|
||||
<description>Audio Gate</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.level_in" max="64" min="0.016" default="1" decimals="3">
|
||||
<name>Input Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.range" max="1" min="0" default="0.061" decimals="3">
|
||||
<name>Range</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.threshold" max="1" min="0" default="0.125" decimals="3">
|
||||
<name>Threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.ratio" max="9000" min="1" default="1">
|
||||
<name>Ratio</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.attack" max="9000" min="0.01" default="20" decimals="3" suffif="ms">
|
||||
<name>Attack</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.release" max="9000" min="0.01" default="250" decimals="3" suffif="ms">
|
||||
<name>Release</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.makeup" max="64" min="1" default="1">
|
||||
<name>Make Up Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.knee" max="8" min="1" default="2.828" decimals="3">
|
||||
<name>Knee</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.detection" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Peak,Rms</paramlistdisplay>
|
||||
<name>Detection</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.link" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Average,Maximum</paramlistdisplay>
|
||||
<name>Link Type</name>
|
||||
</parameter>
|
||||
<name>Gate (avfilter)</name>
|
||||
<description>Audio Gate</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.level_in" max="64" min="0.016" default="1" decimals="3">
|
||||
<name>Input Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.range" max="1" min="0" default="0.061" decimals="3">
|
||||
<name>Range</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.threshold" max="1" min="0" default="0.125" decimals="3">
|
||||
<name>Threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.ratio" max="9000" min="1" default="1">
|
||||
<name>Ratio</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.attack" max="9000" min="0.01" default="20" decimals="3" suffif="ms">
|
||||
<name>Attack</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.release" max="9000" min="0.01" default="250" decimals="3" suffif="ms">
|
||||
<name>Release</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.makeup" max="64" min="1" default="1">
|
||||
<name>Make Up Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.knee" max="8" min="1" default="2.828" decimals="3">
|
||||
<name>Knee</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.detection" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Peak,Rms</paramlistdisplay>
|
||||
<name>Detection</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.link" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Average,Maximum</paramlistdisplay>
|
||||
<name>Link Type</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.acontrast" id="avfilter.acontrast" type="audio">
|
||||
<name>Simple Compressor/Expander</name>
|
||||
<description>Simple audio dynamic range compression/expansion filter.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.contrast" max="100" min="0" default="33" decimals="3">
|
||||
<name>Contrast</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,44 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.acrusher" id="avfilter.acrusher" type="audio">
|
||||
<name>Crusher</name>
|
||||
<description>Reduce audio bit resolution.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.level_in" default="1" min="0.015" max="64" decimals="3">
|
||||
<name>Input gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.level_out" default="1" min="0.015" max="64" decimals="3">
|
||||
<name>Output gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.limit" default="1" min="0.06" max="1" decimals="2">
|
||||
<name>Limit</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bits" default="8" min="1" max="64" suffix="bits">
|
||||
<name>Bit reduction</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.mix" default="0.5" min="0" max="1" decimals="2">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.mode" default="lin" paramlist="lin;log">
|
||||
<paramlistdisplay>Linear,Logarithmic</paramlistdisplay>
|
||||
<name>Mode</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.dc" default="1" min="0.25" max="4" decimals="2">
|
||||
<name>DC</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.aa" default="0.5" min="0" max="1" decimals="2">
|
||||
<name>Anti-aliasing</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.samples" default="1" min="1" max="250" suffix="samples">
|
||||
<name>Sample reduction</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.lfo" default="0">
|
||||
<name>Enable LFO</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.lforange" default="20" min="1" max="250">
|
||||
<name>LFO depth</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.lforate" default="0.3" min="0.01" max="200" decimals="2">
|
||||
<name>LFO rate</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.alimiter" id="avfilter.alimiter" type="audio">
|
||||
<name>Limiter</name>
|
||||
<description>Audio lookahead limiter.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.level_in" default="1" min="0.01" max="64" decimals="2">
|
||||
<name>Input gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.level_out" default="1" min="0.01" max="64" decimals="2">
|
||||
<name>Output gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.limit" default="1" min="0.06" max="1" decimals="2">
|
||||
<name>Limit</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.attack" default="5" min="0.1" max="80" decimals="2">
|
||||
<name>Attack</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.release" default="50" min="1" max="8000">
|
||||
<name>Release</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.asc" default="0">
|
||||
<name>Enable ASC</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.asc_level" default="0.5" min="0" max="1" decimals="1">
|
||||
<name>ASC level</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.level" default="0">
|
||||
<name>Normalize to 0dB</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,35 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.allpass" id="avfilter.allpass" type="audio">
|
||||
<name>Allpass</name>
|
||||
<description>Apply a two-pole all-pass filter with central frequency (in Hz) frequency, and filter-width width. An all-pass filter changes the audio’s frequency to phase relationship without changing its frequency to amplitude relationship.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.f" default="3000" min="20" max="20000" suffix="Hz">
|
||||
<name>Central frequency</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
|
||||
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay>
|
||||
<name>Method</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.w" default="707.1" min="1" max="9999" decimals="2">
|
||||
<name>Filter-width</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.m" default="1" min="0" max="1" decimals="2">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.n" default="0">
|
||||
<name>Normalize</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.o" default="2" paramlist="1;2">
|
||||
<paramlistdisplay>1,2</paramlistdisplay>
|
||||
<name>Order</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.a" default="di" paramlist="di;dii;tdii;latt">
|
||||
<paramlistdisplay>di,dii,tdii,latt</paramlistdisplay>
|
||||
<name>Transform type</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.r" default="auto" paramlist="auto;s16;s32;f32;f64">
|
||||
<paramlistdisplay>Auto,s16,s32,f32,f64</paramlistdisplay>
|
||||
<name>Filter precision</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,26 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.aphaser" id="avfilter.aphaser" type="audio">
|
||||
<name>Phaser</name>
|
||||
<description>Audio lookahead limiter.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.in_gain" default="0.4" min="0" max="1" decimals="2">
|
||||
<name>Input gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.out_gain" default="0.74" min="0" max="100" decimals="2">
|
||||
<name>Output gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.delay" default="3" min="0" max="5">
|
||||
<name>Delay in milliseconds</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.decay" default="0.4" min="0" max="0.99" decimals="2">
|
||||
<name>Attack</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.speed" default="0.5" min="0.1" max="2" decimals="2">
|
||||
<name>Release</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.type" default="t" paramlist="t;s">
|
||||
<paramlistdisplay>Triangular,Sinusoidal</paramlistdisplay>
|
||||
<name>Modulation type</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,43 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.apulsator" id="avfilter.apulsator" type="audio">
|
||||
<name>Pulsator</name>
|
||||
<description> Audio pulsator.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.level_in" default="1" min="0.015" max="64" decimals="3">
|
||||
<name>Input gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.level_out" default="1" min="0.015" max="64" decimals="3">
|
||||
<name>Output gain</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.mode" default="sine" paramlist="sine;triangle;square;sawup;sawdown">
|
||||
<paramlistdisplay>sine,triangle,square,sawup,sawdown</paramlistdisplay>
|
||||
<name>Mode</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.amount" default="1" min="0.00" max="1" decimals="2">
|
||||
<name>Modulation</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.offset_l" default="0" min="0" max="1" decimals="2">
|
||||
<name>Offset L</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.offset_r" default="0.5" min="0" max="1" decimals="2">
|
||||
<name>Offset R</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.width" default="1" min="0" max="2" decimals="2">
|
||||
<name>Pulse width</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.timing" default="bpm" paramlist="bpm;ms;hz">
|
||||
<paramlistdisplay>bpm,ms,Hz</paramlistdisplay>
|
||||
<name>Timing</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bpm" default="120" min="30" max="300" suffix="bpm">
|
||||
<name>BPM</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.ms" default="500" min="10" max="2000" suffix="ms">
|
||||
<name>Milliseconds</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.hz" default="2" min="0.01" max="100" decimals="2">
|
||||
<name>Frequency in Hz</name>
|
||||
<comment>Only used if timing is set to hz.</comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,28 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.atadenoise" id="avfilter.atadenoise">
|
||||
<name>Adaptive Temporal Averaging Denoiser</name>
|
||||
<description>Apply an Adaptive Temporal Averaging Denoiser to the video input. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.0a" default="0.02" min="0" max="0.3" decimals="2">
|
||||
<name>A threshold for 1st plane</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.0b" default="0.04" min="0" max="5" decimals="2">
|
||||
<name>B threshold for 1st plane</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.1a" default="0.02" min="0" max="0.3" decimals="2">
|
||||
<name>A threshold for 2nd plane</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.1b" default="0.04" min="0" max="5" decimals="2">
|
||||
<name>B threshold for 2nd plane</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.2a" default="0.02" min="0" max="0.3" decimals="2">
|
||||
<name>A threshold for 3rd plane</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.2b" default="0.04" min="0" max="5" decimals="2">
|
||||
<name>B threshold for 3rd plane</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.s" default="9" min="5" max="129" odd="1">
|
||||
<name>Number of frames for averaging</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.avgblur" id="avfilter.avgblur">
|
||||
<name>Average Blur</name>
|
||||
<description>Apply average blur filter. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.sizeX" default="1" min="1" max="500" factor="1">
|
||||
<name>X size</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.sizeY" default="0" min="0" max="500" factor="1">
|
||||
<name>Y size</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7">
|
||||
<paramlistdisplay>Alpha,Y,U,V,Red,Green,Blue,All</paramlistdisplay>
|
||||
<name>Planes</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.bandpass" id="avfilter.bandpass" type="audio">
|
||||
<name>Band-pass</name>
|
||||
<description>Apply a two-pole Butterworth band-pass filter with central frequency, and (3dB-point) band-width width. The csg option selects a constant skirt gain (peak gain = Q) instead of the default: constant 0dB peak gain. The filter roll off at 6dB per octave (20dB per decade). </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.f" default="3000" min="20" max="20000" suffix="Hz">
|
||||
<name>Central Frequency</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.csg" default="0">
|
||||
<name>Constant skirt gain</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
|
||||
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay>
|
||||
<name>Method</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.w" default="0.5" min="1" max="9999" decimals="1">
|
||||
<name>Filter-width</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.m" default="1" min="0" max="1" decimals="2">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.n" default="0">
|
||||
<name>Normalize</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.a" default="di" paramlist="di;dii;tdii;latt">
|
||||
<paramlistdisplay>di,dii,tdii,latt</paramlistdisplay>
|
||||
<name>Transform type</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.r" default="auto" paramlist="auto;s16;s32;f32;f64">
|
||||
<paramlistdisplay>Auto,s16,s32,f32,f64</paramlistdisplay>
|
||||
<name>Filter precision</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.bandreject" id="avfilter.bandreject" type="audio">
|
||||
<name>Band-Reject</name>
|
||||
<description>Apply a two-pole Butterworth band-reject filter with central frequency frequency, and (3dB-point) band-width width. The filter roll off at 6dB per octave (20dB per decade).</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.f" default="3000" min="20" max="20000" suffix="Hz">
|
||||
<name>Central frequency</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
|
||||
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay>
|
||||
<name>Method</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.w" default="0.5" min="0.1" max="9999" decimals="1">
|
||||
<name>Filter-width</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.m" default="1" min="0" max="1" decimals="2">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.n" default="0">
|
||||
<name>Normalize</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.a" default="di" paramlist="di;dii;tdii;latt">
|
||||
<paramlistdisplay>di,dii,tdii,latt</paramlistdisplay>
|
||||
<name>Transform type</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.r" default="auto" paramlist="auto;s16;s32;f32;f64">
|
||||
<paramlistdisplay>Auto,s16,s32,f32,f64</paramlistdisplay>
|
||||
<name>Filter precision</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,38 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.bass" id="avfilter.bass" type="audio">
|
||||
<name>Bass</name>
|
||||
<description>Apply a two-pole all-pass filter with central frequency (in Hz) frequency, and filter-width width. Boost or cut lower frequencies.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.g" default="0" min="-20" max="20" suffix="dB">
|
||||
<name>Gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.f" default="100" min="20" max="20000" suffix="Hz">
|
||||
<name>Central frequency</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.t" default="h" paramlist="h;q;o;s;k">
|
||||
<paramlistdisplay>Hz,Q-Factor,Octave,Slope,KHz</paramlistdisplay>
|
||||
<name>Method</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.w" default="0.5" min="1" max="9999" decimals="2">
|
||||
<name>Filter-width</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.p" default="2" paramlist="1;2">
|
||||
<paramlistdisplay>1,2</paramlistdisplay>
|
||||
<name>Poles</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.m" default="1" min="0" max="1" decimals="2">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.n" default="0">
|
||||
<name>Normalize</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.a" default="di" paramlist="di;dii;tdii;latt">
|
||||
<paramlistdisplay>di,dii,tdii,latt</paramlistdisplay>
|
||||
<name>Transform type</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.r" default="auto" paramlist="auto;s16;s32;f32;f64">
|
||||
<paramlistdisplay>Auto,s16,s32,f32,f64</paramlistdisplay>
|
||||
<name>Filter precision</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,19 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.bilateral" id="avfilter.bilateral">
|
||||
<name>Bilateral</name>
|
||||
<description>Apply bilateral filter, spatial smoothing while preserving edges.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.sigmaS" min="0" max="512" default="0.1" decimals="3">
|
||||
<name>Spatial sigma</name>
|
||||
<comment>Set sigma of gaussian function to calculate spatial weight.</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.sigmaR" min="0" max="1" default="0.1" decimals="3">
|
||||
<name>Range sigma</name>
|
||||
<comment>Set sigma of gaussian function to calculate range weight.</comment>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.planes" default="1" paramlist="0;1;2;3;4;5;6;7;">
|
||||
<paramlistdisplay>Alpha,Y,U,V,Red,Green,Blue,All,</paramlistdisplay>
|
||||
<name>Planes</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.boxblur" id="avfilter.boxblur">
|
||||
<name>Planes Blur</name>
|
||||
<description>Set an expression for the box radius in pixels used for blurring the corresponding input plane.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.lr" max="540" min="0" default="2">
|
||||
<name>Luma Radius</name>
|
||||
<comment>Radius of the luma blurring box</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.lp" max="100" min="0" default="0">
|
||||
<name>Luma Power</name>
|
||||
<comment>How many times should the boxblur be applied to luma</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.cr" max="480" min="0" default="5">
|
||||
<name>Chroma Radius</name>
|
||||
<comment>Radius of the chroma blurring box</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.cp" max="100" min="0" default="0">
|
||||
<name>Chroma Power</name>
|
||||
<comment>How many times should the boxblur be applied to chroma</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.ar" max="540" min="0" default="5">
|
||||
<name>Alpha Radius</name>
|
||||
<comment>Radius of the alpha blurring box</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.ap" max="100" min="0" default="0">
|
||||
<name>Alpha Power</name>
|
||||
<comment>How many times should the boxblur be applied to alpha</comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.bs2b" id="avfilter.bs2b" type="audio">
|
||||
<name>Stereo to binaural</name>
|
||||
<description>Bauer stereo to binaural transformation.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="list" name="av.profile" default="default" paramlist="default;cmoy;jmeier">
|
||||
<paramlistdisplay>Default level (fcut=700 feed=50),Chu Moy circuit (fcut=700 feed=60),Jan Meier circuit (fcut=650 feed=95)</paramlistdisplay>
|
||||
<name>Pre-defined crossfeed level</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.fcut" default="700" min="0" max="2000" suffix="Hz">
|
||||
<name>Lowpass Cut frequency</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.feed" default="50" min="0" max="150" suffix="dB">
|
||||
<name>Feed level</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,19 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.bwdif" id="avfilter.bwdif">
|
||||
<name>Bob Weaver Deinterlacer</name>
|
||||
<description>Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic interpolation algorithms. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="list" name="av.mode" default="1" paramlist="0;1">
|
||||
<paramlistdisplay>Send frame,Send field</paramlistdisplay>
|
||||
<name>Mode</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.parity" default="-1" paramlist="0;1;-1">
|
||||
<paramlistdisplay>Top field first,Bottomfield first,Auto</paramlistdisplay>
|
||||
<name>Parity</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.deint" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Deint all frames,Deint interlaced frames only</paramlistdisplay>
|
||||
<name>Deinterlace</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.cas" id="avfilter.cas">
|
||||
<name>Contrast Adaptive Sharpen</name>
|
||||
<description>Apply Contrast Adaptive Sharpen filter to video stream.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.strength" min="0" max="1" default="0" decimals="3">
|
||||
<name>Strength</name>
|
||||
<comment>Set the sharpening strength.</comment>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.planes" default="1" paramlist="0;1;2;3;4;5;6;7;">
|
||||
<paramlistdisplay>Alpha,Y,U,V,Red,Green,Blue,All,</paramlistdisplay>
|
||||
<name>Planes</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,25 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.chromahold" id="avfilter.chromahold">
|
||||
<name>Chroma Hold</name>
|
||||
<description>Remove all color information for all colors except for certain one. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="color" name="av.color" notintimeline="1">
|
||||
<name>Color key</name>
|
||||
<comment>The color which will not be replaced with neutral chroma</comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.similarity" default="0.01" max="1.00" min="0.01" decimals="2" notintimeline="1">
|
||||
<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 type="animated" name="av.blend" default="0" max="1" min="0" decimals="2" notintimeline="1">
|
||||
<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 type="bool" name="av.yuv" default="false">
|
||||
<name>YUV color</name>
|
||||
<comment><![CDATA[Select this if the clip has YUV data instead of RGB.]]></comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,32 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.chromanr" id="avfilter.chromanr">
|
||||
<name>Chroma Noise Reduction</name>
|
||||
<description>Reduce chrominance noise.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.thres" default="30" min="1" max="200">
|
||||
<name>Y+U+V Threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.sizew" default="5" min="1" max="100" decimals="0">
|
||||
<name>Horizontal size</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.sizeh" default="5" min="1" max="100" decimals="0">
|
||||
<name>Vertical size</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.stepw" default="1" min="1" max="50" decimals="0">
|
||||
<name>Horizontal step</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.threy" default="200" min="1" max="200" decimals="0">
|
||||
<name>Y threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.threu" default="200" min="1" max="200" decimals="0">
|
||||
<name>U threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.threv" default="200" min="1" max="200" decimals="0">
|
||||
<name>V threshold</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.distance" default="0" paramlist="manhattan;euclidean">
|
||||
<paramlistdisplay>Manhattan,Euclidean</paramlistdisplay>
|
||||
<name>Distance</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,23 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.chromashift" id="avfilter.chromashift">
|
||||
<name>Chroma shift</name>
|
||||
<description>Shift chroma pixels horizontally and/or vertically. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.cbh" default="0" min="-255" max="255" factor="1">
|
||||
<name>Chroma-blue H shift</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.cbv" default="0" min="-255" max="255" factor="1">
|
||||
<name>Chroma-blue V shift</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.crh" default="0" min="-255" max="255" factor="1">
|
||||
<name>Chroma-red H shift</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.crv" default="0" min="-255" max="255" factor="1">
|
||||
<name>Chroma-red V shift</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.edge" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Smear,Wrap</paramlistdisplay>
|
||||
<name>Edge mode</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,37 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorbalance" id="avfilter.colorbalance">
|
||||
<name>Color balance</name>
|
||||
<description>Modify intensity of primary colors (red, green and blue) of input frames. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.rs" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Red Shadow</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gs" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Green Shadow</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bs" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Blue Shadow</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.rm" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Red Midtones</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gm" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Green Midtones</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bm" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Blue Midtones</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.rh" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Red Highlights</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gh" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Green Highlights</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bh" default="0" min="-1" max="1" decimals="2">
|
||||
<name>Blue Highlights</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.pl" default="0">
|
||||
<name>Preserve lightness</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorchannelmixer" id="avfilter.colorchannelmixer">
|
||||
<name>Color Channel Mixer</name>
|
||||
<description>Modifies a color channel by adding the values associated to the other channels of the same pixels</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.rr" default="1" min="0" max="2" decimals="2">
|
||||
<name>Red-Red</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.rg" default="0" min="-2" max="2" decimals="2">
|
||||
<name>Red-Green</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.rb" default="0" min="-2" max="2" decimals="2">
|
||||
<name>Red-Blue</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gr" default="0" min="-2" max="2" decimals="2">
|
||||
<name>Green-Red</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gg" default="1" min="0" max="2" decimals="2">
|
||||
<name>Green-Green</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gb" default="0" min="-2" max="2" decimals="2">
|
||||
<name>Green-Blue</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.br" default="0" min="-2" max="2" decimals="2">
|
||||
<name>Blue-Red</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bg" default="0" min="-2" max="2" decimals="2">
|
||||
<name>Blue-Green</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bb" default="1" min="0" max="2" decimals="2">
|
||||
<name>Blue-Blue</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,28 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorcontrast" id="avfilter.colorcontrast">
|
||||
<name>Color Contrast</name>
|
||||
<description>Adjust color contrast between RGB components.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.rc" default="0" min="-1" max="1" decimals="3">
|
||||
<name>Red-Cyan contrast</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.gm" default="0" min="-1" max="1" decimals="3">
|
||||
<name>Green-Magenta contrast</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.by" default="0" min="-1" max="1" decimals="3">
|
||||
<name>Blue-Yellow contrast</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.rcw" default="0" min="0" max="1" decimals="3">
|
||||
<name>Red-Cyan weight</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.gmw" default="0" min="0" max="1" decimals="3">
|
||||
<name>Green-Magenta weight</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.byw" default="0" min="0" max="1" decimals="3">
|
||||
<name>Blue-Yellow weight</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.pl" default="0" min="0" max="1" decimals="3">
|
||||
<name>Preserving lightness</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,26 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorcorrect" id="avfilter.colorcorrect">
|
||||
<name>Color Correct</name>
|
||||
<description>Adjust color white balance selectively for blacks and whites.This filter operates in YUV colorspace.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.rl" default="0" min="-1" max="1" decimals="3">
|
||||
<name>Red shadow spot</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.bl" default="0" min="-1" max="1" decimals="3">
|
||||
<name>Blue shadow spot</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.rh" default="0" min="-1" max="1" decimals="3">
|
||||
<name>Red highlight spot</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.bh" default="0" min="-1" max="1" decimals="3">
|
||||
<name>Blue highlight spot</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.saturation" default="1" min="-3" max="3" decimals="3">
|
||||
<name>Saturation</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.analyze" default="manual" paramlist="manual;average;minimax;median">
|
||||
<paramlistdisplay>Manual,Average,Minimax,Median</paramlistdisplay>
|
||||
<name>Analyze mode</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,16 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorhold" id="avfilter.colorhold">
|
||||
<name>Color Hold</name>
|
||||
<description>Remove all color information for all RGB colors except for certain one. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="fixedcolor" name="av.color">
|
||||
<name>Color key</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.similarity" default="1" max="1" min="0" decimals="2">
|
||||
<name>Similarity</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.blend" default="0" max="1" min="0" decimals="2">
|
||||
<name>Blend</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,19 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorize" id="avfilter.colorize">
|
||||
<name>Color Overlay</name>
|
||||
<description>Overlay a solid color on the video stream with mixing feature.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.hue" default="0" min="0" max="360" decimals="3">
|
||||
<name> Hue</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.saturation" default="0.5" min="0" max="1" decimals="3">
|
||||
<name>Saturation</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.lightness" default="0.5" min="0" max="1" decimals="3">
|
||||
<name>Lightness</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.mix" default="1" min="0" max="1" decimals="3">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,43 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorlevels" id="avfilter.colorlevels">
|
||||
<name>Color levels</name>
|
||||
<description>Adjust video input frames using levels. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.rimin" default="0" min="0" max="1" decimals="2">
|
||||
<name>Red black input</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.rimax" default="1" min="0" max="1" decimals="2">
|
||||
<name>Red white input</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.romin" default="0" min="0" max="1" decimals="2">
|
||||
<name>Red black output</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.romax" default="1" min="0" max="1" decimals="2">
|
||||
<name>Red white output</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gimin" default="0" min="0" max="1" decimals="2">
|
||||
<name>Green black input</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gimax" default="1" min="0" max="1" decimals="2">
|
||||
<name>Green white input</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gomin" default="0" min="0" max="1" decimals="2">
|
||||
<name>Green black output</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gomax" default="1" min="0" max="1" decimals="2">
|
||||
<name>Green white output</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bimin" default="0" min="0" max="1" decimals="2">
|
||||
<name>Blue black input</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bimax" default="1" min="0" max="1" decimals="2">
|
||||
<name>Blue white input</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bomin" default="0" min="0" max="1" decimals="2">
|
||||
<name>Blue black output</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.bomax" default="1" min="0" max="1" decimals="2">
|
||||
<name>Blue white output</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colormatrix" id="avfilter.colormatrix">
|
||||
<name>Color Matrix</name>
|
||||
<description>Convert color matrix.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="list" name="av.src" default="bt709" paramlist="bt709;fcc;bt601;bt470;bt470bg;smpte170m;smpte240m;bt2020">
|
||||
<paramlistdisplay>BT.709,FCC,BT.601,BT.470,BT.470BG,SMPTE-170M,BT.2020</paramlistdisplay>
|
||||
<name>Source color Matrix</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.dst" default="smpte240m" paramlist="bt709;fcc;bt601;bt470;bt470bg;smpte170m;smpte240m;bt2020">
|
||||
<paramlistdisplay>BT.709,FCC,BT.601,BT.470,BT.470BG,SMPTE-170M,BT.2020</paramlistdisplay>
|
||||
<name>Destination color Matrix</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,62 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colorspace" id="avfilter.colorspace">
|
||||
<name>Color Space</name>
|
||||
<description>Convert colorspace, transfer characteristics or color primaries. Input video needs to have an even size.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="list" name="av.all" default="bt709" paramlist="bt470m;bt470bg;bt601-6-525;bt601-6-625;bt709;smpte170m;smpte240m;bt2020">
|
||||
<paramlistdisplay>BT.470,BT.470BG,BT.601-6 525,BT.601-6 625,BT.709,SMPTE-170M,SMPTE-240M,BT.2020</paramlistdisplay>
|
||||
<name>Color properties</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.space" default="bt709" paramlist="bt709;fcc;bt470bg;smpte170m;smpte240m;ycgco;bt2020ncl">
|
||||
<paramlistdisplay>BT.709,FCC,BT.470BG,SMPTE-170M,SMPTE-240M,YCgCo,BT.2020 non-constant luma</paramlistdisplay>
|
||||
<name>Output Color Space</name>
|
||||
</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">
|
||||
<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>
|
||||
</parameter>
|
||||
<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>
|
||||
<name>Output Color Primaries</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.range" default="pc" paramlist="tv;mpeg;pc;jpeg">
|
||||
<paramlistdisplay>TV (restricted range),MPEG (restricted range),PC (FULL range),JPEG (FULL range)</paramlistdisplay>
|
||||
<name>Output Color Range</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.format" default="yuv420p" paramlist="yuv420p;yuv420p10;yuv420p12;yuv422p;yuv422p10;yuv422p12;yuv444p;yuv444p10;yuv444p12">
|
||||
<paramlistdisplay>YUV 4:2:0 planar 8-bits,YUV 4:2:0 planar 10-bits,YUV 4:2:0 planar 12-bits,YUV 4:2:2 planar 8-bits,YUV 4:2:2 planar 10-bits,YUV 4:2:2 planar 12-bits,YUV 4:4:4 planar 8-bits,YUV 4:4:4 planar 10-bits,YUV 4:4:4 planar 12-bits</paramlistdisplay>
|
||||
<name>Output Color Format</name>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.fast" default="0">
|
||||
<name>Fast Conversion</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.dither" default="none" paramlist="none;fsb">
|
||||
<paramlistdisplay>No dithering,Floyd-Steinberg dithering</paramlistdisplay>
|
||||
<name>Dithering Mode</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.wpadapt" default="identity" paramlist="bradford;vonkries;identity">
|
||||
<paramlistdisplay>Bradford whitepoint adaptation,von Kries whitepoint adaptation,Identity whitepoint adaptation</paramlistdisplay>
|
||||
<name>Whitepoint adaptation mode</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.iall" default="bt709" paramlist="bt470m;bt470bg;bt601-6-525;bt601-6-625;bt709;smpte170m;smpte240m;bt2020">
|
||||
<paramlistdisplay>BT.470,BT.470BG,BT.601-6 525,BT.601-6 625,BT.709,SMPTE-170M,SMPTE-240M,BT.2020</paramlistdisplay>
|
||||
<name>Override all input properties at once</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.ispace" default="bt709" paramlist="bt709;fcc;bt470bg;smpte170m;smpte240m;ycgco;bt2020ncl">
|
||||
<paramlistdisplay>BT.709,FCC,BT.470BG,SMPTE-170M,SMPTE-240M,YCgCo,BT.2020 non-constant luma</paramlistdisplay>
|
||||
<name>Override input colorspace</name>
|
||||
</parameter>
|
||||
<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>
|
||||
<name>Override input color primaries</name>
|
||||
</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">
|
||||
<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>Override input transfer characteristics</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.irange" default="pc" paramlist="tv;mpeg;pc;jpeg">
|
||||
<paramlistdisplay>TV (restricted range),MPEG (restricted range),PC (FULL range),JPEG (FULL range)</paramlistdisplay>
|
||||
<name>Override input color range</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,19 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.colortemperature" id="avfilter.colortemperature">
|
||||
<name>Color Temperature</name>
|
||||
<description>Adjust color temperature in video to simulate variations in ambient color temperature. </description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.temperature" default="6500" min="1000" max="40000" decimals="1" suffix="°K">
|
||||
<name>Temperature</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.mix" default="1" min="0" max="1" decimals="3">
|
||||
<name>Mix</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.saturation" default="0.5" min="0" max="1" decimals="3">
|
||||
<name>Saturation</name>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.pl" default="0" min="0" max="1" decimals="3">
|
||||
<name>Preserve lightness</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,27 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.compand" id="avfilter.compand" type="audio">
|
||||
<name>Compressor/Expander</name>
|
||||
<description>Compress or expand the audio’s dynamic range.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.attacks" default="0" min="0" max="3" decimals="3" suffix="sec">
|
||||
<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>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.decays" default="0.8" min="0" max="3" decimals="3" suffix="sec">
|
||||
<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>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.soft-knee" default="0.01" min="0.01" max="90" decimals="2" suffix="dB">
|
||||
<name>Soft-Knee</name>
|
||||
<comment>Set the curve radius in dB for all joints.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gain" default="0" min="-90" max="90" decimals="2" suffix="dB">
|
||||
<name>Gain</name>
|
||||
<comment>Set the additional gain in dB to be applied at all points on the transfer function. This allows for easy adjustment of the overall gain.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.volume" default="0" min="-90" max="0" decimals="2" suffix="dB">
|
||||
<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>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.compensationdelay" id="avfilter.compensationdelay" type="audio">
|
||||
<name>Compensation Delay</name>
|
||||
<description>Compensation Delay Line is a metric based delay to compensate differing positions of microphones or speakers.
|
||||
For example, you have recorded guitar with two microphones placed in different locations. Because the front of sound wave has fixed speed in normal conditions, the phasing of microphones can vary and depends on their location and interposition. The best sound mix can be achieved when these microphones are in phase (synchronized). Note that a distance of ~30 cm between microphones makes one microphone capture the signal in antiphase to the other microphone. That makes the final mix sound moody. This filter helps to solve phasing problems by adding different delays to each microphone track and make them synchronized.
|
||||
|
||||
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>
|
||||
<parameter type="constant" name="av.mm" default="0" min="0" max="10" suffix="mm">
|
||||
<name>Millimeter distance</name>
|
||||
<comment>Set millimeters distance. This is compensation distance for fine tuning.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.cm" default="0" min="0" max="100" suffix="cm">
|
||||
<name>Centimeter distance</name>
|
||||
<comment>Set cm distance. This is compensation distance for tightening distance setup.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.m" default="0" min="0" max="100" suffix="m">
|
||||
<name>Meter distance</name>
|
||||
<comment>Set meters distance. This is compensation distance for hard distance setup.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.dry" default="0" min="0" max="1" decimals="3">
|
||||
<name>Dry amount</name>
|
||||
<comment>Set dry amount. Amount of unprocessed (dry) signal.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.wet" default="1" min="0" max="1" decimals="3">
|
||||
<name>Wet amount</name>
|
||||
<comment>Set wet amount. Amount of processed (wet) signal.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.temp" default="20" min="-50" max="50" suffix="°C">
|
||||
<name>Temperature</name>
|
||||
<comment>Set temperature in degrees Celsius. This is the temperature of the environment.</comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,27 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.crossfeed" id="avfilter.crossfeed" type="audio">
|
||||
<name>Crossfeed</name>
|
||||
<description>Apply headphone crossfeed filter.
|
||||
Crossfeed is the process of blending the left and right channels of stereo audio recording. It is mainly used to reduce extreme stereo separation of low frequencies.
|
||||
The intent is to produce more speaker like sound to the listener.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.strength" default="0.2" min="0" max="1" decimals="3">
|
||||
<name>Strength</name>
|
||||
<comment>Set strength of crossfeed.
|
||||
Default is 0.2. Allowed range is from 0 to 1. This sets gain of low shelf filter for side part of stereo image.
|
||||
Default is -6dB. Max allowed is -30db when strength is set to 1.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.range" default="0.5" min="0.01" max="1" decimals="3">
|
||||
<name>Range</name>
|
||||
<comment>Set soundstage wideness.
|
||||
Default is 0.5. Allowed range is from 0 to 1. This sets cut off frequency of low shelf filter.
|
||||
Default is cut off near 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz. </comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.level_in" default="0.9" min="0" max="1" decimals="3">
|
||||
<name>Input gain</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.level_out" default="1" min="0" max="1" decimals="3">
|
||||
<name>Output gain</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.crystalizer" id="avfilter.crystalizer" type="audio">
|
||||
<name>Crystalizer</name>
|
||||
<description>Simple algorithm for audio noise sharpening.
|
||||
This filter linearly increases differences between each audio sample.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.i" default="2" min="-10" max="10" decimals="2">
|
||||
<name>Intensity</name>
|
||||
<comment>Sets the intensity of effect (default: 2.0).
|
||||
Must be in range between -10.0 to 0 (unchanged sound) to 10.0 (maximum effect).
|
||||
To inverse filtering use negative value. </comment>
|
||||
</parameter>
|
||||
<parameter type="bool" name="av.c" default="1">
|
||||
<name>Enable clipping</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,32 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.datascope" id="avfilter.datascope">
|
||||
<name>DataScope</name>
|
||||
<description>Video data analysis</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="list" name="av.s" default="hd720" paramlist="sqcif;film;pal;ntsc;hd480;hd720;hd1080;2k;4k">
|
||||
<paramlistdisplay>128p,360p,PAL SD,NTSC SD,480p,720HD,1080FullHD,2K,4K</paramlistdisplay>
|
||||
<name>Size</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.x" max="%width" min="0" default="0" factor="1">
|
||||
<name>X offset</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.y" max="%height" min="0" default="0" factor="1">
|
||||
<name>Y offset</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.m" default="mono" paramlist="mono;color;color2">
|
||||
<paramlistdisplay>mono,color,color2</paramlistdisplay>
|
||||
<name>Mode</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.axis" default="0" paramlist="0;1">
|
||||
<paramlistdisplay>Off,On</paramlistdisplay>
|
||||
<name>Show Axis</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.o" max="1" min="0" default="0.75" decimals="2">
|
||||
<name>Opacity</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.f" default="hex" paramlist="hex;dec">
|
||||
<paramlistdisplay>Hex,Dec</paramlistdisplay>
|
||||
<name>Format</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,20 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.dblur" id="avfilter.dblur">
|
||||
<name>Directional Blur</name>
|
||||
<description>Apply directional blur filter</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="animated" name="av.angle" max="360" min="0" decimals="1" default="45" suffix="°">
|
||||
<name>Angle</name>
|
||||
<comment><![CDATA[Sets the angle for the direction]]></comment>
|
||||
</parameter>
|
||||
<parameter type="animated" name="av.radius" max="8192" min="0" default="5">
|
||||
<name>Radius</name>
|
||||
<comment><![CDATA[Sets the radius for the direction]]></comment>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7">
|
||||
<paramlistdisplay>Alpha,Luminance (Y plane),Chroma (U plane),Chroma (V plane),Red,Green,Blue,All</paramlistdisplay>
|
||||
<name>Planes to filter</name>
|
||||
<comment><![CDATA[Sets the color space plane the effect is applied to]]></comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.dcshift" id="avfilter.dcshift" type="audio">
|
||||
<name>DC shift</name>
|
||||
<description>Apply a DC shift to the audio.
|
||||
This can be useful to remove a DC offset (caused perhaps by a hardware problem in the recording chain) from the audio.
|
||||
The effect of a DC offset is reduced headroom and hence volume. The astats filter can be used to determine if a signal has a DC offset.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.shift" default="0" min="-1" max="1" decimals="3">
|
||||
<name>DC shift</name>
|
||||
<comment>Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift the audio.</comment>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.limitergain" default="0" min="0" max="1" decimals="3">
|
||||
<name>Limiter gain</name>
|
||||
<comment>Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is used to prevent clipping.</comment>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,16 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.dctdnoiz" id="avfilter.dctdnoiz">
|
||||
<name>DCT Denoiser</name>
|
||||
<description>Denoise frames using 2D DCT frequency domain filtering</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.s" default="0" max="999" min="0" decimals="3">
|
||||
<name>Sigma</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.overlap" default="0" max="7" min="0" factor="1">
|
||||
<name>Overlap</name>
|
||||
</parameter>
|
||||
<parameter type="switch" name="av.n" default="3" max="4" min="3">
|
||||
<name>Block size</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.deband" id="avfilter.deband">
|
||||
<name>Deband</name>
|
||||
<description>Remove banding artifacts from input video. It works by replacing banded pixels with average value of referenced pixels</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="constant" name="av.1thr" default="0.02" max="0.5" min="0" decimals="3">
|
||||
<name>1st plane threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.2thr" default="0.02" max="0.5" min="0" decimals="3">
|
||||
<name>2nd plane threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.3thr" default="0.02" max="0.5" min="0" decimals="3">
|
||||
<name>3rd plane threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.4thr" default="0.02" max="0.5" min="0" decimals="3">
|
||||
<name>4th plane threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.r" default="16" max="32" min="-32" decimals="0">
|
||||
<name>Range</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.d" default="6.283" max="6.283" min="-6.283" decimals="3">
|
||||
<name>Direction</name>
|
||||
</parameter>
|
||||
<parameter type="switch" name="av.b" default="1" max="1" min="0">
|
||||
<name>Blur</name>
|
||||
</parameter>
|
||||
<parameter type="switch" name="av.c" default="0" max="1" min="0">
|
||||
<name>Coupling</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE kpartgui>
|
||||
<effect tag="avfilter.deblock" id="avfilter.deblock">
|
||||
<name>DeBlock</name>
|
||||
<description>Remove blocking artifacts from input video.</description>
|
||||
<author>libavfilter</author>
|
||||
<parameter type="list" name="av.filter" default="strong" paramlist="weak;strong">
|
||||
<paramlistdisplay>Weak,Strong</paramlistdisplay>
|
||||
<name>Filter strength</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.block" default="8" min="4" max="512" factor="1">
|
||||
<name>Block size</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.alpha" default="0.098" min="0" max="1" decimals="3">
|
||||
<name>Alpha threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.beta" default="0.05" min="0" max="1" decimals="3">
|
||||
<name>Beta threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.gamma" default="0.05" min="0" max="1" decimals="3">
|
||||
<name>Gamma threshold</name>
|
||||
</parameter>
|
||||
<parameter type="constant" name="av.delta" default="0.05" min="0" max="1" decimals="3">
|
||||
<name>Delta threshold</name>
|
||||
</parameter>
|
||||
<parameter type="list" name="av.planes" default="1" paramlist="0;1;2;3;4;5;6;7">
|
||||
<paramlistdisplay>All,Y,U,V,Alpha,Red,Green,Blue</paramlistdisplay>
|
||||
<name>Planes</name>
|
||||
</parameter>
|
||||
</effect>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user