Summary: | Do not delete the temporary folder after each encoding process. | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Tung NGUYEN <ntung> |
Component: | Plugin-Generic-VideoSlideshow | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles, erik |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 5.7.0 | |
Sentry Crash Report: |
Description
Tung NGUYEN
2005-10-16 16:34:41 UTC
except for the fact the temporary files are deleted (that's probably right imo) I believe this bug is again the same problem as #109739 *** Bug 119425 has been marked as a duplicate of this bug. *** SVN commit 526540 by anaselli: - fix bug 114514 BUG: 114514 M +6 -6 kimg2mpg.cpp --- trunk/extragear/libs/kipi-plugins/mpegencoder/kimg2mpg.cpp #526539:526540 @@ -180,12 +180,7 @@ KImg2mpgData::KImg2mpgData(KIPI::Interface* interface, QWidget *parent, const char *name) : KDialog( parent, name, false, Qt::WDestructiveClose ), m_interface( interface ) { - // Init. Tmp folder - - KStandardDirs dir; - m_TmpFolderConfig = dir.saveLocation("tmp", "kipi-mpegencoderplugin-" + - QString::number(getpid()) ); - + m_TmpFolderConfig = ""; m_Proc = 0L; m_thumbJob = 0L; m_Encoding = false; @@ -749,6 +744,11 @@ return; } + // Init. Tmp folder + KStandardDirs dir; + m_TmpFolderConfig = dir.saveLocation("tmp", "kipi-mpegencoderplugin-" + + QString::number(getpid()) ); + m_DebugOuputMessages = ""; m_DurationTime.start(); InputAudioFileName = m_AudioInputEDITFilename->text(); digiKam has a new Video Slideshow tool based on QtAV and ffmpeg which do not have this problem. Gilles Caulier |