]> git.sesse.net Git - kdenlive/log
kdenlive
12 years agoFFT based correlation works.
Simon A. Eugster [Mon, 20 Feb 2012 22:42:58 +0000 (23:42 +0100)]
FFT based correlation works.

Previous commit used convolution instead of correlation.

12 years agoWorking on FFT based correlation
Simon A. Eugster [Mon, 20 Feb 2012 12:53:38 +0000 (13:53 +0100)]
Working on FFT based correlation

Correlation for two samples of 3 min length are calculated in 2 ms
compared to 16 ms with O(n²) correlation.
Not the same result yet however ...

12 years agoAudio align: Menu entry names changed
Simon A. Eugster [Sat, 18 Feb 2012 10:08:09 +0000 (11:08 +0100)]
Audio align: Menu entry names changed

12 years agoMoved kiss_fft to the lib/ directory
Simon A. Eugster [Sat, 18 Feb 2012 10:07:32 +0000 (11:07 +0100)]
Moved kiss_fft to the lib/ directory

12 years agoMerge branch 'audioAlign' of git://anongit.kde.org/kdenlive into audioAlign
Jean-Baptiste Mardelle [Fri, 17 Feb 2012 11:07:19 +0000 (12:07 +0100)]
Merge branch 'audioAlign' of git://anongit.kde.org/kdenlive into audioAlign

12 years agoCheck if region is empty in MLT before moving a clip
Jean-Baptiste Mardelle [Fri, 17 Feb 2012 11:06:53 +0000 (12:06 +0100)]
Check if region is empty in MLT before moving a clip

12 years agoAudio align now also handles resizes.
Simon A. Eugster [Fri, 17 Feb 2012 09:15:48 +0000 (10:15 +0100)]
Audio align now also handles resizes.

12 years agoReport error when MLT fails to insert a clip in playlist
Jean-Baptiste Mardelle [Thu, 16 Feb 2012 20:19:35 +0000 (21:19 +0100)]
Report error when MLT fails to insert a clip in playlist
(for example when trying to insert a clip at a negative time)

12 years agoMerge branch 'master' into audioAlign
Jean-Baptiste Mardelle [Thu, 16 Feb 2012 19:52:42 +0000 (20:52 +0100)]
Merge branch 'master' into audioAlign

12 years agoTrying to fix a bug with the clip move undo command. No success.
Simon A. Eugster [Wed, 15 Feb 2012 20:29:13 +0000 (21:29 +0100)]
Trying to fix a bug with the clip move undo command. No success.

12 years agoMerge branch 'next' into audioAlign
Simon A. Eugster [Wed, 15 Feb 2012 17:44:28 +0000 (18:44 +0100)]
Merge branch 'next' into audioAlign

Conflicts:
src/lib/CMakeLists.txt

12 years agoCleanup slideshow clip method, prepare for improved sequence support (still needs...
Jean-Baptiste Mardelle [Wed, 15 Feb 2012 12:41:43 +0000 (13:41 +0100)]
Cleanup slideshow clip  method, prepare for improved sequence support (still needs MLT changes)

12 years agoAdd delay to status bar messages
Simon A. Eugster [Wed, 15 Feb 2012 11:12:06 +0000 (12:12 +0100)]
Add delay to status bar messages

Simplified the status bar code and updated it to queue messages;
Consecutive error messages will not overwrite each other anymore.

Resolves: http://www.kdenlive.org/mantis/view.php?id=2519

12 years agoAuto-align works!
Simon A. Eugster [Tue, 14 Feb 2012 22:01:57 +0000 (23:01 +0100)]
Auto-align works!

1. Add a clip to the timeline and set it as reference
   in the context menu
2. Add a new clip to the timeline and select auto-align in the context menu

Still needs some refinements when dealing with collisions (undo etc.).

12 years agoQString::toStdString() replaced by QString::toLocal8Bit() as KDE4
Simon A. Eugster [Tue, 14 Feb 2012 18:22:32 +0000 (19:22 +0100)]
QString::toStdString() replaced by QString::toLocal8Bit() as KDE4
disables STL support with QT_NO_STL.

Also, changed delete to delete[].

12 years agoAudio alignment libraries moved to src/lib/audio/
Simon A. Eugster [Tue, 14 Feb 2012 15:30:15 +0000 (16:30 +0100)]
Audio alignment libraries moved to src/lib/audio/

I suggest to put other libraries to src/lib/ as well in future.

Some comments added.

12 years agoSVN_SILENT made messages (.desktop file)
Script Kiddy [Tue, 14 Feb 2012 15:27:41 +0000 (16:27 +0100)]
SVN_SILENT made messages (.desktop file)

12 years agoAudio alignment works.
Simon A. Eugster [Tue, 14 Feb 2012 15:05:01 +0000 (16:05 +0100)]
Audio alignment works.

This is at the moment still a brute-force attack (correlation
currently requires O(n²) time) but /works/ and is reasonnably
fast for clips with reasonnable length (not too many minutes).

Later the correlation can be replaced with an FFT version which
would only require O(n log n) time.

Example usage of the executable:
$ ./audioOffset mainVideo.avi someSound.wav

This will e.g. tell you that someSound.wav needs to be shifted
by 42 frames in order to be aligned. The MLT profile can be
specified with --profile=<mlt profile>.

12 years agoCalculating correlation to synchronize audio tracks
Simon A. Eugster [Tue, 14 Feb 2012 12:36:21 +0000 (13:36 +0100)]
Calculating correlation to synchronize audio tracks

12 years agoAudio envelope calculation extracted into own class, mean and standard deviation...
Simon A. Eugster [Tue, 14 Feb 2012 10:58:56 +0000 (11:58 +0100)]
Audio envelope calculation extracted into own class, mean and standard deviation added

12 years agoVolume envelope calculation
Simon A. Eugster [Sun, 12 Feb 2012 15:57:31 +0000 (16:57 +0100)]
Volume envelope calculation

The AudioInfo class reads audio information from a MLT producer
for easy access to sampling rate etc.

AudioOffset now generates the volume envelope of an audio file
and saves it as image.

12 years agoSuccessfully dumping audio information from the input files now :)
Simon A. Eugster [Sun, 12 Feb 2012 11:46:15 +0000 (12:46 +0100)]
Successfully dumping audio information from the input files now :)

12 years agoMindmap updated
Simon A. Eugster [Sat, 11 Feb 2012 15:09:03 +0000 (16:09 +0100)]
Mindmap updated

12 years agoAudio alignment: Attempts to get familiar with mlt
Simon A. Eugster [Sat, 11 Feb 2012 15:08:38 +0000 (16:08 +0100)]
Audio alignment: Attempts to get familiar with mlt

12 years agoHide proxy checkbox when decompressing archived project
Jean-Baptiste Mardelle [Tue, 7 Feb 2012 22:12:50 +0000 (23:12 +0100)]
Hide proxy checkbox when decompressing archived project

12 years agoWhen opening project with proxies but missing source clips, allow to search for origi...
Jean-Baptiste Mardelle [Tue, 7 Feb 2012 16:30:03 +0000 (17:30 +0100)]
When opening project with proxies but missing source clips, allow to search for original clips on computer

12 years agoAllow archiving proxy clips only
Jean-Baptiste Mardelle [Tue, 7 Feb 2012 15:21:55 +0000 (16:21 +0100)]
Allow archiving proxy clips only

12 years agoAllow working on a project if only proxies are available:
Jean-Baptiste Mardelle [Sun, 5 Feb 2012 14:06:46 +0000 (15:06 +0100)]
Allow working on a project if only proxies are available:
http://kdenlive.org/mantis/view.php?id=2509

12 years agoFix crash when editing properties of several missing clips
Jean-Baptiste Mardelle [Sun, 5 Feb 2012 13:18:12 +0000 (14:18 +0100)]
Fix crash when editing properties of several missing clips

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Mon, 30 Jan 2012 22:40:56 +0000 (23:40 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoMake sure we use small icons on non KDE themes
Jean-Baptiste Mardelle [Mon, 30 Jan 2012 22:40:14 +0000 (23:40 +0100)]
Make sure we use small icons on non KDE themes

12 years agoSVN_SILENT made messages (.desktop file)
Script Kiddy [Mon, 30 Jan 2012 10:39:29 +0000 (11:39 +0100)]
SVN_SILENT made messages (.desktop file)

12 years agoFix compilation with KDE < 4.4
Jean-Baptiste Mardelle [Sat, 28 Jan 2012 17:24:28 +0000 (18:24 +0100)]
Fix compilation with KDE < 4.4

12 years agoAdd some safety checks when requesting xml playlist
Jean-Baptiste Mardelle [Fri, 27 Jan 2012 13:57:21 +0000 (14:57 +0100)]
Add some safety checks when requesting xml playlist

12 years agoMLT now supports rendering to another framerate, so allow it in render dialog
Jean-Baptiste Mardelle [Mon, 23 Jan 2012 13:38:37 +0000 (14:38 +0100)]
MLT now supports rendering to another framerate, so allow it in render dialog

12 years agoCleanup timeline ruler painting
Jean-Baptiste Mardelle [Mon, 23 Jan 2012 09:36:28 +0000 (10:36 +0100)]
Cleanup timeline ruler painting

12 years agoShow job info in clip tooltip
Jean-Baptiste Mardelle [Sun, 22 Jan 2012 16:11:54 +0000 (17:11 +0100)]
Show job info in clip tooltip

12 years agoTurn Stabilize filter in to a clip job
Jean-Baptiste Mardelle [Sun, 22 Jan 2012 14:39:12 +0000 (15:39 +0100)]
Turn Stabilize filter in to a clip job

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Sun, 22 Jan 2012 11:08:54 +0000 (12:08 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoTry to fix mutex crash:
Jean-Baptiste Mardelle [Tue, 17 Jan 2012 13:41:44 +0000 (14:41 +0100)]
Try to fix mutex crash:
http://kdenlive.org/mantis/view.php?id=2487

12 years agoTry to fix mutex crash:
Jean-Baptiste Mardelle [Tue, 17 Jan 2012 13:39:33 +0000 (14:39 +0100)]
Try to fix mutex crash:
http://kdenlive.org/mantis/view.php?id=2487

12 years ago* Update MLT capture to use the new multi consumer for preview
Jean-Baptiste Mardelle [Sat, 14 Jan 2012 18:16:53 +0000 (19:16 +0100)]
* Update MLT capture to use the new multi consumer for preview
* Add cmake option to disable Blackmagic support
* Compile warning fixes

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Sat, 14 Jan 2012 09:05:04 +0000 (10:05 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoFix compilation without nepomuk
Jean-Baptiste Mardelle [Sat, 14 Jan 2012 08:56:36 +0000 (09:56 +0100)]
Fix compilation without nepomuk

12 years agoSVN_SILENT made messages (.desktop file)
Script Kiddy [Sat, 14 Jan 2012 08:36:17 +0000 (09:36 +0100)]
SVN_SILENT made messages (.desktop file)

12 years agoUpdate names and descriptions of blur filters.
Till Theato [Fri, 13 Jan 2012 22:42:25 +0000 (23:42 +0100)]
Update names and descriptions of blur filters.

12 years agoFix typo causing startup crash.
Till Theato [Fri, 13 Jan 2012 20:59:53 +0000 (21:59 +0100)]
Fix typo causing startup crash.

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Fri, 13 Jan 2012 12:33:22 +0000 (13:33 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years ago* Allow opening project files manually extracted from archived project
Jean-Baptiste Mardelle [Fri, 13 Jan 2012 12:04:58 +0000 (13:04 +0100)]
* Allow opening project files manually extracted from archived project
* Check for missing locale and ask to install instead of opening corrupted project

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Fri, 13 Jan 2012 10:49:29 +0000 (11:49 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoFix vectorscope for 24bit RGB images:
Jean-Baptiste Mardelle [Thu, 12 Jan 2012 14:49:38 +0000 (15:49 +0100)]
Fix vectorscope for 24bit RGB images:
http://kdenlive.org/mantis/view.php?id=2478

12 years agoSVN_SILENT made messages (.desktop file)
Script Kiddy [Thu, 12 Jan 2012 07:46:40 +0000 (08:46 +0100)]
SVN_SILENT made messages (.desktop file)

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Tue, 10 Jan 2012 22:37:14 +0000 (23:37 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoVideo not needed when creating audio thumbs
Jean-Baptiste Mardelle [Tue, 10 Jan 2012 22:35:48 +0000 (23:35 +0100)]
Video not needed when creating audio thumbs

12 years agoFix loading of color values in format 0xRRGGBB.
Till Theato [Tue, 10 Jan 2012 21:34:17 +0000 (22:34 +0100)]
Fix loading of color values in format 0xRRGGBB.
This effected all effects with a color parameter not supporting the alpha channel.

12 years agoSupport dropping a folder in project tree (import all its clips):
Jean-Baptiste Mardelle [Mon, 9 Jan 2012 21:28:24 +0000 (22:28 +0100)]
Support dropping a folder in project tree (import all its clips):
http://kdenlive.org/mantis/view.php?id=1288

12 years agoFix select all feature introduced in previous commit
Jean-Baptiste Mardelle [Mon, 9 Jan 2012 18:29:50 +0000 (19:29 +0100)]
Fix select all feature introduced in previous commit

12 years agoCleanup track actions, add "Select all clips in a track" and "Select all clips in...
Jean-Baptiste Mardelle [Mon, 9 Jan 2012 18:19:59 +0000 (19:19 +0100)]
Cleanup track actions, add "Select all clips in a track" and "Select all clips in timeline" actions:
http://kdenlive.org/mantis/view.php?id=1950

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Mon, 9 Jan 2012 16:28:20 +0000 (17:28 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoPut audio effects in subcategories so that we don't end up with a popup menu containi...
Jean-Baptiste Mardelle [Mon, 9 Jan 2012 16:26:28 +0000 (17:26 +0100)]
Put audio effects in subcategories so that we don't end up with a popup menu containing 120 items:
http://kdenlive.org/mantis/view.php?id=2436

12 years agoSVN_SILENT made messages (.desktop file)
Script Kiddy [Mon, 9 Jan 2012 07:28:03 +0000 (08:28 +0100)]
SVN_SILENT made messages (.desktop file)

12 years agoUpdate changelog
Jean-Baptiste Mardelle [Sun, 8 Jan 2012 19:40:41 +0000 (20:40 +0100)]
Update changelog

12 years agoFix archiving sometimes not saving playlist clips & subclips:
Jean-Baptiste Mardelle [Sun, 8 Jan 2012 19:31:12 +0000 (20:31 +0100)]
Fix archiving sometimes not saving playlist clips & subclips:
http://kdenlive.org/mantis/view.php?id=2475

12 years agoFix KAutosave not managing long filenames or non UTF-8 on some systems:
Jean-Baptiste Mardelle [Sun, 8 Jan 2012 17:31:06 +0000 (18:31 +0100)]
Fix KAutosave not managing long filenames or non UTF-8 on some systems:
http://kdenlive.org/mantis/view.php?id=2441
http://kdenlive.org/mantis/view.php?id=2450

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Sun, 8 Jan 2012 14:00:38 +0000 (15:00 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoFix rendering sometimes not starting (conflict between script and normal rendering)
Jean-Baptiste Mardelle [Sun, 8 Jan 2012 14:00:08 +0000 (15:00 +0100)]
Fix rendering sometimes not starting (conflict between script and normal rendering)

12 years agoSVN_SILENT made messages (.desktop file)
Script Kiddy [Sun, 8 Jan 2012 07:41:52 +0000 (08:41 +0100)]
SVN_SILENT made messages (.desktop file)

12 years agoSVN_SILENT made messages (.desktop file)
Script Kiddy [Sat, 7 Jan 2012 08:18:19 +0000 (09:18 +0100)]
SVN_SILENT made messages (.desktop file)

12 years agoFix enabling/disabling an effect that is not selected.
Till Theato [Fri, 6 Jan 2012 20:42:43 +0000 (21:42 +0100)]
Fix enabling/disabling an effect that is not selected.

12 years agoreindent tab 2 space
Marco Gittler [Fri, 6 Jan 2012 19:33:24 +0000 (20:33 +0100)]
reindent tab 2 space

12 years agofix warning
Marco Gittler [Fri, 30 Dec 2011 11:12:07 +0000 (12:12 +0100)]
fix warning

12 years ago* Fix missing proxy not re-created on project opening
Jean-Baptiste Mardelle [Fri, 6 Jan 2012 19:31:04 +0000 (20:31 +0100)]
* Fix missing proxy not re-created on project opening
* improve proxy crash feedback
* Small change in proxy icon (use yellow color to make it more visible)

12 years agoCompile warnings about non-virtual destructor in decklink fixed
Simon A. Eugster [Fri, 6 Jan 2012 16:53:36 +0000 (17:53 +0100)]
Compile warnings about non-virtual destructor in decklink fixed

12 years agoFind clip from clipmanager instead of parsing tree widget when possible
Jean-Baptiste Mardelle [Fri, 6 Jan 2012 09:30:26 +0000 (10:30 +0100)]
Find clip from clipmanager instead of parsing tree widget when possible
might fix concurrency crash http://kdenlive.org/mantis/view.php?id=2471

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Thu, 5 Jan 2012 20:25:50 +0000 (21:25 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoFix play zone not working correctly:
Jean-Baptiste Mardelle [Thu, 5 Jan 2012 20:25:13 +0000 (21:25 +0100)]
Fix play zone not working correctly:
http://kdenlive.org/mantis/view.php?id=2468

12 years agoFix on-monitor editing controls disabled.
Till Theato [Thu, 5 Jan 2012 19:51:40 +0000 (20:51 +0100)]
Fix on-monitor editing controls disabled.

12 years agoUpdate monitor ruler cursor color when mouse hover for improved usability
Jean-Baptiste Mardelle [Thu, 5 Jan 2012 17:34:19 +0000 (18:34 +0100)]
Update monitor ruler cursor color when mouse hover for improved usability

12 years agoSmall improvements to composite transition keyframes ui
Jean-Baptiste Mardelle [Thu, 5 Jan 2012 16:55:08 +0000 (17:55 +0100)]
Small improvements to composite transition keyframes ui

12 years agoFix Play Zone sometimes not working:
Jean-Baptiste Mardelle [Thu, 5 Jan 2012 10:38:06 +0000 (11:38 +0100)]
Fix Play Zone sometimes not working:
http://kdenlive.org/mantis/view.php?id=2468

12 years agoFix mouse click on monitor sometimes not working
Jean-Baptiste Mardelle [Thu, 5 Jan 2012 10:16:58 +0000 (11:16 +0100)]
Fix mouse click on monitor sometimes not working

12 years agoVarious fixes and improvments to online resources
Jean-Baptiste Mardelle [Wed, 4 Jan 2012 22:51:52 +0000 (23:51 +0100)]
Various fixes and improvments to online resources

12 years agoMerge branch 'master' of git://anongit.kde.org/kdenlive
Jean-Baptiste Mardelle [Wed, 4 Jan 2012 01:03:46 +0000 (02:03 +0100)]
Merge branch 'master' of git://anongit.kde.org/kdenlive

12 years agoAsynchronous download for online resource widget (still some bugs)
Jean-Baptiste Mardelle [Wed, 4 Jan 2012 01:02:55 +0000 (02:02 +0100)]
Asynchronous download for online resource widget (still some bugs)

12 years agoprogress on online resources, archive.org now basically works
Jean-Baptiste Mardelle [Wed, 4 Jan 2012 00:06:47 +0000 (01:06 +0100)]
progress on online resources, archive.org now basically works

12 years agoFix unused parameter warning in ProjectList
Till Theato [Tue, 3 Jan 2012 23:00:56 +0000 (00:00 +0100)]
Fix unused parameter warning in ProjectList

12 years agoMake it easier to see the job related thumbnail overlays
Till Theato [Tue, 3 Jan 2012 22:56:59 +0000 (23:56 +0100)]
Make it easier to see the job related thumbnail overlays

12 years agoFix job progress bar not disappearing when job is cancelled
Till Theato [Tue, 3 Jan 2012 21:45:36 +0000 (22:45 +0100)]
Fix job progress bar not disappearing when job is cancelled

12 years agoPreliminary support for importing clips from archive.org (not working yet)
Jean-Baptiste Mardelle [Tue, 3 Jan 2012 20:37:27 +0000 (21:37 +0100)]
Preliminary support for importing clips from archive.org (not working yet)

12 years agoInitial support for project metadata (that can be embedded in rendered files)
Jean-Baptiste Mardelle [Tue, 3 Jan 2012 17:38:28 +0000 (18:38 +0100)]
Initial support for project metadata (that can be embedded in rendered files)

12 years agoFix color changes not working in title widget:
Jean-Baptiste Mardelle [Tue, 3 Jan 2012 15:18:57 +0000 (16:18 +0100)]
Fix color changes not working in title widget:
http://kdenlive.org/mantis/view.php?id=2459

12 years agoIf a file has a license (for example when imported through online resource widget),
Jean-Baptiste Mardelle [Mon, 2 Jan 2012 22:09:29 +0000 (23:09 +0100)]
If a file has a license (for example when imported through online resource widget),
display license info in clip properties

12 years agoFix crash when moving a folder and a clip with a subclip inside project tree:
Jean-Baptiste Mardelle [Mon, 2 Jan 2012 19:17:43 +0000 (20:17 +0100)]
Fix crash when moving a folder and a clip with a subclip inside project tree:
http://kdenlive.org/mantis/view.php?id=2458

12 years agoFix incorrect check for KDE version
Jean-Baptiste Mardelle [Sun, 1 Jan 2012 17:20:36 +0000 (18:20 +0100)]
Fix incorrect check for KDE version

12 years agoFix compilation with KDE < 4.6 (Nepomuk):
Jean-Baptiste Mardelle [Sun, 1 Jan 2012 14:50:59 +0000 (15:50 +0100)]
Fix compilation with KDE < 4.6 (Nepomuk):
http://kdenlive.org/mantis/view.php?id=2457

12 years agoCleanup online resource feature
Jean-Baptiste Mardelle [Sat, 31 Dec 2011 19:07:59 +0000 (20:07 +0100)]
Cleanup online resource feature

12 years agoWhen downloading from online resource, save license, url, etc in Nepomuk metadata
Jean-Baptiste Mardelle [Sat, 31 Dec 2011 13:31:58 +0000 (14:31 +0100)]
When downloading from online resource, save license, url, etc in Nepomuk metadata

12 years agoOnline resources: display description and license
Jean-Baptiste Mardelle [Sat, 31 Dec 2011 04:27:56 +0000 (05:27 +0100)]
Online resources: display description and license

12 years agoFix freesound autoplay
Jean-Baptiste Mardelle [Fri, 30 Dec 2011 09:51:01 +0000 (10:51 +0100)]
Fix freesound autoplay

12 years agoHide autoplay when using openclipart service
Jean-Baptiste Mardelle [Fri, 30 Dec 2011 09:41:25 +0000 (10:41 +0100)]
Hide autoplay when using openclipart service