Hello community,

here is the log from the commit of package ffmpegthumbs for openSUSE:Factory 
checked in at 2020-12-17 16:59:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ffmpegthumbs (Old)
 and      /work/SRC/openSUSE:Factory/.ffmpegthumbs.new.5145 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ffmpegthumbs"

Thu Dec 17 16:59:45 2020 rev:68 rq:855111 version:20.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ffmpegthumbs/ffmpegthumbs.changes        
2020-11-10 13:47:27.531529833 +0100
+++ /work/SRC/openSUSE:Factory/.ffmpegthumbs.new.5145/ffmpegthumbs.changes      
2020-12-17 17:00:02.933393238 +0100
@@ -1,0 +2,28 @@
+Sat Dec  5 23:15:29 UTC 2020 - Luca Beltrame <lbeltr...@kde.org>
+
+- Update to 20.12.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-12-apps-update
+- No code change since 20.11.90
+
+-------------------------------------------------------------------
+Fri Nov 27 15:15:45 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 20.11.90
+  * New feature release
+- No code change since 20.11.80
+
+-------------------------------------------------------------------
+Sat Nov 14 00:00:37 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 20.11.80
+  * New feature release
+- Changes since 20.08.3:
+  * Remove explicit ECM_KDE_MODULE_DIR
+  * remove deprecated/unnecessary call
+  * register our own log handler for ffmpeg using QLoggingCategory
+  * Add missing REQUIRED keyword for Taglib
+  * Use embedded cover in MP4 video files (kde#408956)
+
+-------------------------------------------------------------------

Old:
----
  ffmpegthumbs-20.08.3.tar.xz
  ffmpegthumbs-20.08.3.tar.xz.sig

New:
----
  ffmpegthumbs-20.12.0.tar.xz
  ffmpegthumbs-20.12.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ffmpegthumbs.spec ++++++
--- /var/tmp/diff_new_pack.FmvZSb/_old  2020-12-17 17:00:03.605393959 +0100
+++ /var/tmp/diff_new_pack.FmvZSb/_new  2020-12-17 17:00:03.605393959 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           ffmpegthumbs
-Version:        20.08.3
+Version:        20.12.0
 Release:        0
 Summary:        FFmpeg-based thumbnail creator for video files
 License:        LGPL-2.0-or-later
@@ -40,6 +40,7 @@
 BuildRequires:  pkgconfig(libavformat)
 BuildRequires:  pkgconfig(libavutil)
 BuildRequires:  pkgconfig(libswscale)
+BuildRequires:  pkgconfig(taglib)
 Recommends:     %{name}-lang
 %if %{with lang}
 Source1:        
https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig


++++++ ffmpegthumbs-20.08.3.tar.xz -> ffmpegthumbs-20.12.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/CMakeLists.txt 
new/ffmpegthumbs-20.12.0/CMakeLists.txt
--- old/ffmpegthumbs-20.08.3/CMakeLists.txt     2020-11-03 01:37:06.000000000 
+0100
+++ new/ffmpegthumbs-20.12.0/CMakeLists.txt     2020-12-04 01:12:33.000000000 
+0100
@@ -3,18 +3,20 @@
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.2.0")
 
-find_package(ECM 1.0.0 REQUIRED NO_MODULE)
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
+find_package(ECM 5.14.0 REQUIRED NO_MODULE)
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}  ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
 
 include(FeatureSummary)
 include(WriteBasicConfigVersionFile)
 include(KDEInstallDirs)
 include(KDECMakeSettings)
 include(KDECompilerSettings NO_POLICY_SCOPE)
+include(ECMQtDeclareLoggingCategory)
 
 find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core Gui)
 find_package(KF5 REQUIRED COMPONENTS KIO I18n Config)
 find_package(FFmpeg COMPONENTS AVCODEC AVFORMAT SWSCALE)
+find_package(Taglib REQUIRED)
 
 include_directories(
     ${CMAKE_CURRENT_BINARY_DIR}
@@ -36,10 +38,12 @@
   ffmpegthumbnailer/videothumbnailer.cpp
 )
 
+ecm_qt_declare_logging_category(ffmpegthumbs_PART_SRCS HEADER 
ffmpegthumbs_debug.h IDENTIFIER ffmpegthumbs_LOG CATEGORY_NAME 
org.kde.kdemultimedia.ffmpegthumbs DEFAULT_SEVERITY Critical)
+
 kconfig_add_kcfg_files(ffmpegthumbs_PART_SRCS ffmpegthumbnailersettings5.kcfgc)
 add_library(ffmpegthumbs MODULE ${ffmpegthumbs_PART_SRCS})
 
-target_link_libraries(ffmpegthumbs Qt5::Core Qt5::Gui KF5::KIOWidgets 
KF5::KIOCore KF5::I18n KF5::ConfigCore KF5::ConfigGui ${AVUTIL_LIBRARIES} 
${AVFILTER_LIBRARIES} ${AVFORMAT_LIBRARIES} ${AVCODEC_LIBRARIES} 
${SWSCALE_LIBRARIES} )
+target_link_libraries(ffmpegthumbs Qt5::Core Qt5::Gui KF5::KIOWidgets 
KF5::KIOCore KF5::I18n KF5::ConfigCore KF5::ConfigGui ${AVUTIL_LIBRARIES} 
${AVFILTER_LIBRARIES} ${AVFORMAT_LIBRARIES} ${AVCODEC_LIBRARIES} 
${SWSCALE_LIBRARIES} Taglib::Taglib )
 
 install(FILES ffmpegthumbnailersettings5.kcfg DESTINATION ${KCFG_INSTALL_DIR})
 install(TARGETS ffmpegthumbs DESTINATION ${PLUGIN_INSTALL_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/cmake/FindTaglib.cmake 
new/ffmpegthumbs-20.12.0/cmake/FindTaglib.cmake
--- old/ffmpegthumbs-20.08.3/cmake/FindTaglib.cmake     1970-01-01 
01:00:00.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/cmake/FindTaglib.cmake     2020-10-05 
02:19:52.000000000 +0200
@@ -0,0 +1,90 @@
+#.rst:
+# FindTaglib
+#-----------
+#
+# Try to find the Taglib library.
+#
+# This will define the following variables:
+#
+# ``Taglib_FOUND``
+#       True if the system has the taglib library of at least the minimum
+#       version specified by the version parameter to find_package()
+# ``Taglib_INCLUDE_DIRS``
+#       The taglib include dirs for use with target_include_directories
+# ``Taglib_LIBRARIES``
+#       The taglib libraries for use with target_link_libraries()
+# ``Taglib_VERSION``
+#       The version of taglib that was found
+#
+# If ``Taglib_FOUND is TRUE, it will also define the following imported
+# target:
+#
+# ``Taglib::Taglib``
+#       The Taglib library
+#
+# Since 5.72.0
+#
+# SPDX-FileCopyrightText: 2006 Laurent Montel <mon...@kde.org>
+# SPDX-FileCopyrightText: 2019 Heiko Becker <heire...@exherbo.org>
+# SPDX-FileCopyrightText: 2020 Elvis Angelaccio <elvis.angelac...@kde.org>
+# SPDX-License-Identifier: BSD-3-Clause
+
+find_package(PkgConfig QUIET)
+
+pkg_search_module(PC_TAGLIB QUIET taglib)
+
+find_path(Taglib_INCLUDE_DIRS
+    NAMES tag.h
+    PATH_SUFFIXES taglib
+    HINTS ${PC_TAGLIB_INCLUDEDIR}
+)
+
+find_library(Taglib_LIBRARIES
+    NAMES tag
+    HINTS ${PC_TAGLIB_LIBDIR}
+)
+
+set(Taglib_VERSION ${PC_TAGLIB_VERSION})
+
+if (Taglib_INCLUDE_DIRS AND NOT Taglib_VERSION)
+    if(EXISTS "${Taglib_INCLUDE_DIRS}/taglib.h")
+        file(READ "${Taglib_INCLUDE_DIRS}/taglib.h" TAGLIB_H)
+
+        string(REGEX MATCH "#define TAGLIB_MAJOR_VERSION[ ]+[0-9]+" 
TAGLIB_MAJOR_VERSION_MATCH ${TAGLIB_H})
+        string(REGEX MATCH "#define TAGLIB_MINOR_VERSION[ ]+[0-9]+" 
TAGLIB_MINOR_VERSION_MATCH ${TAGLIB_H})
+        string(REGEX MATCH "#define TAGLIB_PATCH_VERSION[ ]+[0-9]+" 
TAGLIB_PATCH_VERSION_MATCH ${TAGLIB_H})
+
+        string(REGEX REPLACE ".*_MAJOR_VERSION[ ]+(.*)" "\\1" 
TAGLIB_MAJOR_VERSION "${TAGLIB_MAJOR_VERSION_MATCH}")
+        string(REGEX REPLACE ".*_MINOR_VERSION[ ]+(.*)" "\\1" 
TAGLIB_MINOR_VERSION "${TAGLIB_MINOR_VERSION_MATCH}")
+        string(REGEX REPLACE ".*_PATCH_VERSION[ ]+(.*)" "\\1" 
TAGLIB_PATCH_VERSION "${TAGLIB_PATCH_VERSION_MATCH}")
+
+        set(Taglib_VERSION 
"${TAGLIB_MAJOR_VERSION}.${TAGLIB_MINOR_VERSION}.${TAGLIB_PATCH_VERSION}")
+    endif()
+endif()
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(Taglib
+    FOUND_VAR
+        Taglib_FOUND
+    REQUIRED_VARS
+        Taglib_LIBRARIES
+        Taglib_INCLUDE_DIRS
+    VERSION_VAR
+        Taglib_VERSION
+)
+
+if (Taglib_FOUND AND NOT TARGET Taglib::Taglib)
+    add_library(Taglib::Taglib UNKNOWN IMPORTED)
+    set_target_properties(Taglib::Taglib PROPERTIES
+        IMPORTED_LOCATION "${Taglib_LIBRARIES}"
+        INTERFACE_INCLUDE_DIRECTORIES "${Taglib_INCLUDE_DIRS}"
+    )
+endif()
+
+mark_as_advanced(Taglib_LIBRARIES Taglib_INCLUDE_DIRS)
+
+include(FeatureSummary)
+set_package_properties(Taglib PROPERTIES
+    URL "https://taglib.org/";
+    DESCRIPTION "A library for reading and editing the meta-data of audio 
formats"
+)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ffmpegthumbs-20.08.3/ffmpegthumbnailer/filmstripfilter.h 
new/ffmpegthumbs-20.12.0/ffmpegthumbnailer/filmstripfilter.h
--- old/ffmpegthumbs-20.08.3/ffmpegthumbnailer/filmstripfilter.h        
2020-10-05 08:27:21.000000000 +0200
+++ new/ffmpegthumbs-20.12.0/ffmpegthumbnailer/filmstripfilter.h        
2020-10-05 02:19:52.000000000 +0200
@@ -26,7 +26,7 @@
 {
 public:
     virtual ~FilmStripFilter() {}
-    virtual void process(VideoFrame& videoFrame);
+    virtual void process(VideoFrame& videoFrame) override;
 };
 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ffmpegthumbs-20.08.3/ffmpegthumbnailer/moviedecoder.cpp 
new/ffmpegthumbs-20.12.0/ffmpegthumbnailer/moviedecoder.cpp
--- old/ffmpegthumbs-20.08.3/ffmpegthumbnailer/moviedecoder.cpp 2020-10-05 
08:27:21.000000000 +0200
+++ new/ffmpegthumbs-20.12.0/ffmpegthumbnailer/moviedecoder.cpp 2020-10-05 
02:19:52.000000000 +0200
@@ -60,8 +60,6 @@
     m_lastHeight = -1;
     m_lastPixfmt = AV_PIX_FMT_NONE;
 
-    av_register_all();
-
     QFileInfo fileInfo(filename);
 
     if ((!m_FormatContextWasGiven) && avformat_open_input(&m_pFormatContext, 
fileInfo.absoluteFilePath().toLocal8Bit().data(), NULL, NULL) != 0) {
@@ -250,8 +248,6 @@
 
     av_frame_unref(m_pFrame);
 
-    int frameFinished = 0;
-
     avcodec_send_packet(m_pVideoCodecContext, m_pPacket);
     int ret = avcodec_receive_frame(m_pVideoCodecContext, m_pFrame);
     if (ret == AVERROR(EAGAIN)) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/ffmpegthumbnailer.cpp 
new/ffmpegthumbs-20.12.0/ffmpegthumbnailer.cpp
--- old/ffmpegthumbs-20.08.3/ffmpegthumbnailer.cpp      2020-10-05 
08:27:21.000000000 +0200
+++ new/ffmpegthumbs-20.12.0/ffmpegthumbnailer.cpp      2020-10-05 
02:19:52.000000000 +0200
@@ -1,4 +1,5 @@
 //    Copyright (C) 2010 Dirk Vanden Boer <dirk....@gmail.com>
+//    Copyright (C) 2020 Heiko Schäfer <he...@rangun.de>
 //
 //    This program is free software; you can redistribute it and/or modify
 //    it under the terms of the GNU General Public License as published by
@@ -16,15 +17,60 @@
 
 #include "ffmpegthumbnailer.h"
 #include "ffmpegthumbnailersettings5.h"
+#include "ffmpegthumbs_debug.h"
+
+#include <taglib/mp4file.h>
 
 #include <QImage>
 #include <QCheckBox>
 #include <KLocalizedString>
 
+extern "C" {
+#include <libavutil/log.h>
+}
+
+namespace {
+struct FFmpegLogHandler {
+    static void handleMessage(void *ptr, int level, const char *fmt, va_list 
vargs) {
+        Q_UNUSED(ptr);
+
+        const QString message = QString::vasprintf(fmt, vargs);
+
+        switch(level) {
+        case AV_LOG_PANIC: // ffmpeg will crash now
+            qCCritical(ffmpegthumbs_LOG) << message;
+            break;
+        case AV_LOG_FATAL: // fatal as in can't decode, not crash
+        case AV_LOG_ERROR:
+        case AV_LOG_WARNING:
+            qCWarning(ffmpegthumbs_LOG) << message;
+            break;
+        case AV_LOG_INFO:
+            qCInfo(ffmpegthumbs_LOG) << message;
+            break;
+        case AV_LOG_VERBOSE:
+        case AV_LOG_DEBUG:
+            qCDebug(ffmpegthumbs_LOG) << message;
+            break;
+        default:
+            qCWarning(ffmpegthumbs_LOG) << "unhandled log level" << level << 
message;
+            break;
+        }
+    }
+
+    FFmpegLogHandler() {
+        av_log_set_callback(&FFmpegLogHandler::handleMessage);
+    }
+};
+} //namespace
+
 extern "C"
 {
     Q_DECL_EXPORT ThumbCreator *new_creator()
     {
+        // This is a threadsafe way to ensure that we only register it once
+        static FFmpegLogHandler handler;
+
         return new FFMpegThumbnailer();
     }
 }
@@ -44,6 +90,25 @@
 
 bool FFMpegThumbnailer::create(const QString& path, int width, int /*height*/, 
QImage& img)
 {
+    QByteArray ba = path.toLocal8Bit();
+    TagLib::MP4::File f(ba.data(), false);
+
+    if (f.isValid()) {
+
+        TagLib::MP4::Tag* tag = f.tag();
+        TagLib::MP4::ItemListMap itemsListMap = tag->itemListMap();
+        TagLib::MP4::Item coverItem = itemsListMap["covr"];
+        TagLib::MP4::CoverArtList coverArtList = coverItem.toCoverArtList();
+
+        if (!coverArtList.isEmpty()) {
+            TagLib::MP4::CoverArt coverArt = coverArtList.front();
+            img.loadFromData((const uchar *)coverArt.data().data(),
+                         coverArt.data().size());
+
+            if (!img.isNull()) return true;
+        }
+    }
+
     m_Thumbnailer.setThumbnailSize(width);
     // 20% seek inside the video to generate the preview
     m_Thumbnailer.setSeekPercentage(20);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/ffmpegthumbs.desktop 
new/ffmpegthumbs-20.12.0/ffmpegthumbs.desktop
--- old/ffmpegthumbs-20.08.3/ffmpegthumbs.desktop       2020-10-05 
08:27:21.000000000 +0200
+++ new/ffmpegthumbs-20.12.0/ffmpegthumbs.desktop       2020-10-05 
02:19:52.000000000 +0200
@@ -18,6 +18,7 @@
 Name[fr]=Fichiers vidéo (ffmpegthumbs)
 Name[ga]=Comhaid Fhíse (ffmpegthumbs)
 Name[gl]=Ficheiros de vídeo (ffmpegthumbs)
+Name[hi]=वीडियो फ़ाइलें (ffmpegthumbs)
 Name[hu]=Videofájlok (ffmpegthumbs)
 Name[ia]=Files Video (ffmpegthumbs)
 Name[id]=File-file Video (ffmpegthumbs)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ffmpegthumbs-20.08.3/org.kde.ffmpegthumbs.metainfo.xml 
new/ffmpegthumbs-20.12.0/org.kde.ffmpegthumbs.metainfo.xml
--- old/ffmpegthumbs-20.08.3/org.kde.ffmpegthumbs.metainfo.xml  2020-10-05 
08:27:21.000000000 +0200
+++ new/ffmpegthumbs-20.12.0/org.kde.ffmpegthumbs.metainfo.xml  2020-10-05 
02:19:52.000000000 +0200
@@ -19,6 +19,7 @@
   <name xml:lang="eu">FFmpeg koadro-txiki egilea</name>
   <name xml:lang="fi">FFmpeg-pienoiskuvien luonti</name>
   <name xml:lang="fr">Créateur de vignettes FFmpeg</name>
+  <name xml:lang="hi">FFmpeg लघुछवि बनाने वाला</name>
   <name xml:lang="id">FFmpeg Thumbnailer</name>
   <name xml:lang="it">Generatore di miniature FFmpeg</name>
   <name xml:lang="ko">FFmpeg 축소판 생성기</name>
@@ -49,6 +50,7 @@
   <summary xml:lang="eu">Bideoen koadro-txiki sortzailea FFmpeg 
erabiliz</summary>
   <summary xml:lang="fi">Luo FFmpegiä käyttäen videopienoiskuvia</summary>
   <summary xml:lang="fr">Générateur de vignettes vidéo à l'aide de 
FFmpeg</summary>
+  <summary xml:lang="hi">FFmpeg से विडियो के लघु छवि उत्पादक</summary>
   <summary xml:lang="id">Penghasil thumbnail video menggunakan FFmpeg</summary>
   <summary xml:lang="it">Generatore di miniature video che usa FFmpeg</summary>
   <summary xml:lang="ko">FFmpeg를 사용하여 동영상 축소판 생성</summary>
@@ -80,6 +82,7 @@
     <p xml:lang="eu">FFmpeg koadro-txiki egilea KDE 
fitxategi-kudeatzaileentzako bideoen koadro-txiki sortzaile bat da.</p>
     <p xml:lang="fi">FFmpeg-pienoiskuvien luonti luo videopienoiskuvia KDE:n 
tiedostonhallintaohjelmille.</p>
     <p xml:lang="fr">Le créateur de vignettes FFmpeg est un générateur de 
vignettes de vidéo pour les gestionnaires de fichiers KDE.</p>
+    <p xml:lang="hi"> FFmpeg थंबनेलर केडीई फ़ाइल प्रबंधक के लिए एक विडियो 
लघुछवि उत्पादक है</p>
     <p xml:lang="id">FFmpeg Thumbnailer adalah sebuah penghasil thumbnail 
video untuk pengelolaan file KDE.</p>
     <p xml:lang="it">Il generatore di miniature FFmpeg è un generatore di 
miniature video per i gestori di file di KDE.</p>
     <p xml:lang="ko">FFmpeg 축소판 생성기는 KDE 파일 관리자의 동영상 축소판 생성기입니다.</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/ca/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/ca/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/ca/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/ca/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-27 13:12+0100\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
@@ -20,7 +20,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/ca@valencia/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/ca@valencia/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/ca@valencia/ffmpegthumbs.po     2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/ca@valencia/ffmpegthumbs.po     2020-12-04 
01:12:33.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-27 13:12+0100\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
@@ -20,7 +20,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/cs/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/cs/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/cs/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/cs/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-01-25 16:59+0100\n"
 "Last-Translator: Vit Pelcak <v...@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Lokalize 18.12.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/da/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/da/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/da/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/da/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2020-07-22 12:07+0200\n"
 "Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
 "Language-Team: Danish <kde-i18n-...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 20.04.2\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/de/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/de/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/de/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/de/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-07-01 18:48+0200\n"
 "Last-Translator: Frederik Schwarzer <schwar...@kde.org>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 19.04.2\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/el/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/el/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/el/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/el/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-08-07 10:25+0300\n"
 "Last-Translator: Stelios <ssta...@gmail.com>\n"
 "Language-Team: Greek <kde-i18n...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 18.12.3\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/en_GB/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/en_GB/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/en_GB/ffmpegthumbs.po   2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/en_GB/ffmpegthumbs.po   2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-03-24 19:56+0000\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
 "Language-Team: British English <kde-l10n-en...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 19.07.70\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/es/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/es/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/es/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/es/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-01-02 17:35+0100\n"
 "Last-Translator: Víctor Rodrigo Córdoba <vrcord...@gmail.com>\n"
 "Language-Team: Spanish <kde-l10n...@kde.org>\n"
@@ -19,7 +19,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/et/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/et/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/et/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/et/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-11-13 14:01+0200\n"
 "Last-Translator: Marek Laane <qiila...@gmail.com>\n"
 "Language-Team: Estonian <kde...@lists.linux.ee>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 19.08.1\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/eu/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/eu/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/eu/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/eu/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-07-03 22:57+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <xa...@euskalnet.net>\n"
 "Language-Team: Basque <kde-i18n...@kde.org>\n"
@@ -20,7 +20,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 19.04.2\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/fi/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/fi/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/fi/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/fi/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-04-01 17:17+0200\n"
 "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/fr/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/fr/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/fr/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/fr/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-01-22 12:09+0800\n"
 "Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
@@ -17,7 +17,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/gl/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/gl/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/gl/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/gl/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-28 19:32+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Galician <kde-i18n-...@kde.org>\n"
@@ -16,7 +16,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/hi/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/hi/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/hi/ffmpegthumbs.po      1970-01-01 
01:00:00.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/hi/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -0,0 +1,24 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
+#
+# G Karunakar <karuna...@indlinux.org>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: ffmpegthumbs\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
+"PO-Revision-Date: 2020-08-27 00:28+0530\n"
+"Last-Translator: G Karunakar <karuna...@indlinux.org>\n"
+"Language-Team: Hindi <kde-i18n-...@kde.org>\n"
+"Language: hi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: ffmpegthumbnailer.cpp:130
+#, kde-format
+msgctxt "@option:check"
+msgid "Embed filmstrip effect"
+msgstr "फिल्म पट्टी प्रभाव लगाएँ"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/it/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/it/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/it/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/it/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-27 19:52+0100\n"
 "Last-Translator: Vincenzo Reale <smart2...@baslug.org>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 18.12.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/ja/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/ja/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/ja/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/ja/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-30 22:21-0800\n"
 "Last-Translator: Japanese KDE translation team <kde...@kde.org>\n"
 "Language-Team: Japanese <kde...@kde.org>\n"
@@ -14,7 +14,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/ko/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/ko/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/ko/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/ko/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-04-22 01:55+0200\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <kde...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 18.12.3\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/lt/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/lt/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/lt/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/lt/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-27 03:15+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: lt\n"
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n"
 "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/nl/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/nl/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/nl/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/nl/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-27 12:49+0100\n"
 "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n"
 "Language-Team: Dutch <kde-i18n...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/nn/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/nn/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/nn/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/nn/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2020-05-25 21:51+0200\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n"
@@ -19,7 +19,7 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/pl/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/pl/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/pl/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/pl/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-01-27 10:20+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
@@ -18,7 +18,7 @@
 "|| n%100>=20) ? 1 : 2);\n"
 "X-Generator: Lokalize 19.03.70\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/pt/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/pt/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/pt/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/pt/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-28 18:18+0000\n"
 "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n...@kde.org>\n"
@@ -12,7 +12,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/pt_BR/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/pt_BR/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/pt_BR/ffmpegthumbs.po   2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/pt_BR/ffmpegthumbs.po   2020-12-04 
01:12:33.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-30 22:09-0300\n"
 "Last-Translator: André Marcelo Alvarenga <alvare...@kde.org>\n"
 "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n"
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/ro/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/ro/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/ro/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/ro/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2020-09-20 13:06+0100\n"
 "Last-Translator: Sergiu Bivol <ser...@cip.md>\n"
 "Language-Team: Romanian\n"
@@ -18,7 +18,7 @@
 "20)) ? 1 : 2;\n"
 "X-Generator: Lokalize 19.12.3\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/ru/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/ru/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/ru/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/ru/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-02-05 21:27+0300\n"
 "Last-Translator: Alexander Yavorsky <kekc...@gmail.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
@@ -18,7 +18,7 @@
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Lokalize 18.12.1\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/sk/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/sk/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/sk/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/sk/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-29 22:32+0100\n"
 "Last-Translator: iRoman Paholík <wizzar...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
@@ -15,7 +15,7 @@
 "X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/sl/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/sl/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/sl/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/sl/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2020-01-23 16:22+0100\n"
 "Last-Translator: Matjaž Jeran <matjaz.je...@amis.net>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
@@ -18,7 +18,7 @@
 "%100==4 ? 3 : 0);\n"
 "X-Generator: Poedit 2.2.4\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/sv/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/sv/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/sv/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/sv/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-27 09:59+0100\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <kde-i18n-...@kde.org>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/uk/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/uk/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/uk/ffmpegthumbs.po      2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/uk/ffmpegthumbs.po      2020-12-04 
01:12:33.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2018-12-27 07:50+0200\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
@@ -20,7 +20,7 @@
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/zh_CN/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/zh_CN/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/zh_CN/ffmpegthumbs.po   2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/zh_CN/ffmpegthumbs.po   2020-12-04 
01:12:33.000000000 +0100
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
-"PO-Revision-Date: 2020-10-08 19:23\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
+"PO-Revision-Date: 2020-11-10 15:04\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -22,7 +22,7 @@
 "X-Crowdin-File: /kf5-stable/messages/ffmpegthumbs/ffmpegthumbs.pot\n"
 "X-Crowdin-File-ID: 8178\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/po/zh_TW/ffmpegthumbs.po 
new/ffmpegthumbs-20.12.0/po/zh_TW/ffmpegthumbs.po
--- old/ffmpegthumbs-20.08.3/po/zh_TW/ffmpegthumbs.po   2020-11-03 
01:37:06.000000000 +0100
+++ new/ffmpegthumbs-20.12.0/po/zh_TW/ffmpegthumbs.po   2020-12-04 
01:12:33.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 03:08+0200\n"
+"POT-Creation-Date: 2020-08-17 02:12+0200\n"
 "PO-Revision-Date: 2019-01-04 01:38+0800\n"
 "Last-Translator: pan93412 <pan93...@gmail.com>\n"
 "Language-Team: Chinese <zh-l...@lists.linux.org.tw>\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 18.12.0\n"
 
-#: ffmpegthumbnailer.cpp:65
+#: ffmpegthumbnailer.cpp:130
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-20.08.3/tests/CMakeLists.txt 
new/ffmpegthumbs-20.12.0/tests/CMakeLists.txt
--- old/ffmpegthumbs-20.08.3/tests/CMakeLists.txt       2020-10-05 
08:27:21.000000000 +0200
+++ new/ffmpegthumbs-20.12.0/tests/CMakeLists.txt       2020-10-05 
02:19:52.000000000 +0200
@@ -15,12 +15,13 @@
        ${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/imagewriter.cpp
        ${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailer/videothumbnailer.cpp
 )
+ecm_qt_declare_logging_category(ffmpegthumbtest_SRCS HEADER 
ffmpegthumbs_debug.h IDENTIFIER ffmpegthumbs_LOG CATEGORY_NAME 
org.kde.kdemultimedia.ffmpegthumbs DEFAULT_SEVERITY Critical)
 
 kconfig_add_kcfg_files(ffmpegthumbtest_SRCS 
${CMAKE_CURRENT_SOURCE_DIR}/../ffmpegthumbnailersettings5.kcfgc)
 
 add_executable(ffmpegthumbtest ${ffmpegthumbtest_SRCS} )
 
-target_link_libraries(ffmpegthumbtest Qt5::Core Qt5::Gui KF5::KIOWidgets 
KF5::KIOCore KF5::I18n KF5::ConfigCore KF5::ConfigGui ${AVUTIL_LIBRARIES} 
${AVFILTER_LIBRARIES} ${AVFORMAT_LIBRARIES} ${AVCODEC_LIBRARIES} 
${SWSCALE_LIBRARIES})
+target_link_libraries(ffmpegthumbtest Qt5::Core Qt5::Gui KF5::KIOWidgets 
KF5::KIOCore KF5::I18n KF5::ConfigCore KF5::ConfigGui ${AVUTIL_LIBRARIES} 
${AVFILTER_LIBRARIES} ${AVFORMAT_LIBRARIES} ${AVCODEC_LIBRARIES} 
${SWSCALE_LIBRARIES} Taglib::Taglib)
 
 
 
_______________________________________________
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org

Reply via email to