]> git.sesse.net Git - kdenlive/blob - src/docclipbase.cpp
Correctly replace a the producer when user does a "reload clip" action
[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 <KIO/NetAccess>
33 #include <KDebug>
34
35 #include <QCryptographicHash>
36
37 DocClipBase::DocClipBase(ClipManager *clipManager, QDomElement xml, const QString &id) :
38         QObject(),
39         m_audioFrameCache(),
40         m_refcount(0),
41         m_baseTrackProducers(),
42         m_audioTrackProducers(),
43         m_videoOnlyProducer(NULL),
44         m_snapMarkers(),
45         m_duration(),
46         m_audioTimer(NULL),
47         m_thumbProd(NULL),
48         m_audioThumbCreated(false),
49         m_id(id),
50         m_placeHolder(xml.hasAttribute("placeholder")),
51         m_properties()
52 {
53     int type = xml.attribute("type").toInt();
54     m_clipType = (CLIPTYPE) type;
55     if (m_placeHolder) xml.removeAttribute("placeholder");
56     QDomNamedNodeMap attributes = xml.attributes();
57     for (int i = 0; i < attributes.count(); i++) {
58         m_properties.insert(attributes.item(i).nodeName(), attributes.item(i).nodeValue());
59     }
60
61     KUrl url = KUrl(xml.attribute("resource"));
62     if (!m_properties.contains("file_hash") && !url.isEmpty()) getFileHash(url.path());
63
64     if (xml.hasAttribute("duration")) {
65         setDuration(GenTime(xml.attribute("duration").toInt(), KdenliveSettings::project_fps()));
66     } else {
67         int out = xml.attribute("out").toInt();
68         int in = xml.attribute("in").toInt();
69         setDuration(GenTime(out - in, KdenliveSettings::project_fps()));
70     }
71
72     if (!m_properties.contains("name")) m_properties.insert("name", url.fileName());
73
74     //if (!url.isEmpty() && QFile::exists(url.path()))
75     {
76         m_thumbProd = new KThumb(clipManager, url, m_id, m_properties.value("file_hash"));
77         if (m_clipType == AV || m_clipType == AUDIO) slotCreateAudioTimer();
78     }
79     //kDebug() << "type is video" << (m_clipType == AV) << " " << m_clipType;
80 }
81
82 /*DocClipBase & DocClipBase::operator=(const DocClipBase & clip) {
83     DocClipBase::operator=(clip);
84     m_id = clip.getId();
85     m_clipType = clip.clipType();
86     m_name = clip.name();
87     m_duration = clip.duration();
88     m_audioThumbCreated = clip.audioThumbCreated();
89     m_properties = clip.properties();
90     return *this;
91 }*/
92
93 DocClipBase::~DocClipBase()
94 {
95     delete m_thumbProd;
96     if (m_audioTimer) {
97         m_audioTimer->stop();
98         delete m_audioTimer;
99     }
100     qDeleteAll(m_baseTrackProducers);
101     m_baseTrackProducers.clear();
102     qDeleteAll(m_audioTrackProducers);
103     m_audioTrackProducers.clear();
104     delete m_videoOnlyProducer;
105     m_videoOnlyProducer = NULL;
106 }
107
108 void DocClipBase::setZone(QPoint zone)
109 {
110     m_properties.insert("zone_in", QString::number(zone.x()));
111     m_properties.insert("zone_out", QString::number(zone.y()));
112 }
113
114 QPoint DocClipBase::zone() const
115 {
116     QPoint zone;
117     zone.setX(m_properties.value("zone_in").toInt());
118     zone.setY(m_properties.value("zone_out", "50").toInt());
119     return zone;
120 }
121
122 void DocClipBase::slotCreateAudioTimer()
123 {
124     connect(m_thumbProd, SIGNAL(audioThumbReady(QMap <int, QMap <int, QByteArray> >)), this , SLOT(updateAudioThumbnail(QMap <int, QMap <int, QByteArray> >)));
125     connect(this, SIGNAL(getAudioThumbs()), this , SLOT(slotGetAudioThumbs()));
126     m_audioTimer = new QTimer(this);
127     connect(m_audioTimer, SIGNAL(timeout()), this, SLOT(slotGetAudioThumbs()));
128 }
129
130 void DocClipBase::askForAudioThumbs()
131 {
132     if (m_thumbProd) m_thumbProd->askForAudioThumbs(getId());
133 }
134
135 void DocClipBase::slotClearAudioCache()
136 {
137     if (m_thumbProd) m_thumbProd->stopAudioThumbs();
138     if (m_audioTimer != NULL) m_audioTimer->stop();
139     m_audioFrameCache.clear();
140     m_audioThumbCreated = false;
141 }
142
143 /*void DocClipBase::getClipMainThumb() {
144     if (m_thumbProd) m_thumbProd->getMainThumb(m_properties.value("thumbnail").toInt());
145 }*/
146
147 KThumb *DocClipBase::thumbProducer()
148 {
149     return m_thumbProd;
150 }
151
152 bool DocClipBase::audioThumbCreated() const
153 {
154     return m_audioThumbCreated;
155 }
156
157 const QString DocClipBase::name() const
158 {
159
160     return m_properties.value("name");
161 }
162
163 const QString &DocClipBase::getId() const
164 {
165     return m_id;
166 }
167
168 void DocClipBase::setId(const QString &newId)
169 {
170     m_id = newId;
171 }
172
173 const CLIPTYPE & DocClipBase::clipType() const
174 {
175     return m_clipType;
176 }
177
178 void DocClipBase::setClipType(CLIPTYPE type)
179 {
180     m_clipType = type;
181
182     m_properties.insert("type", QString::number((int) type));
183     if (m_thumbProd && m_audioTimer == NULL && (m_clipType == AV || m_clipType == AUDIO))
184         slotCreateAudioTimer();
185 }
186
187 KUrl DocClipBase::fileURL() const
188 {
189     QString res = m_properties.value("resource");
190     if (m_clipType != COLOR && !res.isEmpty()) return KUrl(res);
191     return KUrl();
192 }
193
194 void DocClipBase::setClipThumbFrame(const uint &ix)
195 {
196     m_properties.insert("thumbnail", QString::number((int) ix));
197 }
198
199 uint DocClipBase::getClipThumbFrame() const
200 {
201     return (uint) m_properties.value("thumbnail").toInt();
202 }
203
204 const QString DocClipBase::description() const
205 {
206     return m_properties.value("description");
207 }
208
209 bool DocClipBase::isTransparent() const
210 {
211     return (m_properties.value("transparency") == "1");
212 }
213
214 const QString DocClipBase::getProperty(const QString prop) const
215 {
216     return m_properties.value(prop);
217 }
218
219 void DocClipBase::setDuration(GenTime dur)
220 {
221     m_duration = dur;
222     m_properties.insert("duration", QString::number((int) dur.frames(KdenliveSettings::project_fps())));
223 }
224
225 const GenTime &DocClipBase::duration() const
226 {
227     return m_duration;
228 }
229
230 const GenTime DocClipBase::maxDuration() const
231 {
232     if (m_clipType == COLOR || m_clipType == IMAGE || m_clipType == TEXT || (m_clipType == SLIDESHOW &&  m_properties.value("loop") == "1")) {
233         /*const GenTime dur(15000, KdenliveSettings::project_fps());
234         return dur;*/
235         return GenTime();
236     }
237     return m_duration;
238 }
239
240 bool DocClipBase::hasFileSize() const
241 {
242     return true;
243 }
244
245
246 // virtual
247 QDomElement DocClipBase::toXML() const
248 {
249     QDomDocument doc;
250     QDomElement clip = doc.createElement("producer");
251
252     QMapIterator<QString, QString> i(m_properties);
253     while (i.hasNext()) {
254         i.next();
255         if (!i.value().isEmpty()) clip.setAttribute(i.key(), i.value());
256     }
257     doc.appendChild(clip);
258     //kDebug()<<"/// CLIP XML: "<<doc.toString();
259     return doc.documentElement();
260 }
261
262
263 void DocClipBase::setAudioThumbCreated(bool isDone)
264 {
265     m_audioThumbCreated = isDone;
266 }
267
268
269 void DocClipBase::setThumbnail(const QPixmap & pixmap)
270 {
271     m_thumbnail = pixmap;
272 }
273
274 const QPixmap & DocClipBase::thumbnail() const
275 {
276     return m_thumbnail;
277 }
278
279 void DocClipBase::updateAudioThumbnail(QMap<int, QMap<int, QByteArray> > data)
280 {
281     //kDebug() << "CLIPBASE RECIEDVED AUDIO DATA*********************************************";
282     m_audioFrameCache = data;
283     m_audioThumbCreated = true;
284     emit gotAudioData();
285 }
286
287 QList < GenTime > DocClipBase::snapMarkers() const
288 {
289     QList < GenTime > markers;
290
291     for (int count = 0; count < m_snapMarkers.count(); ++count) {
292         markers.append(m_snapMarkers[count].time());
293     }
294
295     return markers;
296 }
297
298 QList < CommentedTime > DocClipBase::commentedSnapMarkers() const
299 {
300     return m_snapMarkers;
301 }
302
303 void DocClipBase::setSnapMarkers(QList < CommentedTime > markers)
304 {
305     m_snapMarkers = markers;
306 }
307
308 void DocClipBase::addSnapMarker(const GenTime & time, QString comment)
309 {
310     QList < CommentedTime >::Iterator it = m_snapMarkers.begin();
311     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
312         if ((*it).time() >= time)
313             break;
314     }
315
316     if ((it != m_snapMarkers.end()) && ((*it).time() == time)) {
317         (*it).setComment(comment);
318         //kError() << "trying to add Snap Marker that already exists, this will cause inconsistancies with undo/redo";
319     } else {
320         CommentedTime t(time, comment);
321         m_snapMarkers.insert(it, t);
322     }
323
324 }
325
326 void DocClipBase::editSnapMarker(const GenTime & time, QString comment)
327 {
328     QList < CommentedTime >::Iterator it;
329     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
330         if ((*it).time() == time)
331             break;
332     }
333     if (it != m_snapMarkers.end()) {
334         (*it).setComment(comment);
335     } else {
336         kError() << "trying to edit Snap Marker that does not already exists";
337     }
338 }
339
340 QString DocClipBase::deleteSnapMarker(const GenTime & time)
341 {
342     QString result = i18n("Marker");
343     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
344
345     while (itt != m_snapMarkers.end()) {
346         if ((*itt).time() == time)
347             break;
348         ++itt;
349     }
350
351     if ((itt != m_snapMarkers.end()) && ((*itt).time() == time)) {
352         result = (*itt).comment();
353         m_snapMarkers.erase(itt);
354     }
355     return result;
356 }
357
358
359 GenTime DocClipBase::hasSnapMarkers(const GenTime & time)
360 {
361     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
362
363     while (itt != m_snapMarkers.end()) {
364         if ((*itt).time() == time)
365             return time;
366         ++itt;
367     }
368
369     return GenTime(0.0);
370 }
371
372 GenTime DocClipBase::findPreviousSnapMarker(const GenTime & currTime)
373 {
374     int it;
375     for (it = 0; it < m_snapMarkers.count(); it++) {
376         if (m_snapMarkers[it].time() >= currTime)
377             break;
378     }
379     if (it == 0) return GenTime();
380     else if (it == m_snapMarkers.count() - 1 && m_snapMarkers[it].time() < currTime)
381         return m_snapMarkers[it].time();
382     else return m_snapMarkers[it-1].time();
383 }
384
385 GenTime DocClipBase::findNextSnapMarker(const GenTime & currTime)
386 {
387     int it;
388     for (it = 0; it < m_snapMarkers.count(); it++) {
389         if (m_snapMarkers[it].time() > currTime)
390             break;
391     }
392     if (it < m_snapMarkers.count() && m_snapMarkers[it].time() > currTime) return m_snapMarkers[it].time();
393     return duration();
394 }
395
396 QString DocClipBase::markerComment(GenTime t)
397 {
398     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
399
400     while (itt != m_snapMarkers.end()) {
401         if ((*itt).time() == t)
402             return (*itt).comment();
403         ++itt;
404     }
405     return QString();
406 }
407
408 void DocClipBase::deleteProducers()
409 {
410     qDeleteAll(m_baseTrackProducers);
411     m_baseTrackProducers.clear();
412     if (m_thumbProd) m_thumbProd->clearProducer();
413     qDeleteAll(m_audioTrackProducers);
414     m_audioTrackProducers.clear();
415     delete m_videoOnlyProducer;
416     m_videoOnlyProducer = NULL;
417 }
418
419 void DocClipBase::setProducer(Mlt::Producer *producer, bool reset)
420 {
421     if (producer == NULL) return;
422     if (reset) {
423         // Clear all previous producers
424         deleteProducers();
425     }
426     QString id = producer->get("id");
427     if (id.contains('_')) {
428         // this is a subtrack producer, insert it at correct place
429         id = id.section('_', 1);
430         if (id.endsWith("audio")) {
431             int pos = id.section('_', 0, 0).toInt();
432             if (pos >= m_audioTrackProducers.count()) {
433                 while (m_audioTrackProducers.count() - 1 < pos) {
434                     m_audioTrackProducers.append(NULL);
435                 }
436             }
437             if (m_audioTrackProducers.at(pos) == NULL) m_audioTrackProducers[pos] = producer;
438             return;
439         }
440         if (id.endsWith("video")) {
441             m_videoOnlyProducer = producer;
442             return;
443         }
444         int pos = id.toInt();
445         if (pos >= m_baseTrackProducers.count()) {
446             while (m_baseTrackProducers.count() - 1 < pos) {
447                 m_baseTrackProducers.append(NULL);
448             }
449         }
450         if (m_baseTrackProducers.at(pos) == NULL) m_baseTrackProducers[pos] = producer;
451     } else {
452         if (m_baseTrackProducers.isEmpty()) m_baseTrackProducers.append(producer);
453         else if (m_baseTrackProducers.at(0) == NULL) m_baseTrackProducers[0] = producer;
454     }
455     //m_clipProducer = producer;
456     //m_clipProducer->set("transparency", m_properties.value("transparency").toInt());
457     if (m_thumbProd && (reset || !m_thumbProd->hasProducer())) m_thumbProd->setProducer(producer);
458 }
459
460 Mlt::Producer *DocClipBase::audioProducer(int track)
461 {
462     if (m_audioTrackProducers.count() <= track) {
463         while (m_audioTrackProducers.count() - 1 < track) {
464             m_audioTrackProducers.append(NULL);
465         }
466     }
467     if (m_audioTrackProducers.at(track) == NULL) {
468         Mlt::Producer *base = producer();
469         m_audioTrackProducers[track] = new Mlt::Producer(*(base->profile()), base->get("resource"));
470         if (m_properties.contains("force_aspect_ratio")) m_audioTrackProducers.at(track)->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
471         if (m_properties.contains("threads")) m_audioTrackProducers.at(track)->set("threads", m_properties.value("threads").toInt());
472         m_audioTrackProducers.at(track)->set("video_index", -1);
473         if (m_properties.contains("audio_index")) m_audioTrackProducers.at(track)->set("audio_index", m_properties.value("audio_index").toInt());
474         char *tmp = (char *) qstrdup(QString(getId() + '_' + QString::number(track) + "_audio").toUtf8().data());
475         m_audioTrackProducers.at(track)->set("id", tmp);
476         delete[] tmp;
477     }
478     return m_audioTrackProducers.at(track);
479 }
480
481 Mlt::Producer *DocClipBase::videoProducer()
482 {
483     if (m_videoOnlyProducer == NULL) {
484         int i;
485         for (i = 0; i < m_baseTrackProducers.count(); i++)
486             if (m_baseTrackProducers.at(i) != NULL) break;
487         if (i >= m_baseTrackProducers.count()) return NULL;
488         m_videoOnlyProducer = new Mlt::Producer(*m_baseTrackProducers.at(i)->profile(), m_baseTrackProducers.at(i)->get("resource"));
489         if (m_properties.contains("force_aspect_ratio")) m_videoOnlyProducer->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
490         if (m_properties.contains("threads")) m_videoOnlyProducer->set("threads", m_properties.value("threads").toInt());
491         m_videoOnlyProducer->set("audio_index", -1);
492         if (m_properties.contains("video_index")) m_videoOnlyProducer->set("video_index", m_properties.value("video_index").toInt());
493         char *tmp = (char *) qstrdup(QString(getId() + "_video").toUtf8().data());
494         m_videoOnlyProducer->set("id", tmp);
495         delete[] tmp;
496     }
497     return m_videoOnlyProducer;
498 }
499
500 Mlt::Producer *DocClipBase::producer(int track)
501 {
502     /*for (int i = 0; i < m_baseTrackProducers.count(); i++) {
503         if (m_baseTrackProducers.at(i)) kDebug() << "// PROD: " << i << ", ID: " << m_baseTrackProducers.at(i)->get("id");
504     }*/
505     if (track == -1 || (m_clipType != AUDIO && m_clipType != AV)) {
506         if (m_baseTrackProducers.count() == 0) return NULL;
507         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
508             if (m_baseTrackProducers.at(i) != NULL)
509                 return m_baseTrackProducers.at(i);
510         }
511         return NULL;
512     }
513     if (track >= m_baseTrackProducers.count()) {
514         while (m_baseTrackProducers.count() - 1 < track) {
515             m_baseTrackProducers.append(NULL);
516         }
517     }
518     if (m_baseTrackProducers.at(track) == NULL) {
519         int i;
520         for (i = 0; i < m_baseTrackProducers.count(); i++)
521             if (m_baseTrackProducers.at(i) != NULL) break;
522
523         if (i >= m_baseTrackProducers.count()) return NULL;
524
525         if (KIO::NetAccess::exists(KUrl(m_baseTrackProducers.at(i)->get("resource")), KIO::NetAccess::SourceSide, 0))
526             m_baseTrackProducers[track] = new Mlt::Producer(*m_baseTrackProducers.at(i)->profile(), m_baseTrackProducers.at(i)->get("resource"));
527         else { // special case for placeholder clips
528             m_baseTrackProducers[track] = NULL;
529             return NULL;
530         }
531
532         if (m_properties.contains("force_aspect_ratio")) m_baseTrackProducers[track]->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
533         if (m_properties.contains("threads")) m_baseTrackProducers[track]->set("threads", m_properties.value("threads").toInt());
534         if (m_properties.contains("video_index")) m_baseTrackProducers[track]->set("video_index", m_properties.value("video_index").toInt());
535         if (m_properties.contains("audio_index")) m_baseTrackProducers[track]->set("audio_index", m_properties.value("audio_index").toInt());
536         char *tmp = (char *) qstrdup(QString(getId() + '_' + QString::number(track)).toUtf8().data());
537         m_baseTrackProducers[track]->set("id", tmp);
538         delete[] tmp;
539         if (KdenliveSettings::dropbframes() && m_baseTrackProducers.at(i)->get("skip_loop_filter") && strcmp(m_baseTrackProducers.at(i)->get("skip_loop_filter"), "all") == 0) {
540             m_baseTrackProducers[track]->set("skip_loop_filter", "all");
541             m_baseTrackProducers[track]->set("skip_frame", "bidir");
542         }
543     }
544     return m_baseTrackProducers.at(track);
545 }
546
547 void DocClipBase::setProducerProperty(const char *name, int data)
548 {
549     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
550         if (m_baseTrackProducers.at(i) != NULL)
551             m_baseTrackProducers[i]->set(name, data);
552     }
553 }
554
555 void DocClipBase::setProducerProperty(const char *name, double data)
556 {
557     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
558         if (m_baseTrackProducers.at(i) != NULL)
559             m_baseTrackProducers[i]->set(name, data);
560     }
561 }
562
563 void DocClipBase::setProducerProperty(const char *name, const char *data)
564 {
565     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
566         if (m_baseTrackProducers.at(i) != NULL)
567             m_baseTrackProducers[i]->set(name, data);
568     }
569 }
570
571 const char *DocClipBase::producerProperty(const char *name) const
572 {
573     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
574         if (m_baseTrackProducers.at(i) != NULL) {
575             return m_baseTrackProducers.at(i)->get(name);
576         }
577     }
578     return NULL;
579 }
580
581
582 void DocClipBase::slotRefreshProducer()
583 {
584     if (m_baseTrackProducers.count() == 0) return;
585     kDebug() << "////////////   REFRESH CLIP !!!!!!!!!!!!!!!!";
586     if (m_clipType == SLIDESHOW) {
587         /*char *tmp = (char *) qstrdup(getProperty("resource").toUtf8().data());
588                Mlt::Producer producer(*(m_clipProducer->profile()), tmp);
589                delete[] tmp;
590         delete m_clipProducer;
591         m_clipProducer = new Mlt::Producer(producer.get_producer());
592         if (!getProperty("out").isEmpty()) m_clipProducer->set_in_and_out(getProperty("in").toInt(), getProperty("out").toInt());*/
593         setProducerProperty("ttl", getProperty("ttl").toInt());
594         //m_clipProducer->set("id", getProperty("id"));
595         if (getProperty("fade") == "1") {
596             // we want a fade filter effect
597             kDebug() << "////////////   FADE WANTED";
598             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
599             int ct = 0;
600             Mlt::Filter *filter = clipService.filter(ct);
601             while (filter) {
602                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
603                     break;
604                 }
605                 ct++;
606                 filter = clipService.filter(ct);
607             }
608
609             if (filter && strcmp(filter->get("mlt_service"), "luma") == 0) {
610                 filter->set("period", getProperty("ttl").toInt() - 1);
611                 filter->set("luma.out", getProperty("luma_duration").toInt());
612                 QString resource = getProperty("luma_file");
613                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
614                 filter->set("luma.resource", tmp);
615                 delete[] tmp;
616                 if (!getProperty("softness").isEmpty()) {
617                     int soft = getProperty("softness").toInt();
618                     filter->set("luma.softness", (double) soft / 100.0);
619                 }
620             } else {
621                 // filter does not exist, create it...
622                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "luma");
623                 filter->set("period", getProperty("ttl").toInt() - 1);
624                 filter->set("luma.out", getProperty("luma_duration").toInt());
625                 QString resource = getProperty("luma_file");
626                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
627                 filter->set("luma.resource", tmp);
628                 delete[] tmp;
629                 if (!getProperty("softness").isEmpty()) {
630                     int soft = getProperty("softness").toInt();
631                     filter->set("luma.softness", (double) soft / 100.0);
632                 }
633                 clipService.attach(*filter);
634             }
635         } else {
636             kDebug() << "////////////   FADE NOT WANTED!!!";
637             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
638             int ct = 0;
639             Mlt::Filter *filter = clipService.filter(0);
640             while (filter) {
641                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
642                     clipService.detach(*filter);
643                 } else ct++;
644                 filter = clipService.filter(ct);
645             }
646         }
647     }
648 }
649
650 void DocClipBase::setProperties(QMap <QString, QString> properties)
651 {
652     // changing clip type is not allowed
653     properties.remove("type");
654     QMapIterator<QString, QString> i(properties);
655     bool refreshProducer = false;
656     QStringList keys;
657     keys << "luma_duration" << "luma_file" << "fade" << "ttl" << "softness";
658     while (i.hasNext()) {
659         i.next();
660         setProperty(i.key(), i.value());
661         if (m_clipType == SLIDESHOW && keys.contains(i.key())) refreshProducer = true;
662     }
663     if (refreshProducer) slotRefreshProducer();
664 }
665
666 void DocClipBase::setMetadata(QMap <QString, QString> properties)
667 {
668     m_metadata = properties;
669 }
670
671 QMap <QString, QString> DocClipBase::metadata() const
672 {
673     return m_metadata;
674 }
675
676 void DocClipBase::clearProperty(const QString &key)
677 {
678     m_properties.remove(key);
679 }
680
681 void DocClipBase::getFileHash(const QString url)
682 {
683     if (m_clipType == SLIDESHOW) return;
684     QFile file(url);
685     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
686         QByteArray fileData;
687         QByteArray fileHash;
688         //kDebug() << "SETTING HASH of" << value;
689         m_properties.insert("file_size", QString::number(file.size()));
690         /*
691                * 1 MB = 1 second per 450 files (or faster)
692                * 10 MB = 9 seconds per 450 files (or faster)
693                */
694         if (file.size() > 1000000*2) {
695             fileData = file.read(1000000);
696             if (file.seek(file.size() - 1000000))
697                 fileData.append(file.readAll());
698         } else
699             fileData = file.readAll();
700         file.close();
701         fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
702         m_properties.insert("file_hash", QString(fileHash.toHex()));
703         //kDebug() << file.fileName() << file.size() << fileHash.toHex();
704     }
705 }
706
707 QString DocClipBase::getClipHash() const
708 {
709     QString hash;
710     if (m_clipType == SLIDESHOW) hash = QCryptographicHash::hash(m_properties.value("resource").toAscii().data(), QCryptographicHash::Md5).toHex();
711     else if (m_clipType == COLOR) hash = QCryptographicHash::hash(m_properties.value("colour").toAscii().data(), QCryptographicHash::Md5).toHex();
712     else hash = m_properties.value("file_hash");
713     return hash;
714 }
715
716 void DocClipBase::refreshThumbUrl()
717 {
718     if (m_thumbProd) m_thumbProd->updateThumbUrl(m_properties.value("file_hash"));
719 }
720
721 void DocClipBase::setProperty(const QString &key, const QString &value)
722 {
723     m_properties.insert(key, value);
724     if (key == "resource") {
725         getFileHash(value);
726         if (m_thumbProd) m_thumbProd->updateClipUrl(KUrl(value), m_properties.value("file_hash"));
727     } else if (key == "out") setDuration(GenTime(value.toInt(), KdenliveSettings::project_fps()));
728     //else if (key == "transparency") m_clipProducer->set("transparency", value.toInt());
729     else if (key == "colour") {
730         char *tmp = (char *) qstrdup(value.toUtf8().data());
731         setProducerProperty("colour", tmp);
732         delete[] tmp;
733     } else if (key == "xmldata") {
734         setProducerProperty("force_reload", 1);
735     } else if (key == "force_aspect_ratio") {
736         if (value.isEmpty()) {
737             m_properties.remove("force_aspect_ratio");
738             setProducerProperty("force_aspect_ratio", 0);
739         } else setProducerProperty("force_aspect_ratio", value.toDouble());
740     } else if (key == "threads") {
741         if (value.isEmpty()) {
742             m_properties.remove("threads");
743             setProducerProperty("threads", 1);
744         } else setProducerProperty("threads", value.toInt());
745     } else if (key == "video_index") {
746         if (value.isEmpty()) {
747             m_properties.remove("video_index");
748             setProducerProperty("video_index", m_properties.value("default_video").toInt());
749         } else setProducerProperty("video_index", value.toInt());
750     } else if (key == "audio_index") {
751         if (value.isEmpty()) {
752             m_properties.remove("audio_index");
753             setProducerProperty("audio_index", m_properties.value("default_audio").toInt());
754         } else setProducerProperty("audio_index", value.toInt());
755     }
756 }
757
758 QMap <QString, QString> DocClipBase::properties() const
759 {
760     return m_properties;
761 }
762
763 bool DocClipBase::slotGetAudioThumbs()
764 {
765     if (m_thumbProd == NULL) return false;
766     if (!KdenliveSettings::audiothumbnails()) {
767         if (m_audioTimer != NULL) m_audioTimer->stop();
768         return false;
769     }
770     if (m_audioThumbCreated) {
771         if (m_audioTimer != NULL) m_audioTimer->stop();
772         return false;
773     }
774     if (m_audioTimer != NULL)
775         m_audioTimer->start(1500);
776     double lengthInFrames = duration().frames(KdenliveSettings::project_fps());
777     m_thumbProd->getAudioThumbs(2, 0, lengthInFrames /*must be number of frames*/, 20);
778     return true;
779 }
780
781 bool DocClipBase::isPlaceHolder() const
782 {
783     return m_placeHolder;
784 }
785