]> git.sesse.net Git - kdenlive/blob - thumbnailer/westleypreview.cpp
Reformat initializer lists in all constructors.
[kdenlive] / thumbnailer / westleypreview.cpp
1 /***************************************************************************
2    Copyright (C) 2006-2008
3    by Marco Gulino <marco@kmobiletools.org>
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the
17    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19  ***************************************************************************/
20
21 #include "westleypreview.h"
22
23 #include <qfile.h>
24 #include <qimage.h>
25 #include <QtCore/QVarLengthArray>
26
27 #include <kstandarddirs.h>
28 #include <krandomsequence.h>
29 #include <qdatetime.h>
30 #include <QProcess>
31 #include <kdebug.h>
32 #include <ktempdir.h>
33 #include <kurl.h>
34 #include <qfileinfo.h>
35 #include <KTemporaryFile>
36
37 #include <unistd.h>
38
39
40 #define DBG_AREA
41
42 //#include "config.h"
43 extern "C"
44 {
45     KDE_EXPORT ThumbCreator *new_creator() {
46         return new WestleyPreview;
47     }
48 }
49
50 WestleyPreview::WestleyPreview() :
51         m_rand(0),
52         m_inigoprocess(0)
53 {
54 }
55
56 WestleyPreview::~WestleyPreview()
57 {
58     delete m_rand;
59     delete m_inigoprocess;
60 }
61
62 bool WestleyPreview::startAndWaitProcess(const QStringList &args)
63 {
64     kDebug(DBG_AREA) << "westleypreview: starting process with args: " << args << endl;
65     m_inigoprocess->start(args.join(" "));
66     if (! m_inigoprocess->waitForStarted()) {
67         kDebug(DBG_AREA) << "westleypreview: PROCESS NOT STARTED!!! exiting\n";
68         return false;
69     }
70     if (! m_inigoprocess->waitForFinished()) {
71         kDebug(DBG_AREA) << "westleypreview: PROCESS DIDN'T FINISH!! exiting\n";
72         m_inigoprocess->close();
73         return false;
74     }
75     kDebug() << "westleypreview: process started and ended correctly\n";
76     return true;
77 }
78
79 bool WestleyPreview::create(const QString &path, int width, int /*height*/, QImage &img)
80 {
81     QFileInfo fi(path);
82     playerBin = KStandardDirs::findExe("inigo");
83     if (playerBin.isEmpty()) {
84         kDebug(DBG_AREA) << "westleypreview: inigo not found, exiting.\n";
85         return false;
86     }
87
88     fileinfo.seconds = 0;
89     fileinfo.fps = 0;
90
91     m_rand = new KRandomSequence(QDateTime::currentDateTime().toTime_t());
92     m_inigoprocess = new QProcess();
93     KUrl furl(path);
94     kDebug(DBG_AREA) << "videopreview: url=" << furl << "; local:" << furl.isLocalFile() << endl;
95     fileinfo.towidth = width;
96     fileinfo.toheight = width * 3 / 4;
97     QImage pix;
98 //    if(furl.isLocalFile())
99 //    {
100     QStringList args;
101     //TODO: modify inigo so that it can return some infos about a westley clip (duration, track number,fps,...)
102     // without actually playing the file
103     /*
104         args << playerBin << QString("\"" + path + "\"") << "-file-info";
105
106         kDebug(DBG_AREA) << "videopreview: starting process: --_" << " " << args.join(" ") << "_--\n";
107         if (! startAndWaitProcess(args) ) return NULL;
108
109         QString information=QString(inigoprocess->readAllStandardOutput() );
110         QRegExp findInfos("ID_VIDEO_FPS=([\\d]*).*ID_LENGTH=([\\d]*).*");
111         if(findInfos.indexIn( information) == -1 )
112         {
113             kDebug(DBG_AREA) << "videopreview: No information found, exiting\n";
114             return NULL;
115         }
116         fileinfo.seconds =findInfos.cap(2).toInt();
117         fileinfo.fps=findInfos.cap(1).toInt();
118         */
119     fileinfo.seconds = 250;
120     fileinfo.fps = 25;
121
122     const int LASTTRY = 3;
123     for (int i = 0; i <= LASTTRY; i++) {
124         pix = getFrame(path);
125         if (!pix.isNull()) {
126             uint variance = imageVariance(pix);
127             kDebug(DBG_AREA) << "videopreview: " << QFileInfo(path).fileName() << " frame variance: " << variance << "; " <<
128             ((variance <= 40 && (i != LASTTRY - 1)) ? "!!!DROPPING!!!" : "GOOD :-)") << endl;
129             if (variance > 40 || i == LASTTRY - 1) break;
130         }
131     }
132     if (pix.isNull()) {
133         return false;
134     }
135
136     if (pix.depth() != 32)
137         img = pix.convertToFormat(QImage::Format_RGB32);
138     else img = pix;
139     return true;
140 }
141
142 QImage WestleyPreview::getFrame(const QString &path)
143 {
144     QStringList args;
145     const int START = 25;
146     const int RANGE = 500;
147     args.clear();
148     args << playerBin << "\"" + path + "\"";
149
150     unsigned long start = (unsigned long)(START + (m_rand->getDouble() * RANGE));
151     args << QString("in=%1").arg(start) << QString("out=%1").arg(start) << "-consumer";
152
153     KTemporaryFile temp;
154     temp.setSuffix(".png");
155     temp.open();
156     args << QString("avformat:%1").arg(temp.fileName()) << "vframes=1" << "f=rawvideo" << "vcodec=png" << QString("s=%1x%2").arg(fileinfo.towidth).arg(fileinfo.toheight);
157     if (! startAndWaitProcess(args)) return QImage();
158     QImage retpix(temp.fileName());
159     temp.close();
160     return retpix;
161 }
162
163
164 uint WestleyPreview::imageVariance(QImage image)
165 {
166     uint delta = 0;
167     uint avg = 0;
168     uint bytes = image.numBytes();
169     uint STEPS = bytes / 2;
170     QVarLengthArray<uchar> pivot(STEPS);
171     kDebug(DBG_AREA) << "Using " << STEPS << " steps\n";
172     uchar *bits = image.bits();
173     // First pass: get pivots and taking average
174     for (uint i = 0; i < STEPS ; i++) {
175         pivot[i] = bits[i*(bytes/STEPS)];
176         avg += pivot[i];
177     }
178     avg = avg / STEPS;
179     // Second Step: calculate delta (average?)
180     for (uint i = 0; i < STEPS; i++) {
181         int curdelta = abs(int(avg - pivot[i]));
182         delta += curdelta;
183     }
184     return delta / STEPS;
185 }
186
187 ThumbCreator::Flags WestleyPreview::flags() const
188 {
189     return None;
190 }
191
192
193 #include "westleypreview.moc"
194