X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectlist.cpp;h=c294ab19cb023ce0d22cd9e5309f48c313a013d7;hb=a1f47db12529bede571e784fe5e49d48707dcfa9;hp=717d17f78cdad20646f2c6b826a4ce45f070b82e;hpb=f099e68e8c7994dcffa9bc02878c71cc8b667ad8;p=kdenlive diff --git a/src/projectlist.cpp b/src/projectlist.cpp index 717d17f7..c294ab19 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -2198,6 +2198,11 @@ void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update) void ProjectList::extractMetadata(DocClipBase *clip) { + CLIPTYPE t = clip->clipType(); + if (t != AV && t != VIDEO) { + // Currently, we only use exiftool on video files + return; + } QMap props = clip->properties(); if (KdenliveSettings::use_exiftool() && !props.contains("exiftool")) { QMap meta;