diff options
-rw-r--r-- | core/videoframeextractor.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/videoframeextractor.cpp b/core/videoframeextractor.cpp index c4e16a81b..daed29dc3 100644 --- a/core/videoframeextractor.cpp +++ b/core/videoframeextractor.cpp @@ -90,13 +90,11 @@ void VideoFrameExtractor::processItem(QString originalFilename, QString filename // Since we couldn't sart ffmpeg, turn off thumbnailing // TODO: call the proper preferences-functions prefs.extract_video_thumbnails = false; - report_error(qPrintable(tr("ffmpeg failed to start - video thumbnail creation suspended"))); - qDebug() << "Failed to start ffmpeg"; + report_error(qPrintable(tr("ffmpeg failed to start - video thumbnail creation suspended. To enable video thumbnailing, set working executable in preferences."))); return fail(originalFilename, duration, false); } if (!ffmpeg.waitForFinished()) { - qDebug() << "Failed waiting for ffmpeg"; - report_error(qPrintable(tr("failed waiting for ffmpeg - video thumbnail creation suspended"))); + report_error(qPrintable(tr("Failed waiting for ffmpeg - video thumbnail creation suspended. To enable video thumbnailing, set working executable in preferences."))); return fail(originalFilename, duration, false); } |