]> git.sesse.net Git - kdenlive/blobdiff - src/mainwindow.cpp
Updated DVD wizard (added load/save dvd projects)
[kdenlive] / src / mainwindow.cpp
index 7d6d493d1fe663c3879e65025964e9f3a0c1033d..46f0fd9c81338a378f28e377d2a4aeb4f3d1c1eb 100644 (file)
@@ -50,6 +50,7 @@
 #include "clipitem.h"
 #include "interfaces.h"
 #include "kdenlive-config.h"
+#include "cliptranscode.h"
 
 #include <KApplication>
 #include <KAction>
@@ -226,11 +227,12 @@ MainWindow::MainWindow(const QString &MltPath, const KUrl & Url, QWidget *parent
     guiFactory()->addClient(sp);*/
 
     loadPlugins();
+    loadTranscoders();
     //kDebug() << factory() << " " << factory()->container("video_effects_menu", this);
 
     m_projectMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)), m_playZone, m_loopZone);
     m_clipMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)), m_playZone, m_loopZone, static_cast<QMenu*>(factory()->container("marker_menu", this)));
-    m_projectList->setupGeneratorMenu(static_cast<QMenu*>(factory()->container("generators", this)));
+    m_projectList->setupGeneratorMenu(static_cast<QMenu*>(factory()->container("generators", this)), static_cast<QMenu*>(factory()->container("transcoders", this)));
 
     // build effects menus
     QAction *action;
@@ -840,6 +842,10 @@ void MainWindow::setupActions()
     collection->addAction("dvd_wizard", dvdWizard);
     connect(dvdWizard, SIGNAL(triggered(bool)), this, SLOT(slotDvdWizard()));
 
+    KAction *transcodeClip =  new KAction(KIcon("edit-copy"), i18n("Transcode Clip"), this);
+    collection->addAction("transcode_clip", transcodeClip);
+    connect(transcodeClip, SIGNAL(triggered(bool)), this, SLOT(slotTranscodeClip()));
+
     KAction *markIn = collection->addAction("mark_in");
     markIn->setText(i18n("Set In Point"));
     markIn->setShortcut(Qt::Key_I);
@@ -1163,7 +1169,7 @@ void MainWindow::readOptions()
             //Add new settings from 0.7.1
             if (KdenliveSettings::defaultprojectfolder().isEmpty()) {
                 QString path = QDir::homePath() + "/kdenlive";
-                if (KStandardDirs::makeDir(path)  == false) kDebug() << "/// ERROR CREATING PROJECT FOLDER: " << path;
+                if (KStandardDirs::makeDir(path)  == false) kDebug() << "/// ERROR CREATING PROJECT FOLDER: " << path;
                 KdenliveSettings::setDefaultprojectfolder(path);
             }
         }
@@ -1436,29 +1442,29 @@ void MainWindow::recoverFiles(QList<KAutoSaveFile *> staleFiles)
 
 void MainWindow::parseProfiles(const QString &mltPath)
 {
-    //kdDebug()<<" + + YOUR MLT INSTALL WAS FOUND IN: "<< MLT_PREFIX <<endl;
+    // kDebug()<<" + + YOUR MLT INSTALL WAS FOUND IN: "<< MLT_PREFIX <<endl;
 
     //KdenliveSettings::setDefaulttmpfolder();
     if (!mltPath.isEmpty()) {
         KdenliveSettings::setMltpath(mltPath + "/share/mlt/profiles/");
-        KdenliveSettings::setRendererpath(mltPath + "/bin/inigo");
+        KdenliveSettings::setRendererpath(mltPath + "/bin/melt");
     }
 
     if (KdenliveSettings::mltpath().isEmpty()) {
         KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
     }
-    if (KdenliveSettings::rendererpath().isEmpty()) {
-        QString inigoPath = QString(MLT_PREFIX) + QString("/bin/inigo");
-        if (!QFile::exists(inigoPath))
-            inigoPath = KStandardDirs::findExe("inigo");
-        else KdenliveSettings::setRendererpath(inigoPath);
+    if (KdenliveSettings::rendererpath().isEmpty() || KdenliveSettings::rendererpath().endsWith("inigo")) {
+        QString meltPath = QString(MLT_PREFIX) + QString("/bin/melt");
+        if (!QFile::exists(meltPath))
+            meltPath = KStandardDirs::findExe("melt");
+        KdenliveSettings::setRendererpath(meltPath);
     }
     QStringList profilesFilter;
     profilesFilter << "*";
     QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
 
     if (profilesList.isEmpty()) {
-        // Cannot find MLT path, try finding inigo
+        // Cannot find MLT path, try finding melt
         QString profilePath = KdenliveSettings::rendererpath();
         if (!profilePath.isEmpty()) {
             profilePath = profilePath.section('/', 0, -3);
@@ -1482,8 +1488,8 @@ void MainWindow::parseProfiles(const QString &mltPath)
     }
 
     if (KdenliveSettings::rendererpath().isEmpty()) {
-        // Cannot find the MLT inigo renderer, ask for location
-        KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(QString(), i18n("Cannot find the inigo program required for rendering (part of Mlt)"), this);
+        // Cannot find the MLT melt renderer, ask for location
+        KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(QString(), i18n("Cannot find the melt program required for rendering (part of Mlt)"), this);
         if (getUrl->exec() == QDialog::Rejected) {
             ::exit(0);
         }
@@ -1580,17 +1586,17 @@ void MainWindow::slotDoRender(const QStringList args, const QStringList overlay_
 
     KTemporaryFile temp;
     temp.setAutoRemove(false);
-    temp.setSuffix(".westley");
+    temp.setSuffix(".mlt");
     if (!scriptExport.isEmpty() || temp.open()) {
         if (KdenliveSettings::dropbframes()) {
             KdenliveSettings::setDropbframes(false);
             m_activeDocument->clipManager()->updatePreviewSettings();
-            if (!scriptExport.isEmpty()) m_projectMonitor->saveSceneList(scriptExport + ".westley");
+            if (!scriptExport.isEmpty()) m_projectMonitor->saveSceneList(scriptExport + ".mlt");
             else m_projectMonitor->saveSceneList(temp.fileName());
             KdenliveSettings::setDropbframes(true);
             m_activeDocument->clipManager()->updatePreviewSettings();
         } else {
-            if (!scriptExport.isEmpty()) m_projectMonitor->saveSceneList(scriptExport + ".westley");
+            if (!scriptExport.isEmpty()) m_projectMonitor->saveSceneList(scriptExport + ".mlt");
             else m_projectMonitor->saveSceneList(temp.fileName());
         }
 
@@ -1608,7 +1614,7 @@ void MainWindow::slotDoRender(const QStringList args, const QStringList overlay_
             if (videoPlayer.isEmpty()) KMessageBox::sorry(this, i18n("Cannot play video after rendering because the default video player application is not set.\nPlease define it in Kdenlive settings dialog."));
         }
         if (!QFile::exists(KdenliveSettings::rendererpath())) {
-            KMessageBox::sorry(this, i18n("Cannot find the inigo program required for rendering (part of Mlt)"));
+            KMessageBox::sorry(this, i18n("Cannot find the melt program required for rendering (part of Mlt)"));
             setRenderingProgress(dest, -3);
             return;
         }
@@ -2312,7 +2318,7 @@ void MainWindow::customEvent(QEvent* e)
 {
     if (e->type() == QEvent::User) {
         // The timeline playing position changed...
-        kDebug() << "RECEIVED JOG EVEMNT!!!";
+        kDebug() << "RECEIVED JOG EVEMNT!!!";
     }
 }
 void MainWindow::slotActivateEffectStackView()
@@ -2505,7 +2511,7 @@ void MainWindow::slotSaveZone(Render *render, QPoint zone)
     QLabel *label1 = new QLabel(i18n("Save clip zone as:"), this);
     QString path = m_activeDocument->projectFolder().path();
     path.append("/");
-    path.append("untitled.westley");
+    path.append("untitled.mlt");
     KUrlRequester *url = new KUrlRequester(KUrl(path), this);
     url->setFilter("video/mlt-playlist");
     QLabel *label2 = new QLabel(i18n("Description:"), this);
@@ -2633,9 +2639,9 @@ void MainWindow::slotShowTimeline(bool show)
     }
 }
 
-void MainWindow::slotMaximizeCurrent(bool show)
+void MainWindow::slotMaximizeCurrent(bool /*show*/)
 {
-    //TODO: is there a way to maximize current widget?
+    //TODO: is there a way to maximize current widget?
     //if (show == true)
     {
         m_timelineState = saveState();
@@ -2651,4 +2657,44 @@ void MainWindow::slotMaximizeCurrent(bool show)
     }*/
 }
 
+void MainWindow::loadTranscoders()
+{
+    QMenu *transMenu = static_cast<QMenu*>(factory()->container("transcoders", this));
+    transMenu->clear();
+    KSharedConfigPtr config = KGlobal::config();
+    KConfigGroup transConfig(config, "Transcoding");
+    // read the entries
+    QMap< QString, QString > profiles = transConfig.entryMap();
+    QMapIterator<QString, QString> i(profiles);
+    while (i.hasNext()) {
+        i.next();
+        QAction *a = transMenu->addAction(i.key());
+        a->setData(i.value());
+        connect(a, SIGNAL(triggered()), this, SLOT(slotTranscode()));
+    }
+}
+
+void MainWindow::slotTranscode(QString url)
+{
+    QString params;
+    if (url.isEmpty()) {
+        url = m_projectList->currentClipUrl();
+        QAction *action = qobject_cast<QAction *>(sender());
+        params = action->data().toString();
+
+    }
+    if (url.isEmpty()) return;
+    ClipTranscode *d = new ClipTranscode(url, params);
+    connect(d, SIGNAL(addClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
+    d->show();
+    //QProcess::startDetached("ffmpeg", parameters);
+}
+
+void MainWindow::slotTranscodeClip()
+{
+    KUrl url = KFileDialog::getOpenUrl(KUrl("kfiledialog:///projectfolder"));
+    if (url.isEmpty()) return;
+    slotTranscode(url.path());
+}
+
 #include "mainwindow.moc"