]> git.sesse.net Git - kdenlive/blob - src/docclipbase.cpp
Cleanup + small fix in dvd wizard menu page
[kdenlive] / src / docclipbase.cpp
1 /***************************************************************************
2  *                         DocClipBase.cpp  -  description                 *
3  *                           -------------------                           *
4  *   begin                : Fri Apr 12 2002                                *
5  *   Copyright (C) 2002 by Jason Wood (jasonwood@blueyonder.co.uk)         *
6  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
7  *                                                                         *
8  *   This program is free software; you can redistribute it and/or modify  *
9  *   it under the terms of the GNU General Public License as published by  *
10  *   the Free Software Foundation; either version 2 of the License, or     *
11  *   (at your option) any later version.                                   *
12  *                                                                         *
13  *   This program is distributed in the hope that it will be useful,       *
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16  *   GNU General Public License for more details.                          *
17  *                                                                         *
18  *   You should have received a copy of the GNU General Public License     *
19  *   along with this program; if not, write to the                         *
20  *   Free Software Foundation, Inc.,                                       *
21  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
22  ***************************************************************************/
23
24
25
26
27 #include "docclipbase.h"
28 #include "kdenlivesettings.h"
29 #include "kthumb.h"
30 #include "clipmanager.h"
31
32 #include <KDebug>
33
34 #include <QCryptographicHash>
35
36 DocClipBase::DocClipBase(ClipManager *clipManager, QDomElement xml, const QString &id):
37         m_id(id), m_description(QString()), m_refcount(0), m_audioThumbCreated(false), m_duration(GenTime()), m_thumbProd(NULL), m_audioTimer(NULL), m_properties(QMap <QString, QString> ()), audioFrameChache(QMap<int, QMap<int, QByteArray> > ()), m_baseTrackProducers(QList <Mlt::Producer *>()), m_snapMarkers(QList < CommentedTime > ())  {
38     int type = xml.attribute("type").toInt();
39     m_clipType = (CLIPTYPE) type;
40
41     QDomNamedNodeMap attributes = xml.attributes();
42     for (unsigned int i = 0; i < attributes.count(); i++) {
43         m_properties.insert(attributes.item(i).nodeName(), attributes.item(i).nodeValue());
44     }
45
46     KUrl url = KUrl(xml.attribute("resource"));
47     if (!m_properties.contains("file_hash") && !url.isEmpty()) getFileHash(url.path());
48
49     if (xml.hasAttribute("duration")) {
50         setDuration(GenTime(xml.attribute("duration").toInt(), KdenliveSettings::project_fps()));
51     } else {
52         int out = xml.attribute("out").toInt();
53         int in = xml.attribute("in").toInt();
54         setDuration(GenTime(out - in, KdenliveSettings::project_fps()));
55     }
56
57     if (!m_properties.contains("name")) m_properties.insert("name", url.fileName());
58
59     //if (!url.isEmpty() && QFile::exists(url.path()))
60     {
61         m_thumbProd = new KThumb(clipManager, url, m_id, m_properties.value("file_hash"));
62         if (m_clipType == AV || m_clipType == AUDIO) slotCreateAudioTimer();
63     }
64     //kDebug() << "type is video" << (m_clipType == AV) << " " << m_clipType;
65 }
66
67 /*DocClipBase & DocClipBase::operator=(const DocClipBase & clip) {
68     DocClipBase::operator=(clip);
69     m_id = clip.getId();
70     m_clipType = clip.clipType();
71     m_name = clip.name();
72     m_duration = clip.duration();
73     m_audioThumbCreated = clip.audioThumbCreated();
74     m_properties = clip.properties();
75     return *this;
76 }*/
77
78 DocClipBase::~DocClipBase() {
79     if (m_thumbProd) {
80         delete m_thumbProd;
81     }
82     if (m_audioTimer) {
83         m_audioTimer->stop();
84         delete m_audioTimer;
85     }
86     qDeleteAll(m_baseTrackProducers);
87     m_baseTrackProducers.clear();
88 }
89
90 void DocClipBase::setZone(QPoint zone) {
91     m_properties.insert("zone_in", QString::number(zone.x()));
92     m_properties.insert("zone_out", QString::number(zone.y()));
93 }
94
95 QPoint DocClipBase::zone() const {
96     QPoint zone;
97     zone.setX(m_properties.value("zone_in").toInt());
98     zone.setY(m_properties.value("zone_out", "50").toInt());
99     return zone;
100 }
101
102 void DocClipBase::slotCreateAudioTimer() {
103     connect(m_thumbProd, SIGNAL(audioThumbReady(QMap <int, QMap <int, QByteArray> >)), this , SLOT(updateAudioThumbnail(QMap <int, QMap <int, QByteArray> >)));
104     connect(this, SIGNAL(getAudioThumbs()), this , SLOT(slotGetAudioThumbs()));
105     m_audioTimer = new QTimer(this);
106     connect(m_audioTimer, SIGNAL(timeout()), this, SLOT(slotGetAudioThumbs()));
107 }
108
109 void DocClipBase::askForAudioThumbs() {
110     if (m_thumbProd) m_thumbProd->askForAudioThumbs(getId());
111 }
112
113 void DocClipBase::slotClearAudioCache() {
114     if (m_thumbProd) m_thumbProd->stopAudioThumbs();
115     if (m_audioTimer != NULL) m_audioTimer->stop();
116     audioFrameChache.clear();
117     m_audioThumbCreated = false;
118 }
119
120 /*void DocClipBase::getClipMainThumb() {
121     if (m_thumbProd) m_thumbProd->getMainThumb(m_properties.value("thumbnail").toInt());
122 }*/
123
124 KThumb *DocClipBase::thumbProducer() {
125     return m_thumbProd;
126 }
127
128 bool DocClipBase::audioThumbCreated() const {
129     return m_audioThumbCreated;
130 }
131
132 const QString DocClipBase::name() const {
133
134     return m_properties.value("name");
135 }
136
137 const QString &DocClipBase::getId() const {
138     return m_id;
139 }
140
141 void DocClipBase::setId(const QString &newId) {
142     m_id = newId;
143 }
144
145 const CLIPTYPE & DocClipBase::clipType() const {
146     return m_clipType;
147 }
148
149 void DocClipBase::setClipType(CLIPTYPE type) {
150     m_clipType = type;
151
152     m_properties.insert("type", QString::number((int) type));
153     if (m_thumbProd && m_audioTimer == NULL && (m_clipType == AV || m_clipType == AUDIO))
154         slotCreateAudioTimer();
155 }
156
157 KUrl DocClipBase::fileURL() const {
158     QString res = m_properties.value("resource");
159     if (m_clipType != COLOR && !res.isEmpty()) return KUrl(res);
160     return KUrl();
161 }
162
163 void DocClipBase::setClipThumbFrame(const uint &ix) {
164     m_properties.insert("thumbnail", QString::number((int) ix));
165 }
166
167 uint DocClipBase::getClipThumbFrame() const {
168     return (uint) m_properties.value("thumbnail").toInt();
169 }
170
171 const QString DocClipBase::description() const {
172     return m_properties.value("description");
173 }
174
175 bool DocClipBase::isTransparent() const {
176     return (m_properties.value("transparency") == "1");
177 }
178
179 const QString DocClipBase::getProperty(const QString prop) const {
180     return m_properties.value(prop);
181 }
182
183 void DocClipBase::setDuration(GenTime dur) {
184     m_duration = dur;
185     m_properties.insert("duration", QString::number((int) dur.frames(KdenliveSettings::project_fps())));
186 }
187
188 const GenTime &DocClipBase::duration() const {
189     return m_duration;
190 }
191
192 const GenTime DocClipBase::maxDuration() const {
193     if (m_clipType == COLOR || m_clipType == IMAGE || m_clipType == TEXT || (m_clipType == SLIDESHOW &&  m_properties.value("loop") == "1")) {
194         const GenTime dur(15000, KdenliveSettings::project_fps());
195         return dur;
196     }
197     return m_duration;
198 }
199
200 bool DocClipBase::hasFileSize() const {
201     return true;
202 }
203
204
205 // virtual
206 QDomElement DocClipBase::toXML() const {
207     QDomDocument doc;
208     QDomElement clip = doc.createElement("producer");
209
210     QMapIterator<QString, QString> i(m_properties);
211     while (i.hasNext()) {
212         i.next();
213         if (!i.value().isEmpty()) clip.setAttribute(i.key(), i.value());
214     }
215     doc.appendChild(clip);
216     //kDebug()<<"/// CLIP XML: "<<doc.toString();
217     return doc.documentElement();
218 }
219
220
221 void DocClipBase::setAudioThumbCreated(bool isDone) {
222     m_audioThumbCreated = isDone;
223 }
224
225
226 void DocClipBase::setThumbnail(const QPixmap & pixmap) {
227     m_thumbnail = pixmap;
228 }
229
230 const QPixmap & DocClipBase::thumbnail() const {
231     return m_thumbnail;
232 }
233
234 void DocClipBase::updateAudioThumbnail(QMap<int, QMap<int, QByteArray> > data) {
235     //kDebug() << "CLIPBASE RECIEDVED AUDIO DATA*********************************************";
236     audioFrameChache = data;
237     m_audioThumbCreated = true;
238     emit gotAudioData();
239 }
240
241 QList < GenTime > DocClipBase::snapMarkers() const {
242     QList < GenTime > markers;
243
244     for (uint count = 0; count < m_snapMarkers.count(); ++count) {
245         markers.append(m_snapMarkers[count].time());
246     }
247
248     return markers;
249 }
250
251 QList < CommentedTime > DocClipBase::commentedSnapMarkers() const {
252     return m_snapMarkers;
253 }
254
255 void DocClipBase::setSnapMarkers(QList < CommentedTime > markers) {
256     m_snapMarkers = markers;
257 }
258
259 void DocClipBase::addSnapMarker(const GenTime & time, QString comment) {
260     QList < CommentedTime >::Iterator it = m_snapMarkers.begin();
261     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
262         if ((*it).time() >= time)
263             break;
264     }
265
266     if ((it != m_snapMarkers.end()) && ((*it).time() == time)) {
267         (*it).setComment(comment);
268         //kError() << "trying to add Snap Marker that already exists, this will cause inconsistancies with undo/redo";
269     } else {
270         CommentedTime t(time, comment);
271         m_snapMarkers.insert(it, t);
272     }
273
274 }
275
276 void DocClipBase::editSnapMarker(const GenTime & time, QString comment) {
277     QList < CommentedTime >::Iterator it;
278     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
279         if ((*it).time() == time)
280             break;
281     }
282     if (it != m_snapMarkers.end()) {
283         (*it).setComment(comment);
284     } else {
285         kError() << "trying to edit Snap Marker that does not already exists";
286     }
287 }
288
289 QString DocClipBase::deleteSnapMarker(const GenTime & time) {
290     QString result = i18n("Marker");
291     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
292
293     while (itt != m_snapMarkers.end()) {
294         if ((*itt).time() == time)
295             break;
296         ++itt;
297     }
298
299     if ((itt != m_snapMarkers.end()) && ((*itt).time() == time)) {
300         result = (*itt).comment();
301         m_snapMarkers.erase(itt);
302     }
303     return result;
304 }
305
306
307 GenTime DocClipBase::hasSnapMarkers(const GenTime & time) {
308     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
309
310     while (itt != m_snapMarkers.end()) {
311         if ((*itt).time() == time)
312             return time;
313         ++itt;
314     }
315
316     return GenTime(0.0);
317 }
318
319 GenTime DocClipBase::findPreviousSnapMarker(const GenTime & currTime) {
320     int it;
321     for (it = 0; it < m_snapMarkers.count(); it++) {
322         if (m_snapMarkers[it].time() >= currTime)
323             break;
324     }
325     if (it == 0) return GenTime();
326     else if (it == m_snapMarkers.count() - 1 && m_snapMarkers[it].time() < currTime)
327         return m_snapMarkers[it].time();
328     else return m_snapMarkers[it-1].time();
329 }
330
331 GenTime DocClipBase::findNextSnapMarker(const GenTime & currTime) {
332     int it;
333     for (it = 0; it < m_snapMarkers.count(); it++) {
334         if (m_snapMarkers[it].time() > currTime)
335             break;
336     }
337     if (it < m_snapMarkers.count() && m_snapMarkers[it].time() > currTime) return m_snapMarkers[it].time();
338     return duration();
339 }
340
341 QString DocClipBase::markerComment(GenTime t) {
342     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
343
344     while (itt != m_snapMarkers.end()) {
345         if ((*itt).time() == t)
346             return (*itt).comment();
347         ++itt;
348     }
349     return QString();
350 }
351
352 void DocClipBase::deleteProducers() {
353     qDeleteAll(m_baseTrackProducers);
354     m_baseTrackProducers.clear();
355     if (m_thumbProd) m_thumbProd->clearProducer();
356 }
357
358 void DocClipBase::setProducer(Mlt::Producer *producer) {
359     if (producer == NULL) return;
360     QString id = producer->get("id");
361     if (id.contains('_')) {
362         // this is a subtrack producer, insert it at correct place
363         int pos = id.section('_', 1, 1).toInt();
364         if (pos >= m_baseTrackProducers.count()) {
365             while (m_baseTrackProducers.count() - 1 < pos) {
366                 m_baseTrackProducers.append(NULL);
367             }
368         }
369         if (m_baseTrackProducers.at(pos) == NULL) m_baseTrackProducers[pos] = producer;
370     } else {
371         if (m_baseTrackProducers.isEmpty()) m_baseTrackProducers.append(producer);
372         else if (m_baseTrackProducers.at(0) == NULL) m_baseTrackProducers[0] = producer;
373     }
374     //m_clipProducer = producer;
375     //m_clipProducer->set("transparency", m_properties.value("transparency").toInt());
376     if (m_thumbProd && !m_thumbProd->hasProducer()) m_thumbProd->setProducer(producer);
377 }
378
379 Mlt::Producer *DocClipBase::producer(int track) {
380     /*for (int i = 0; i < m_baseTrackProducers.count(); i++) {
381         if (m_baseTrackProducers.at(i)) kDebug() << "// PROD: " << i << ", ID: " << m_baseTrackProducers.at(i)->get("id");
382     }*/
383     if (track == -1 || (m_clipType != AUDIO && m_clipType != AV)) {
384         if (m_baseTrackProducers.count() == 0) return NULL;
385         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
386             if (m_baseTrackProducers.at(i) != NULL)
387                 return m_baseTrackProducers.at(i);
388         }
389         return NULL;
390     }
391     if (track >= m_baseTrackProducers.count()) {
392         while (m_baseTrackProducers.count() - 1 < track) {
393             m_baseTrackProducers.append(NULL);
394         }
395     }
396     if (m_baseTrackProducers.at(track) == NULL) {
397         int i;
398         for (i = 0; i < m_baseTrackProducers.count(); i++)
399             if (m_baseTrackProducers.at(i) != NULL) break;
400         if (i >= m_baseTrackProducers.count()) return NULL;
401         m_baseTrackProducers[track] = new Mlt::Producer(*m_baseTrackProducers.at(i)->profile(), m_baseTrackProducers.at(i)->get("resource"));
402         if (m_properties.contains("force_aspect_ratio")) m_baseTrackProducers[track]->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
403         if (m_properties.contains("threads")) m_baseTrackProducers[track]->set("threads", m_properties.value("threads").toInt());
404         if (m_properties.contains("video_index")) m_baseTrackProducers[track]->set("video_index", m_properties.value("video_index").toInt());
405         if (m_properties.contains("audio_index")) m_baseTrackProducers[track]->set("audio_index", m_properties.value("audio_index").toInt());
406         char *tmp = (char *) qstrdup(QString(getId() + '_' + QString::number(track)).toUtf8().data());
407         m_baseTrackProducers[track]->set("id", tmp);
408         delete[] tmp;
409         if (KdenliveSettings::dropbframes() && m_baseTrackProducers.at(i)->get("skip_loop_filter") && strcmp(m_baseTrackProducers.at(i)->get("skip_loop_filter"), "all") == 0) {
410             m_baseTrackProducers[track]->set("skip_loop_filter", "all");
411             m_baseTrackProducers[track]->set("skip_frame", "bidir");
412         }
413     }
414     return m_baseTrackProducers.at(track);
415 }
416
417 void DocClipBase::setProducerProperty(const char *name, int data) {
418     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
419         if (m_baseTrackProducers.at(i) != NULL)
420             m_baseTrackProducers[i]->set(name, data);
421     }
422 }
423
424 void DocClipBase::setProducerProperty(const char *name, const char *data) {
425     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
426         if (m_baseTrackProducers.at(i) != NULL)
427             m_baseTrackProducers[i]->set(name, data);
428     }
429 }
430
431 const char *DocClipBase::producerProperty(const char *name) const {
432     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
433         if (m_baseTrackProducers.at(i) != NULL) {
434             return m_baseTrackProducers.at(i)->get(name);
435         }
436     }
437     return NULL;
438 }
439
440
441 void DocClipBase::slotRefreshProducer() {
442     if (m_baseTrackProducers.count() == 0) return;
443     kDebug() << "////////////   REFRESH CLIP !!!!!!!!!!!!!!!!";
444     if (m_clipType == SLIDESHOW) {
445         /*char *tmp = (char *) qstrdup(getProperty("resource").toUtf8().data());
446                Mlt::Producer producer(*(m_clipProducer->profile()), tmp);
447                delete[] tmp;
448         delete m_clipProducer;
449         m_clipProducer = new Mlt::Producer(producer.get_producer());
450         if (!getProperty("out").isEmpty()) m_clipProducer->set_in_and_out(getProperty("in").toInt(), getProperty("out").toInt());*/
451         setProducerProperty("ttl", getProperty("ttl").toInt());
452         //m_clipProducer->set("id", getProperty("id"));
453         if (getProperty("fade") == "1") {
454             // we want a fade filter effect
455             kDebug() << "////////////   FADE WANTED";
456             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
457             int ct = 0;
458             Mlt::Filter *filter = clipService.filter(ct);
459             while (filter) {
460                 if (filter->get("mlt_service") == "luma") {
461                     break;
462                 }
463                 ct++;
464                 filter = clipService.filter(ct);
465             }
466
467             if (filter && filter->get("mlt_service") == "luma") {
468                 filter->set("period", getProperty("ttl").toInt() - 1);
469                 filter->set("luma.out", getProperty("luma_duration").toInt());
470                 QString resource = getProperty("luma_file");
471                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
472                 filter->set("luma.resource", tmp);
473                 delete[] tmp;
474                 if (!getProperty("softness").isEmpty()) {
475                     int soft = getProperty("softness").toInt();
476                     filter->set("luma.softness", (double) soft / 100.0);
477                 }
478             } else {
479                 // filter does not exist, create it...
480                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "luma");
481                 filter->set("period", getProperty("ttl").toInt() - 1);
482                 filter->set("luma.out", getProperty("luma_duration").toInt());
483                 QString resource = getProperty("luma_file");
484                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
485                 filter->set("luma.resource", tmp);
486                 delete[] tmp;
487                 if (!getProperty("softness").isEmpty()) {
488                     int soft = getProperty("softness").toInt();
489                     filter->set("luma.softness", (double) soft / 100.0);
490                 }
491                 clipService.attach(*filter);
492             }
493         } else {
494             kDebug() << "////////////   FADE NOT WANTED!!!";
495             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
496             int ct = 0;
497             Mlt::Filter *filter = clipService.filter(0);
498             while (filter) {
499                 if (filter->get("mlt_service") == "luma") {
500                     clipService.detach(*filter);
501                 } else ct++;
502                 filter = clipService.filter(ct);
503             }
504         }
505     }
506 }
507
508 void DocClipBase::setProperties(QMap <QString, QString> properties) {
509     // changing clip type is not allowed
510     properties.remove("type");
511     QMapIterator<QString, QString> i(properties);
512     bool refreshProducer = false;
513     QStringList keys;
514     keys << "luma_duration" << "luma_file" << "fade" << "ttl" << "softness";
515     while (i.hasNext()) {
516         i.next();
517         setProperty(i.key(), i.value());
518         if (m_clipType == SLIDESHOW && keys.contains(i.key())) refreshProducer = true;
519     }
520     if (refreshProducer) slotRefreshProducer();
521 }
522
523 void DocClipBase::setMetadata(QMap <QString, QString> properties) {
524     m_metadata = properties;
525 }
526
527 QMap <QString, QString> DocClipBase::metadata() const {
528     return m_metadata;
529 }
530
531 void DocClipBase::clearProperty(const QString &key) {
532     m_properties.remove(key);
533 }
534
535 void DocClipBase::getFileHash(const QString &url) {
536     if (m_clipType == SLIDESHOW) return;
537     QFile file(url);
538     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
539         QByteArray fileData;
540         QByteArray fileHash;
541         //kDebug() << "SETTING HASH of" << value;
542         m_properties.insert("file_size", QString::number(file.size()));
543         /*
544                * 1 MB = 1 second per 450 files (or faster)
545                * 10 MB = 9 seconds per 450 files (or faster)
546                */
547         if (file.size() > 1000000*2) {
548             fileData = file.read(1000000);
549             if (file.seek(file.size() - 1000000))
550                 fileData.append(file.readAll());
551         } else
552             fileData = file.readAll();
553         file.close();
554         fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
555         m_properties.insert("file_hash", QString(fileHash.toHex()));
556         //kDebug() << file.fileName() << file.size() << fileHash.toHex();
557     }
558 }
559
560 QString DocClipBase::getClipHash() const {
561     QString hash;
562     if (m_clipType == SLIDESHOW) hash = QCryptographicHash::hash(m_properties.value("resource").toAscii().data(), QCryptographicHash::Md5).toHex();
563     else if (m_clipType == COLOR) hash = QCryptographicHash::hash(m_properties.value("colour").toAscii().data(), QCryptographicHash::Md5).toHex();
564     else hash = m_properties.value("file_hash");
565     return hash;
566 }
567
568 void DocClipBase::refreshThumbUrl() {
569     if (m_thumbProd) m_thumbProd->updateThumbUrl(m_properties.value("file_hash"));
570 }
571
572 void DocClipBase::setProperty(const QString &key, const QString &value) {
573     m_properties.insert(key, value);
574     if (key == "resource") {
575         getFileHash(value);
576         if (m_thumbProd) m_thumbProd->updateClipUrl(KUrl(value), m_properties.value("file_hash"));
577     } else if (key == "out") setDuration(GenTime(value.toInt(), KdenliveSettings::project_fps()));
578     //else if (key == "transparency") m_clipProducer->set("transparency", value.toInt());
579     else if (key == "colour") {
580         char *tmp = (char *) qstrdup(value.toUtf8().data());
581         setProducerProperty("colour", tmp);
582         delete[] tmp;
583     } else if (key == "xmldata") {
584         setProducerProperty("force_reload", 1);
585     } else if (key == "force_aspect_ratio") {
586         if (value.isEmpty()) {
587             m_properties.remove("force_aspect_ratio");
588             setProducerProperty("force_aspect_ratio", 0);
589         } else setProducerProperty("force_aspect_ratio", value.toDouble());
590     } else if (key == "threads") {
591         if (value.isEmpty()) {
592             m_properties.remove("threads");
593             setProducerProperty("threads", 1);
594         } else setProducerProperty("threads", value.toInt());
595     } else if (key == "video_index") {
596         if (value.isEmpty()) {
597             m_properties.remove("video_index");
598             setProducerProperty("video_index", m_properties.value("default_video").toInt());
599         } else setProducerProperty("video_index", value.toInt());
600     } else if (key == "audio_index") {
601         if (value.isEmpty()) {
602             m_properties.remove("audio_index");
603             setProducerProperty("audio_index", m_properties.value("default_audio").toInt());
604         } else setProducerProperty("audio_index", value.toInt());
605     }
606 }
607
608 QMap <QString, QString> DocClipBase::properties() const {
609     return m_properties;
610 }
611
612 bool DocClipBase::slotGetAudioThumbs() {
613     if (m_thumbProd == NULL) return false;
614     if (!KdenliveSettings::audiothumbnails()) {
615         if (m_audioTimer != NULL) m_audioTimer->stop();
616         return false;
617     }
618     if (m_audioThumbCreated) {
619         if (m_audioTimer != NULL) m_audioTimer->stop();
620         return false;
621     }
622     if (m_audioTimer != NULL)
623         m_audioTimer->start(1500);
624     double lengthInFrames = duration().frames(KdenliveSettings::project_fps());
625     m_thumbProd->getAudioThumbs(2, 0, lengthInFrames /*must be number of frames*/, 20);
626     return true;
627 }
628
629
630