Overview
Request 1016 (accepted)
- Update to 0.9.8
+ Fades: timeline shortcut now applies to video on clips
containing video and audio;
+ Copy proxies with 'move project';
+ Remove the MLT processing threads option that never really
worked;
+ Clean encoding profiles using MLT presets and profiles;
+ Support a custom suffix for FFmpeg binaries (mostly for
packagers);
+ Make audio align work asynchronously;
+ Add support for JogShuttle on newer systems, make shuttle
device selection more straightforward, add ProV2 keys;
+ Fix warnings from gcc, cppcheck, clang, scan-build: fixes
many crashs & leaks;
+ Code cleanup (use const ref, fix includes, mem leaks,
optimize...);
+ 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).
- Updated kdenlive-0.9.2-mlt_datadir.patch &
kdenlive-0.9.2-no_avformat.patch.
- Switched to download files service.
kdenlive.changes
Changed
-------------------------------------------------------------------
+Wed May 21 19:37:22 UTC 2014 - dap.darkness@gmail.com
+
+- Update to 0.9.8
+ + Fades: timeline shortcut now applies to video on clips
+ containing video and audio;
+ + Copy proxies with 'move project';
+ + Remove the MLT processing threads option that never really
+ worked;
+ + Clean encoding profiles using MLT presets and profiles;
+ + Support a custom suffix for FFmpeg binaries (mostly for
+ packagers);
+ + Make audio align work asynchronously;
+ + Add support for JogShuttle on newer systems, make shuttle
+ device selection more straightforward, add ProV2 keys;
+ + Fix warnings from gcc, cppcheck, clang, scan-build: fixes
+ many crashs & leaks;
+ + Code cleanup (use const ref, fix includes, mem leaks,
+ optimize...);
+ + 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).
+- Updated kdenlive-0.9.2-mlt_datadir.patch &
+ kdenlive-0.9.2-no_avformat.patch.
+- Switched to download files service.
+
+-------------------------------------------------------------------
Sun Sep 8 18:55:27 UTC 2013 - fisiu@opensuse.org
- Rebuild package to fix PM#86.
kdenlive.spec
Changed
%define qt_version 4.5
Name: kdenlive
-Version: 0.9.6
+Version: 0.9.8
Release: 0
Summary: Non-linear video editor
License: GPL-3.0+
kdenlive-0.9.2-mlt_datadir.patch
Changed
===================================================================
--- src/CMakeLists.txt.orig
+++ src/CMakeLists.txt
-@@ -11,6 +11,24 @@ endif(APPLE)
+@@ -11,6 +11,24 @@
macro_optional_find_package(Nepomuk)
macro_optional_find_package(QJSON)
+ add_definitions(-DMLT_MELTBIN=\\\"\"${MLT_MELTBIN}\"\\\")
+endif(NOT MLT_MELTBIN_failed)
+
- option(WITH_V4L "Build capture support with Video4Linux" ON)
option(WITH_JogShuttle "Build Jog/Shuttle support" ON)
+ set(FFMPEG_SUFFIX "" CACHE STRING "FFmpeg custom suffix")
+
Index: src/mainwindow.cpp
===================================================================
--- src/mainwindow.cpp.orig
+++ src/mainwindow.cpp
-@@ -2183,10 +2183,10 @@ void MainWindow::parseProfiles(const QSt
+@@ -2359,11 +2359,11 @@
}
- if (KdenliveSettings::mltpath().isEmpty())
+ if (KdenliveSettings::mltpath().isEmpty()) {
- KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
+ KdenliveSettings::setMltpath(QString(MLT_DATADIR) + QString("/profiles/"));
+ }
if (KdenliveSettings::rendererpath().isEmpty() || KdenliveSettings::rendererpath().endsWith("inigo")) {
- QString meltPath = QString(MLT_PREFIX) + QString("/bin/melt");
+ QString meltPath = QString(MLT_MELTBIN);
- if (!QFile::exists(meltPath))
+ if (!QFile::exists(meltPath)) {
meltPath = KStandardDirs::findExe("melt");
- KdenliveSettings::setRendererpath(meltPath);
+ }
kdenlive-0.9.2-no_avformat.patch
Changed
-Index: src/renderwidget.cpp
+Index: src/widgets/renderwidget.cpp
===================================================================
---- src/renderwidget.cpp.orig
-+++ src/renderwidget.cpp
+--- src/widgets/renderwidget.cpp.orig
++++ src/widgets/renderwidget.cpp
@@ -1280,53 +1280,47 @@ void RenderWidget::refreshView()
}
===================================================================
--- export/profiles.xml.orig
+++ export/profiles.xml
-@@ -8,6 +8,10 @@
- <profile name="NTSC 720 30p" standard="NTSC" args="f=mpegts acodec=mp2 ab=384k ar=48000 ac=2 vcodec=mpeg2video s=1280x720 vb=19700k g=15 trellis=1 mlt_profile=hdv_720_30p pass=%passes" />
- </group>
+@@ -59,6 +59,10 @@
+ <profile name="Apple Quicktime" bitrates="400,1000,2000" defaultbitrate="2000"
+ extension="mov" args="acodec=aac ab=128k ac=2 ar=48000 vcodec=mpeg4 vb=%bitrate+'k' aspect=%dar pass=%passes" />
+ </group>
++
++ <group name="Raw DV" renderer="libdv" type="av" extension="dv">
++ <profile name="libdv" />
++ </group>
-+<group name="Raw DV" renderer="libdv" type="av" extension="dv">
-+ <profile name="libdv" />
-+</group>
-+
- <group name="Raw DV" renderer="avformat" type="av" extension="dv">
- <profile name="DV PAL 4:3" standard="PAL" args="f=dv pix_fmt=yuv420p s=720x576 mlt_profile=dv_pal" />
- <profile name="DV PAL 16:9" standard="PAL" args="f=dv pix_fmt=yuv420p s=720x576 mlt_profile=dv_pal_wide" />
+ <group name="Raw DV" renderer="avformat" type="av" extension="dv">
+ <profile name="DV PAL 4:3" standard="PAL" args="properties=dv_pal/DV mlt_profile=dv_pal" />
_service
Added
+<services>
+ <service name="download_files"/>
+</services>
Request History
dap created request almost 11 years ago
- Update to 0.9.8
+ Fades: timeline shortcut now applies to video on clips
containing video and audio;
+ Copy proxies with 'move project';
+ Remove the MLT processing threads option that never really
worked;
+ Clean encoding profiles using MLT presets and profiles;
+ Support a custom suffix for FFmpeg binaries (mostly for
packagers);
+ Make audio align work asynchronously;
+ Add support for JogShuttle on newer systems, make shuttle
device selection more straightforward, add ProV2 keys;
+ Fix warnings from gcc, cppcheck, clang, scan-build: fixes
many crashs & leaks;
+ Code cleanup (use const ref, fix includes, mem leaks,
optimize...);
+ 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).
- Updated kdenlive-0.9.2-mlt_datadir.patch &
kdenlive-0.9.2-no_avformat.patch.
- Switched to download files service.
jsjhb accepted request almost 11 years ago
OK
olh wrote almost 11 years ago
Is this really the right place to submit kdenlive? Looks like it should go rather to OBS. kdenlive is broken now.