]> git.sesse.net Git - kdenlive/blob - src/projecttree/cutclipjob.cpp
Display job status in clip tooltip
[kdenlive] / src / projecttree / cutclipjob.cpp
1 /***************************************************************************
2  *                                                                         *
3  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.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.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #include "cutclipjob.h"
22 #include "kdenlivesettings.h"
23 #include "kdenlivedoc.h"
24
25 #include <KDebug>
26 #include <KLocale>
27
28 CutClipJob::CutClipJob(CLIPTYPE cType, const QString &id, QStringList parameters) : AbstractClipJob(CUTJOB, cType, id, parameters)
29 {
30     description = i18n("clip cut");
31     m_dest = parameters.at(0);
32     m_src = parameters.at(1);
33     m_start = parameters.at(2);
34     m_end = parameters.at(3);
35     m_jobDuration = parameters.at(4).toInt();
36     addClipToProject = parameters.at(5).toInt();
37     if (parameters.count() == 7) m_cutExtraParams = parameters.at(6).simplified();
38 }
39
40 QProcess *CutClipJob::startJob(bool *ok)
41 {
42     // Special case: playlist clips (.mlt or .kdenlive project files)
43     if (clipType == AV || clipType == AUDIO || clipType == VIDEO) {
44         QStringList parameters;
45         parameters << "-i" << m_src;
46         parameters << "-ss" << m_start <<"-t" << m_end;
47         parameters << "-acodec" << "copy" << "-vcodec" << "copy";
48         if (!m_cutExtraParams.isEmpty()) {
49             foreach(const QString &s, m_cutExtraParams.split(' '))
50                 parameters << s;
51         }
52
53         // Make sure we don't block when proxy file already exists
54         parameters << "-y";
55         parameters << m_dest;
56         m_jobProcess = new QProcess;
57         m_jobProcess->setProcessChannelMode(QProcess::MergedChannels);
58         kDebug()<<"// STARTING CIUT JOS: "<<parameters;
59         m_jobProcess->start("ffmpeg", parameters);
60         m_jobProcess->waitForStarted();
61         QString log = m_jobProcess->readAll();
62         if (!log.isEmpty()) m_errorMessage.append(log + '\n');
63         return m_jobProcess;
64     }
65     else m_errorMessage = i18n("Cannot process this clip type.");
66     *ok = false;
67     return NULL;
68 }
69
70 int CutClipJob::processLogInfo()
71 {
72     if (!m_jobProcess || m_jobDuration == 0) return -1;
73     QString log = m_jobProcess->readAll();
74     if (!log.isEmpty()) m_errorMessage.append(log + '\n');
75     int progress;
76     // Parse FFmpeg output
77     if (log.contains("frame=")) {
78         int progress = log.section("frame=", 1, 1).simplified().section(' ', 0, 0).toInt();
79         kDebug()<<"// PROgress: "<<progress<<", DUR: "<<m_jobDuration;
80         return (int) (100.0 * progress / m_jobDuration);
81     }
82     else if (log.contains("time=")) {
83         QString time = log.section("time=", 1, 1).simplified().section(' ', 0, 0);
84         if (time.contains(':')) {
85             QStringList numbers = time.split(':');
86             progress = numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble();
87         }
88         else progress = (int) time.toDouble();
89         kDebug()<<"// PROgress: "<<progress<<", DUR: "<<m_jobDuration;
90         return (int) (100.0 * progress / m_jobDuration);
91     }
92     return -1;
93 }
94
95 CutClipJob::~CutClipJob()
96 {
97 }
98
99 const QString CutClipJob::destination() const
100 {
101     return m_dest;
102 }
103
104 stringMap CutClipJob::cancelProperties()
105 {
106     QMap <QString, QString> props;
107     return props;
108 }
109
110 const QString CutClipJob::statusMessage(CLIPJOBSTATUS status)
111 {
112     QString statusInfo;
113     switch (status) {
114         case CREATINGJOB:
115             statusInfo = i18n("Extracting clip cut");
116             break;
117         case JOBWAITING:
118             statusInfo = i18n("Waiting - clip cut");
119             break;
120         default:
121             break;
122     }
123     return statusInfo;
124 }
125