]> git.sesse.net Git - kdenlive/blob - src/clipproperties.cpp
Make the "video index" and "audio index" work (still requires a patch to MLT not...
[kdenlive] / src / clipproperties.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 #include <QDir>
21
22 #include <KStandardDirs>
23 #include <KDebug>
24 #include <KFileItem>
25
26 #include "kdenlivesettings.h"
27 #include "clipproperties.h"
28 #include "kthumb.h"
29 #include "markerdialog.h"
30
31 static const int VIDEOTAB = 0;
32 static const int AUDIOTAB = 1;
33 static const int COLORTAB = 2;
34 static const int SLIDETAB = 3;
35 static const int IMAGETAB = 4;
36 static const int MARKERTAB = 5;
37 static const int ADVANCEDTAB = 6;
38
39 static const int TYPE_JPEG = 0;
40 static const int TYPE_PNG = 1;
41 static const int TYPE_BMP = 2;
42 static const int TYPE_GIF = 3;
43
44 ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidget * parent): QDialog(parent), m_tc(tc), m_clip(clip), m_fps(fps), m_clipNeedsRefresh(false), m_count(0) {
45     setFont(KGlobalSettings::toolBarFont());
46     m_view.setupUi(this);
47     KUrl url = m_clip->fileURL();
48     m_view.clip_path->setText(url.path());
49     m_view.clip_description->setText(m_clip->description());
50     QMap <QString, QString> props = m_clip->properties();
51
52     if (props.contains("force_aspect_ratio") && props.value("force_aspect_ratio").toDouble() > 0) {
53         m_view.clip_force_ar->setChecked(true);
54         m_view.clip_ar->setEnabled(true);
55         m_view.clip_ar->setValue(props.value("force_aspect_ratio").toDouble());
56     }
57
58     if (props.contains("threads") && props.value("threads").toInt() != 1) {
59         m_view.clip_force_threads->setChecked(true);
60         m_view.clip_threads->setEnabled(true);
61         m_view.clip_threads->setValue(props.value("threads").toInt());
62     }
63
64     if (props.contains("video_index") && props.value("video_index").toInt() != 0) {
65         m_view.clip_force_vindex->setChecked(true);
66         m_view.clip_vindex->setEnabled(true);
67         m_view.clip_vindex->setValue(props.value("video_index").toInt());
68     }
69
70     if (props.contains("audio_index") && props.value("audio_index").toInt() != 0) {
71         m_view.clip_force_aindex->setChecked(true);
72         m_view.clip_aindex->setEnabled(true);
73         m_view.clip_aindex->setValue(props.value("audio_index").toInt());
74     }
75
76     if (props.contains("audio_max")) {
77         m_view.clip_aindex->setMaximum(props.value("audio_max").toInt());
78     }
79
80     if (props.contains("video_max")) {
81         m_view.clip_vindex->setMaximum(props.value("video_max").toInt());
82     }
83
84     connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar, SLOT(setEnabled(bool)));
85     connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool)));
86     connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool)));
87     connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool)));
88
89     if (props.contains("audiocodec"))
90         m_view.clip_acodec->setText(props.value("audiocodec"));
91     if (props.contains("frequency"))
92         m_view.clip_frequency->setText(props.value("frequency"));
93     if (props.contains("channels"))
94         m_view.clip_channels->setText(props.value("channels"));
95
96     CLIPTYPE t = m_clip->clipType();
97     if (t == IMAGE) {
98         m_view.tabWidget->removeTab(SLIDETAB);
99         m_view.tabWidget->removeTab(COLORTAB);
100         m_view.tabWidget->removeTab(AUDIOTAB);
101         m_view.tabWidget->removeTab(VIDEOTAB);
102         if (props.contains("frame_size"))
103             m_view.image_size->setText(props.value("frame_size"));
104         if (props.contains("transparency"))
105             m_view.image_transparency->setChecked(props.value("transparency").toInt());
106     } else if (t == COLOR) {
107         m_view.clip_path->setEnabled(false);
108         m_view.tabWidget->removeTab(IMAGETAB);
109         m_view.tabWidget->removeTab(SLIDETAB);
110         m_view.tabWidget->removeTab(AUDIOTAB);
111         m_view.tabWidget->removeTab(VIDEOTAB);
112         m_view.clip_thumb->setHidden(true);
113         m_view.clip_color->setColor(QColor("#" + props.value("colour").right(8).left(6)));
114     } else if (t == SLIDESHOW) {
115         m_view.clip_path->setText(url.directory());
116         m_view.tabWidget->removeTab(IMAGETAB);
117         m_view.tabWidget->removeTab(COLORTAB);
118         m_view.tabWidget->removeTab(AUDIOTAB);
119         m_view.tabWidget->removeTab(VIDEOTAB);
120         QStringList types;
121         types << "JPG" << "PNG" << "BMP" << "GIF";
122         m_view.image_type->addItems(types);
123         m_view.slide_loop->setChecked(props.value("loop").toInt());
124         m_view.slide_fade->setChecked(props.value("fade").toInt());
125         m_view.luma_softness->setValue(props.value("softness").toInt());
126         QString path = props.value("resource");
127         if (path.endsWith("png")) m_view.image_type->setCurrentIndex(TYPE_PNG);
128         else if (path.endsWith("bmp")) m_view.image_type->setCurrentIndex(TYPE_BMP);
129         else if (path.endsWith("gif")) m_view.image_type->setCurrentIndex(TYPE_GIF);
130         m_view.slide_duration->setText(tc.getTimecodeFromFrames(props.value("ttl").toInt()));
131         parseFolder();
132
133         m_view.luma_duration->setText(tc.getTimecodeFromFrames(props.value("luma_duration").toInt()));
134         QString lumaFile = props.value("luma_file");
135         QString profilePath = KdenliveSettings::mltpath();
136         profilePath = profilePath.section('/', 0, -3);
137         profilePath += "/lumas/PAL/";
138
139         QDir dir(profilePath);
140         QStringList filter;
141         filter << "*.pgm";
142         const QStringList result = dir.entryList(filter, QDir::Files);
143         QStringList imagefiles;
144         QStringList imagenamelist;
145         int current;
146         foreach(const QString file, result) {
147             m_view.luma_file->addItem(KIcon(profilePath + file), file, profilePath + file);
148             if (!lumaFile.isEmpty() && lumaFile == QString(profilePath + file))
149                 current = m_view.luma_file->count() - 1;
150         }
151
152         if (!lumaFile.isEmpty()) {
153             m_view.slide_luma->setChecked(true);
154             m_view.luma_file->setCurrentIndex(current);
155         }
156
157         connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder()));
158     } else if (t != AUDIO) {
159         m_view.tabWidget->removeTab(IMAGETAB);
160         m_view.tabWidget->removeTab(SLIDETAB);
161         m_view.tabWidget->removeTab(COLORTAB);
162         if (props.contains("frame_size"))
163             m_view.clip_size->setText(props.value("frame_size"));
164         if (props.contains("videocodec"))
165             m_view.clip_vcodec->setText(props.value("videocodec"));
166         if (props.contains("fps"))
167             m_view.clip_fps->setText(props.value("fps"));
168         if (props.contains("aspect_ratio"))
169             m_view.clip_ratio->setText(props.value("aspect_ratio"));
170
171         QPixmap pix = m_clip->thumbProducer()->getImage(url, m_clip->getClipThumbFrame(), 240, 180);
172         m_view.clip_thumb->setPixmap(pix);
173         if (t == IMAGE || t == VIDEO) m_view.tabWidget->removeTab(AUDIOTAB);
174     } else {
175         m_view.tabWidget->removeTab(IMAGETAB);
176         m_view.tabWidget->removeTab(SLIDETAB);
177         m_view.tabWidget->removeTab(COLORTAB);
178         m_view.tabWidget->removeTab(VIDEOTAB);
179         m_view.clip_thumb->setHidden(true);
180     }
181     if (t != IMAGE && t != COLOR && t != TEXT) m_view.clip_duration->setReadOnly(true);
182
183     KFileItem f(KFileItem::Unknown, KFileItem::Unknown, url, true);
184     m_view.clip_filesize->setText(KIO::convertSize(f.size()));
185     m_view.clip_duration->setText(tc.getTimecode(m_clip->duration(), m_fps));
186
187     // markers
188     m_view.marker_new->setIcon(KIcon("document-new"));
189     m_view.marker_new->setToolTip(i18n("Add marker"));
190     m_view.marker_edit->setIcon(KIcon("document-properties"));
191     m_view.marker_edit->setToolTip(i18n("Edit marker"));
192     m_view.marker_delete->setIcon(KIcon("trash-empty"));
193     m_view.marker_delete->setToolTip(i18n("Delete marker"));
194
195     slotFillMarkersList();
196     connect(m_view.marker_new, SIGNAL(clicked()), this, SLOT(slotAddMarker()));
197     connect(m_view.marker_edit, SIGNAL(clicked()), this, SLOT(slotEditMarker()));
198     connect(m_view.marker_delete, SIGNAL(clicked()), this, SLOT(slotDeleteMarker()));
199     connect(m_view.markers_list, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotEditMarker()));
200
201     adjustSize();
202 }
203
204 void ClipProperties::slotFillMarkersList() {
205     m_view.markers_list->clear();
206     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
207     for (uint count = 0; count < marks.count(); ++count) {
208         QString time = m_tc.getTimecode(marks[count].time(), m_tc.fps());
209         QStringList itemtext;
210         itemtext << time << marks[count].comment();
211         (void) new QTreeWidgetItem(m_view.markers_list, itemtext);
212     }
213 }
214
215 void ClipProperties::slotAddMarker() {
216     CommentedTime marker(GenTime(), i18n("Marker"));
217     MarkerDialog d(m_clip, marker, m_tc, this);
218     if (d.exec() == QDialog::Accepted) {
219         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
220     }
221     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
222 }
223
224 void ClipProperties::slotEditMarker() {
225     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
226     int pos = m_view.markers_list->currentIndex().row();
227     if (pos < 0 || pos > marks.count() - 1) return;
228     MarkerDialog d(m_clip, marks.at(pos), m_tc, this);
229     if (d.exec() == QDialog::Accepted) {
230         emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment());
231     }
232     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
233 }
234
235 void ClipProperties::slotDeleteMarker() {
236     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
237     int pos = m_view.markers_list->currentIndex().row();
238     if (pos < 0 || pos > marks.count() - 1) return;
239     emit addMarker(m_clip->getId(), marks.at(pos).time(), QString());
240
241     QTimer::singleShot(500, this, SLOT(slotFillMarkersList()));
242 }
243
244 const QString &ClipProperties::clipId() const {
245     return m_clip->getId();
246 }
247
248
249 QMap <QString, QString> ClipProperties::properties() {
250     QMap <QString, QString> props;
251     CLIPTYPE t = m_clip->clipType();
252     QMap <QString, QString> old_props = m_clip->properties();
253
254     if (old_props.value("description") != m_view.clip_description->text())
255         props["description"] = m_view.clip_description->text();
256
257     double aspect = m_view.clip_ar->value();
258     if (m_view.clip_force_ar->isChecked()) {
259         if (aspect != old_props.value("force_aspect_ratio").toDouble()) {
260             props["force_aspect_ratio"] = QString::number(aspect);
261             m_clipNeedsRefresh = true;
262         }
263     } else if (old_props.contains("force_aspect_ratio")) {
264         props["force_aspect_ratio"] = QString();
265         m_clipNeedsRefresh = true;
266     }
267
268     int threads = m_view.clip_threads->value();
269     if (m_view.clip_force_threads->isChecked()) {
270         if (threads != old_props.value("threads").toInt()) {
271             props["threads"] = QString::number(threads);
272         }
273     } else if (old_props.contains("threads")) {
274         props["threads"] = QString();
275     }
276
277     int vindex = m_view.clip_vindex->value();
278     if (m_view.clip_force_vindex->isChecked()) {
279         if (vindex != old_props.value("video_index").toInt()) {
280             props["video_index"] = QString::number(vindex);
281         }
282     } else if (old_props.contains("video_index")) {
283         props["video_index"] = QString();
284     }
285
286     int aindex = m_view.clip_aindex->value();
287     if (m_view.clip_force_aindex->isChecked()) {
288         if (aindex != old_props.value("audio_index").toInt()) {
289             props["audio_index"] = QString::number(aindex);
290         }
291     } else if (old_props.contains("audio_index")) {
292         props["audio_index"] = QString();
293     }
294
295     if (t == COLOR) {
296         QString new_color = m_view.clip_color->color().name();
297         if (new_color != QString("#" + old_props.value("colour").right(8).left(6))) {
298             m_clipNeedsRefresh = true;
299             props["colour"] = "0x" + new_color.right(6) + "ff";
300         }
301     } else if (t == IMAGE) {
302         if ((int) m_view.image_transparency->isChecked() != old_props.value("transparency").toInt()) {
303             props["transparency"] = QString::number((int)m_view.image_transparency->isChecked());
304             m_clipNeedsRefresh = true;
305         }
306     } else if (t == SLIDESHOW) {
307         QString value = QString::number((int) m_view.slide_loop->isChecked());
308         if (old_props.value("loop") != value) props["loop"] = value;
309         value = QString::number((int) m_view.slide_fade->isChecked());
310         if (old_props.value("fade") != value) props["fade"] = value;
311         value = QString::number((int) m_view.luma_softness->value());
312         if (old_props.value("softness") != value) props["softness"] = value;
313
314         QString extension;
315         switch (m_view.image_type->currentIndex()) {
316         case TYPE_PNG:
317             extension = "/.all.png";
318             break;
319         case TYPE_BMP:
320             extension = "/.all.bmp";
321             break;
322         case TYPE_GIF:
323             extension = "/.all.gif";
324             break;
325         default:
326             extension = "/.all.jpg";
327             break;
328         }
329         QString new_path = m_view.clip_path->text() + extension;
330         if (new_path != old_props.value("resource")) {
331             m_clipNeedsRefresh = true;
332             props["resource"] = new_path;
333             kDebug() << "////  SLIDE EDIT, NEW:" << new_path << ", OLD; " << old_props.value("resource");
334         }
335         int duration = m_tc.getFrameCount(m_view.slide_duration->text(), m_fps);
336         if (duration != old_props.value("ttl").toInt()) {
337             m_clipNeedsRefresh = true;
338             props["ttl"] = QString::number(duration);
339             props["out"] = QString::number(duration * m_count);
340         }
341         if (duration * m_count != old_props.value("out").toInt()) {
342             m_clipNeedsRefresh = true;
343             props["out"] = QString::number(duration * m_count);
344         }
345         if (m_view.slide_fade->isChecked()) {
346             int luma_duration = m_tc.getFrameCount(m_view.luma_duration->text(), m_fps);
347             if (luma_duration != old_props.value("luma_duration").toInt()) {
348                 m_clipNeedsRefresh = true;
349                 props["luma_duration"] = QString::number(luma_duration);
350             }
351             QString lumaFile;
352             if (m_view.slide_luma->isChecked())
353                 lumaFile = m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
354             if (lumaFile != old_props.value("luma_file")) {
355                 m_clipNeedsRefresh = true;
356                 props["luma_file"] = lumaFile;
357             }
358         } else {
359             if (old_props.value("luma_file") != QString()) {
360                 props["luma_file"] = QString();
361             }
362         }
363
364     }
365     return props;
366 }
367
368 bool ClipProperties::needsTimelineRefresh() const {
369     return m_clipNeedsRefresh;
370 }
371
372 void ClipProperties::parseFolder() {
373
374     QDir dir(m_view.clip_path->text());
375     QStringList filters;
376     QString extension;
377     switch (m_view.image_type->currentIndex()) {
378     case TYPE_PNG:
379         filters << "*.png";
380         extension = "/.all.png";
381         break;
382     case TYPE_BMP:
383         filters << "*.bmp";
384         extension = "/.all.bmp";
385         break;
386     case TYPE_GIF:
387         filters << "*.gif";
388         extension = "/.all.gif";
389         break;
390     default:
391         filters << "*.jpg";
392         // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers
393         // << "*.jpeg";
394         extension = "/.all.jpg";
395         break;
396     }
397
398     dir.setNameFilters(filters);
399     QStringList result = dir.entryList(QDir::Files);
400     m_count = result.count();
401     m_view.slide_info->setText(i18n("%1 images found", m_count));
402     QDomElement xml = m_clip->toXML();
403     xml.setAttribute("resource", m_view.clip_path->text() + extension);
404     QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(m_view.clip_path->text() + extension), 1, 240, 180);
405     QMap <QString, QString> props = m_clip->properties();
406     m_view.clip_duration->setText(m_tc.getTimecodeFromFrames(props.value("ttl").toInt() * m_count));
407     m_view.clip_thumb->setPixmap(pix);
408 }
409
410 #include "clipproperties.moc"
411
412