]> git.sesse.net Git - kdenlive/blob - src/cliptranscode.cpp
small improvements to the clip transcode dialog, allow to specify output folder for...
[kdenlive] / src / cliptranscode.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "cliptranscode.h"
22
23 #include <KDebug>
24 #include <KGlobalSettings>
25 #include <KMessageBox>
26 #include <KFileDialog>
27
28
29 ClipTranscode::ClipTranscode(KUrl::List urls, const QString &params, QWidget * parent) :
30         QDialog(parent), m_urls(urls)
31 {
32     setFont(KGlobalSettings::toolBarFont());
33     setupUi(this);
34     setAttribute(Qt::WA_DeleteOnClose);
35     setWindowTitle(i18n("Transcode Clip"));
36     auto_add->setText(i18np("Add clip to project", "Add clips to project", m_urls.count()));
37     dest_url->fileDialog()->setOperationMode(KFileDialog::Saving);
38
39     if (m_urls.count() == 1) {
40         QString fileName = m_urls.at(0).path(); //.section('.', 0, -1);
41         QString newFile = params.section(' ', -1).replace("%1", fileName);
42         KUrl dest(newFile);
43         source_url->setUrl(m_urls.at(0));
44         dest_url->setUrl(dest);
45         urls_list->setHidden(true);
46         connect(source_url, SIGNAL(textChanged(const QString &)), this, SLOT(slotUpdateParams()));
47     } else {
48         label_source->setHidden(true);
49         source_url->setHidden(true);
50         label_dest->setText(i18n("Destination folder"));
51         dest_url->setMode(KFile::Directory);
52         dest_url->setUrl(KUrl(m_urls.at(0).directory()));
53         for (int i = 0; i < m_urls.count(); i++)
54             urls_list->addItem(m_urls.at(i).path());
55     }
56     if (!params.isEmpty()) {
57         label_profile->setHidden(true);
58         profile_list->setHidden(true);
59         ffmpeg_params->setPlainText(params.simplified());
60     } else {
61         // load Profiles
62         KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
63         KConfigGroup transConfig(config, "Transcoding");
64         // read the entries
65         QMap< QString, QString > profiles = transConfig.entryMap();
66         QMapIterator<QString, QString> i(profiles);
67         connect(profile_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateParams(int)));
68         while (i.hasNext()) {
69             i.next();
70             profile_list->addItem(i.key(), i.value());
71         }
72     }
73
74     connect(button_start, SIGNAL(clicked()), this, SLOT(slotStartTransCode()));
75
76     m_transcodeProcess.setProcessChannelMode(QProcess::MergedChannels);
77     connect(&m_transcodeProcess, SIGNAL(readyReadStandardOutput()), this, SLOT(slotShowTranscodeInfo()));
78     connect(&m_transcodeProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(slotTranscodeFinished(int, QProcess::ExitStatus)));
79
80     //adjustSize();
81 }
82
83 ClipTranscode::~ClipTranscode()
84 {
85     if (m_transcodeProcess.state() != QProcess::NotRunning) {
86         m_transcodeProcess.close();
87     }
88 }
89
90 void ClipTranscode::slotStartTransCode()
91 {
92     if (m_transcodeProcess.state() != QProcess::NotRunning) {
93         return;
94     }
95     QStringList parameters;
96     QString destination;
97     QString params = ffmpeg_params->toPlainText().simplified();
98     if (urls_list->count() > 0) {
99         source_url->setUrl(m_urls.takeFirst());
100         destination = dest_url->url().path(KUrl::AddTrailingSlash) + source_url->url().fileName();
101         QList<QListWidgetItem *> matching = urls_list->findItems(source_url->url().path(), Qt::MatchExactly);
102         if (matching.count() > 0) {
103             matching.at(0)->setFlags(Qt::ItemIsSelectable);
104             urls_list->setCurrentItem(matching.at(0));
105         }
106     } else {
107         destination = dest_url->url().path().section('.', 0, -2);
108     }
109     QString extension = params.section("%1", 1, 1).section(' ', 0, 0);
110     params = params.replace("%1", destination);
111     QString s_url = source_url->url().path();
112
113     parameters << "-i" << s_url;
114     if (QFile::exists(destination + extension)) {
115         if (KMessageBox::questionYesNo(this, i18n("File %1 already exists.\nDo you want to overwrite it?", destination + extension)) == KMessageBox::No) return;
116         parameters << "-y";
117     }
118     buttonBox->button(QDialogButtonBox::Abort)->setText(i18n("Abort"));
119
120     parameters << params.split(' ');
121
122     //kDebug() << "/// FFMPEG ARGS: " << parameters;
123
124     m_transcodeProcess.start("ffmpeg", parameters);
125     button_start->setEnabled(false);
126
127 }
128
129 void ClipTranscode::slotShowTranscodeInfo()
130 {
131     QString log = QString(m_transcodeProcess.readAll());
132     //kDebug() << "//LOG: " << log;
133     log_text->setPlainText(log);
134 }
135
136 void ClipTranscode::slotTranscodeFinished(int exitCode, QProcess::ExitStatus exitStatus)
137 {
138     buttonBox->button(QDialogButtonBox::Abort)->setText(i18n("Close"));
139     button_start->setEnabled(true);
140
141     if (exitCode == 0 && exitStatus == QProcess::NormalExit) {
142         log_text->setHtml(log_text->toPlainText() + "<br><b>" + i18n("Transcoding finished."));
143         if (auto_add->isChecked()) {
144             KUrl url;
145             if (urls_list->count() > 0) {
146                 QString params = ffmpeg_params->toPlainText().simplified();
147                 QString extension = params.section("%1", 1, 1).section(' ', 0, 0);
148                 url = KUrl(dest_url->url().path(KUrl::AddTrailingSlash) + source_url->url().fileName() + extension);
149             } else url = dest_url->url();
150             emit addClip(url);
151         }
152         if (urls_list->count() > 0 && m_urls.count() > 0) {
153             m_transcodeProcess.close();
154             slotStartTransCode();
155             return;
156         } else if (auto_close->isChecked()) accept();
157     } else {
158         log_text->setHtml(log_text->toPlainText() + "<br><b>" + i18n("Transcoding FAILED!"));
159     }
160
161     m_transcodeProcess.close();
162 }
163
164 void ClipTranscode::slotUpdateParams(int ix)
165 {
166     QString fileName = source_url->url().path();
167     if (ix != -1) {
168         QString params = profile_list->itemData(ix).toString();
169         ffmpeg_params->setPlainText(params.simplified());
170     }
171     if (urls_list->count() == 0) {
172         QString newFile = ffmpeg_params->toPlainText().simplified().section(' ', -1).replace("%1", fileName);
173         dest_url->setUrl(KUrl(newFile));
174     }
175
176 }
177
178 #include "cliptranscode.moc"
179
180