]> git.sesse.net Git - kdenlive/blob - src/recmonitor.cpp
Re-enable audio dubbing: http://kdenlive.org/mantis/view.php?id=2910
[kdenlive] / src / recmonitor.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "recmonitor.h"
22 #include "gentime.h"
23 #include "mltdevicecapture.h"
24 #include "kdenlivesettings.h"
25 #include "managecapturesdialog.h"
26 #include "monitormanager.h"
27 #include "monitor.h"
28 #include "profilesdialog.h"
29
30 #include <KDebug>
31 #include <KLocale>
32 #include <KStandardDirs>
33 #include <KComboBox>
34 #include <KIO/NetAccess>
35 #include <KFileItem>
36 #include <KMessageBox>
37 #include <KApplication>
38 #include <KDiskFreeSpaceInfo>
39 #include <QMouseEvent>
40 #include <QMenu>
41 #include <QToolButton>
42 #include <QFile>
43 #include <QDir>
44
45
46 RecMonitor::RecMonitor(Kdenlive::MONITORID name, MonitorManager *manager, QWidget *parent) :
47     AbstractMonitor(name, manager, parent),
48     m_isCapturing(false),
49     m_didCapture(false),
50     m_isPlaying(false),
51     m_captureDevice(NULL),
52     m_analyse(false)
53 {
54     setupUi(this);
55
56     //video_frame->setAttribute(Qt::WA_PaintOnScreen);
57     device_selector->setCurrentIndex(KdenliveSettings::defaultcapture());
58     connect(device_selector, SIGNAL(currentIndexChanged(int)), this, SLOT(slotVideoDeviceChanged(int)));
59
60     // Video widget holder
61     QVBoxLayout *l = new QVBoxLayout;
62     l->setContentsMargins(0, 0, 0, 0);
63     l->setSpacing(0);
64     l->addWidget(videoBox, 10);
65     video_frame->setLayout(l);
66     createVideoSurface();
67
68     QToolBar *toolbar = new QToolBar(this);
69     QHBoxLayout *layout = new QHBoxLayout;
70     layout->setContentsMargins(0, 0, 0, 0);
71     m_playIcon = KIcon("media-playback-start");
72     m_pauseIcon = KIcon("media-playback-pause");
73
74     m_discAction = toolbar->addAction(KIcon("network-connect"), i18n("Connect"));
75     connect(m_discAction, SIGNAL(triggered()), this, SLOT(slotDisconnect()));
76
77     m_rewAction = toolbar->addAction(KIcon("media-seek-backward"), i18n("Rewind"));
78     connect(m_rewAction, SIGNAL(triggered()), this, SLOT(slotRewind()));
79
80     m_playAction = toolbar->addAction(m_playIcon, i18n("Play"));
81     connect(m_playAction, SIGNAL(triggered()), this, SLOT(slotStartPreview()));
82
83     m_stopAction = toolbar->addAction(KIcon("media-playback-stop"), i18n("Stop"));
84     connect(m_stopAction, SIGNAL(triggered()), this, SLOT(slotStopCapture()));
85     m_stopAction->setEnabled(false);
86     m_fwdAction = toolbar->addAction(KIcon("media-seek-forward"), i18n("Forward"));
87     connect(m_fwdAction, SIGNAL(triggered()), this, SLOT(slotForward()));
88
89     m_recAction = toolbar->addAction(KIcon("media-record"), i18n("Record"));
90     connect(m_recAction, SIGNAL(triggered()), this, SLOT(slotRecord()));
91     m_recAction->setCheckable(true);
92
93     rec_options->setIcon(KIcon("system-run"));
94     QMenu *menu = new QMenu(this);
95     m_addCapturedClip = new QAction(i18n("Add Captured File to Project"), this);
96     m_addCapturedClip->setCheckable(true);
97     m_addCapturedClip->setChecked(true);
98     menu->addAction(m_addCapturedClip);
99
100     rec_audio->setChecked(KdenliveSettings::v4l_captureaudio());
101     rec_video->setChecked(KdenliveSettings::v4l_capturevideo());
102
103     m_previewSettings = new QAction(i18n("Recording Preview"), this);
104     m_previewSettings->setCheckable(true);
105
106
107     rec_options->setMenu(menu);
108     menu->addAction(m_previewSettings);
109
110     toolbar->addSeparator();
111
112     QAction *configAction = toolbar->addAction(KIcon("configure"), i18n("Configure"));
113     connect(configAction, SIGNAL(triggered()), this, SLOT(slotConfigure()));
114     configAction->setCheckable(false);
115
116     layout->addWidget(toolbar);
117     layout->addWidget(&m_logger);
118     layout->addWidget(&m_dvinfo);
119     m_logger.setMaxCount(10);
120     m_logger.setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
121     m_logger.setFrame(false);
122     //m_logger.setInsertPolicy(QComboBox::InsertAtTop);
123
124     m_freeSpace = new KCapacityBar(KCapacityBar::DrawTextInline, this);
125     m_freeSpace->setMaximumWidth(150);
126     QFontMetricsF fontMetrics(font());
127     m_freeSpace->setMaximumHeight(fontMetrics.height() * 1.2);
128     slotUpdateFreeSpace();
129     layout->addWidget(m_freeSpace);
130     connect(&m_spaceTimer, SIGNAL(timeout()), this, SLOT(slotUpdateFreeSpace()));
131     m_spaceTimer.setInterval(30000);
132     m_spaceTimer.setSingleShot(false);
133
134     control_frame_firewire->setLayout(layout);
135     m_displayProcess = new QProcess;
136     m_captureProcess = new QProcess;
137
138     connect(m_captureProcess, SIGNAL(stateChanged(QProcess::ProcessState)), this, SLOT(slotProcessStatus(QProcess::ProcessState)));
139     connect(m_captureProcess, SIGNAL(readyReadStandardError()), this, SLOT(slotReadDvgrabInfo()));
140     
141     QString videoDriver = KdenliveSettings::videodrivername();
142 #if QT_VERSION >= 0x040600
143     QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
144     env.insert("SDL_WINDOWID", QString::number(videoSurface->winId()));
145     if (!videoDriver.isEmpty()) {
146         if (videoDriver == "x11_noaccel") {
147             env.insert("SDL_VIDEO_YUV_HWACCEL", "0");
148             env.insert("SDL_VIDEODRIVER", "x11");
149         } else env.insert("SDL_VIDEODRIVER", videoDriver);
150     }
151     m_displayProcess->setProcessEnvironment(env);
152 #else
153     QStringList env = QProcess::systemEnvironment();
154     env << "SDL_WINDOWID=" + QString::number(videoSurface->winId());
155     if (!videoDriver.isEmpty()) {
156         if (videoDriver == "x11_noaccel") {
157             env << "SDL_VIDEO_YUV_HWACCEL=0";
158             env << "SDL_VIDEODRIVER=x11";
159         } else env << "SDL_VIDEODRIVER=" + videoDriver;
160     }
161     m_displayProcess->setEnvironment(env);
162 #endif
163
164     setenv("SDL_VIDEO_ALLOW_SCREENSAVER", "1", 1);
165
166     kDebug() << "/////// BUILDING MONITOR, ID: " << videoSurface->winId();
167     slotVideoDeviceChanged(device_selector->currentIndex());
168     m_previewSettings->setChecked(KdenliveSettings::enable_recording_preview());
169     connect(m_previewSettings, SIGNAL(triggered(bool)), this, SLOT(slotChangeRecordingPreview(bool)));
170 }
171
172 RecMonitor::~RecMonitor()
173 {
174     m_spaceTimer.stop();
175     delete m_captureProcess;
176     delete m_displayProcess;
177     if (m_captureDevice) delete m_captureDevice;
178 }
179
180 void RecMonitor::mouseDoubleClickEvent(QMouseEvent * event)
181 {
182     if (!KdenliveSettings::openglmonitors() && videoBox && videoBox->isVisible()) {
183         videoBox->switchFullScreen();
184         event->accept();
185     }
186 }
187
188 void RecMonitor::slotSwitchFullScreen()
189 {
190     videoBox->switchFullScreen();
191 }
192
193 void RecMonitor::stop()
194 {
195     slotStopCapture();
196 }
197
198 void RecMonitor::start()
199 {
200     //slotStartPreview(true);
201 }
202
203 void RecMonitor::slotConfigure()
204 {
205     emit showConfigDialog(4, device_selector->currentIndex());
206 }
207
208 void RecMonitor::slotUpdateCaptureFolder(const QString &currentProjectFolder)
209 {
210     if (KdenliveSettings::capturetoprojectfolder()) m_capturePath = currentProjectFolder;
211     else m_capturePath = KdenliveSettings::capturefolder();
212     if (m_captureProcess) m_captureProcess->setWorkingDirectory(m_capturePath);
213     if (m_captureProcess->state() != QProcess::NotRunning) {
214         if (device_selector->currentIndex() == FIREWIRE)
215             KMessageBox::information(this, i18n("You need to disconnect and reconnect in the capture monitor to apply your changes"), i18n("Capturing"));
216         else KMessageBox::information(this, i18n("You need to stop capture before your changes can be applied"), i18n("Capturing"));
217     } else slotVideoDeviceChanged(device_selector->currentIndex());
218
219     // update free space info
220     slotUpdateFreeSpace();
221 }
222
223 void RecMonitor::slotVideoDeviceChanged(int ix)
224 {
225     QString capturefile;
226     QString capturename;
227     m_previewSettings->setEnabled(ix == VIDEO4LINUX || ix == BLACKMAGIC);
228     control_frame->setVisible(ix == VIDEO4LINUX);
229     m_fwdAction->setVisible(ix == FIREWIRE);
230     m_discAction->setVisible(ix == FIREWIRE);
231     m_rewAction->setVisible(ix == FIREWIRE);
232     m_recAction->setEnabled(ix != FIREWIRE);
233     m_logger.setVisible(ix == BLACKMAGIC);
234     if (m_captureDevice) {
235         // MLT capture still running, abort
236         m_monitorManager->clearScopeSource();
237         m_captureDevice->stop();
238         delete m_captureDevice;
239         m_captureDevice = NULL;
240     }
241
242     // The m_videoBox container has to be shown once before the MLT consumer is build, or preview will fail
243     videoBox->setHidden(ix != VIDEO4LINUX && ix != BLACKMAGIC);
244     videoBox->setHidden(true);
245     switch (ix) {
246     case SCREENGRAB:
247         m_discAction->setEnabled(false);
248         m_rewAction->setEnabled(false);
249         m_fwdAction->setEnabled(false);
250         m_stopAction->setEnabled(false);
251         m_playAction->setEnabled(false);
252         if (KdenliveSettings::rmd_path().isEmpty()) {
253             QString rmdpath = KStandardDirs::findExe("recordmydesktop");
254             if (rmdpath.isEmpty()) video_frame->setPixmap(mergeSideBySide(KIcon("dialog-warning").pixmap(QSize(50, 50)), i18n("Recordmydesktop utility not found,\n please install it for screen grabs")));
255             else KdenliveSettings::setRmd_path(rmdpath);
256         }
257         if (!KdenliveSettings::rmd_path().isEmpty()) video_frame->setPixmap(mergeSideBySide(KIcon("video-display").pixmap(QSize(50, 50)), i18n("Press record button\nto start screen capture\nFiles will be saved in:\n%1", m_capturePath)));
258         //video_frame->setText(i18n("Press record button\nto start screen capture"));
259         break;
260     case VIDEO4LINUX:
261         m_stopAction->setEnabled(false);
262         m_playAction->setEnabled(true);
263         checkDeviceAvailability();
264         break;
265     case BLACKMAGIC:
266         m_stopAction->setEnabled(false);
267         m_playAction->setEnabled(true);
268         capturefile = m_capturePath;
269         if (!capturefile.endsWith('/')) capturefile.append('/');
270         capturename = KdenliveSettings::decklink_filename();
271         capturename.append("xxx.");
272         capturename.append(KdenliveSettings::decklink_extension());
273         capturefile.append(capturename);
274         video_frame->setPixmap(mergeSideBySide(KIcon("camera-photo").pixmap(QSize(50, 50)), i18n("Plug your camcorder and\npress play button\nto start preview.\nFiles will be saved in:\n%1", capturefile)));
275         break;
276     default: // FIREWIRE
277         m_discAction->setEnabled(true);
278         m_stopAction->setEnabled(false);
279         m_playAction->setEnabled(false);
280         m_rewAction->setEnabled(false);
281         m_fwdAction->setEnabled(false);
282
283         // Check that dvgab is available
284         if (KdenliveSettings::dvgrab_path().isEmpty()) {
285             QString dvgrabpath = KStandardDirs::findExe("dvgrab");
286             if (dvgrabpath.isEmpty()) video_frame->setPixmap(mergeSideBySide(KIcon("dialog-warning").pixmap(QSize(50, 50)), i18n("dvgrab utility not found,\n please install it for firewire capture")));
287             else KdenliveSettings::setDvgrab_path(dvgrabpath);
288         } else {
289             // Show capture info
290             capturefile = m_capturePath;
291             if (!capturefile.endsWith('/')) capturefile.append('/');
292             capturename = KdenliveSettings::dvgrabfilename();
293             if (capturename.isEmpty()) capturename = "capture";
294             QString extension;
295             switch (KdenliveSettings::firewireformat()) {
296             case 0:
297                 extension = ".dv";
298                 break;
299             case 1:
300             case 2:
301                 extension = ".avi";
302                 break;
303             case 3:
304                 extension = ".m2t";
305                 break;
306             }
307             capturename.append("xxx" + extension);
308             capturefile.append(capturename);
309             video_frame->setPixmap(mergeSideBySide(KIcon("network-connect").pixmap(QSize(50, 50)), i18n("Plug your camcorder and\npress connect button\nto initialize connection\nFiles will be saved in:\n%1", capturefile)));
310         }
311         break;
312     }
313 }
314
315 void RecMonitor::slotSetInfoMessage(const QString &message)
316 {
317     m_logger.insertItem(0, message);
318 }
319
320 QPixmap RecMonitor::mergeSideBySide(const QPixmap& pix, const QString &txt)
321 {
322     QPainter p;
323     QRect r = QApplication::fontMetrics().boundingRect(QRect(0, 0, video_frame->width(), video_frame->height()), Qt::AlignLeft, txt);
324     int strWidth = r.width();
325     int strHeight = r.height();
326     int pixWidth = pix.width();
327     int pixHeight = pix.height();
328     QPixmap res(strWidth + 8 + pixWidth, qMax(strHeight, pixHeight));
329     res.fill(Qt::transparent);
330     p.begin(&res);
331     p.drawPixmap(0, 0, pix);
332     p.setPen(kapp->palette().text().color());
333     p.drawText(QRect(pixWidth + 8, 0, strWidth, strHeight), 0, txt);
334     p.end();
335     return res;
336 }
337
338
339 void RecMonitor::checkDeviceAvailability()
340 {
341     if (!KIO::NetAccess::exists(KUrl(KdenliveSettings::video4vdevice()), KIO::NetAccess::SourceSide , this)) {
342         rec_video->setChecked(false);
343         rec_video->setEnabled(false);
344         video_frame->setPixmap(mergeSideBySide(KIcon("camera-web").pixmap(QSize(50, 50)), i18n("Cannot read from device %1\nPlease check drivers and access rights.", KdenliveSettings::video4vdevice())));
345     } else {
346         rec_video->setEnabled(true);
347         video_frame->setPixmap(mergeSideBySide(KIcon("camera-web").pixmap(QSize(50, 50)), i18n("Press play or record button\nto start video capture\nFiles will be saved in:\n%1", m_capturePath)));
348     }
349 }
350
351 void RecMonitor::slotDisconnect()
352 {
353     if (m_captureProcess->state() == QProcess::NotRunning) {
354         m_captureTime = KDateTime::currentLocalDateTime();
355         kDebug() << "CURRENT TIME: " << m_captureTime.toString();       
356         m_didCapture = false;
357         slotStartPreview(false);
358         m_discAction->setIcon(KIcon("network-disconnect"));
359         m_discAction->setText(i18n("Disconnect"));
360         m_recAction->setEnabled(true);
361         m_stopAction->setEnabled(true);
362         m_playAction->setEnabled(true);
363         m_rewAction->setEnabled(true);
364         m_fwdAction->setEnabled(true);
365     } else {
366         m_captureProcess->write("q", 1);
367         QTimer::singleShot(1000, m_captureProcess, SLOT(kill()));
368         if (m_didCapture) manageCapturedFiles();
369         m_didCapture = false;
370     }
371 }
372
373 void RecMonitor::slotRewind()
374 {
375     m_captureProcess->write("a", 1);
376 }
377
378 void RecMonitor::slotForward()
379 {
380     m_captureProcess->write("z", 1);
381 }
382
383 void RecMonitor::slotStopCapture()
384 {
385     // stop capture
386     if (!m_isCapturing && !m_isPlaying) return;
387     videoBox->setHidden(true);
388     control_frame->setEnabled(true);
389     slotActivateMonitor();
390     switch (device_selector->currentIndex()) {
391     case FIREWIRE:
392         m_captureProcess->write("\e", 2);
393         m_playAction->setIcon(m_playIcon);
394         m_isPlaying = false;
395         break;
396     case SCREENGRAB:
397         m_captureProcess->write("q\n", 3);
398         m_captureProcess->terminate();
399         video_frame->setText(i18n("Encoding captured video..."));
400         QTimer::singleShot(1000, m_captureProcess, SLOT(kill()));
401         break;
402     case VIDEO4LINUX:
403     case BLACKMAGIC:
404         if (m_captureDevice) {
405             m_captureDevice->stop();
406         }
407         m_previewSettings->setEnabled(true);
408         m_isCapturing = false;
409         m_isPlaying = false;
410         m_playAction->setEnabled(true);
411         m_stopAction->setEnabled(false);
412         m_recAction->setEnabled(true);
413         slotSetInfoMessage(i18n("Capture stopped"));
414         m_isCapturing = false;
415         m_recAction->setChecked(false);
416         if (m_addCapturedClip->isChecked() && !m_captureFile.isEmpty() && QFile::exists(m_captureFile.path())) {
417             emit addProjectClip(m_captureFile);
418             m_captureFile.clear();
419         }
420         break;
421     default:
422         break;
423     }
424 }
425
426 void RecMonitor::slotStartPreview(bool play)
427 {
428     if (m_captureProcess->state() != QProcess::NotRunning) {
429         if (device_selector->currentIndex() == FIREWIRE) {
430             videoBox->setHidden(false);
431             if (m_isPlaying) {
432                 m_captureProcess->write("k", 1);
433                 //captureProcess->write("\e", 2);
434                 m_playAction->setIcon(m_playIcon);
435                 m_isPlaying = false;
436             } else {
437                 m_captureProcess->write("p", 1);
438                 m_playAction->setIcon(m_pauseIcon);
439                 m_isPlaying = true;
440             }
441         }
442         return;
443     }
444     slotActivateMonitor();
445     if (m_isPlaying) return;
446     m_captureArgs.clear();
447     m_displayArgs.clear();
448     m_isPlaying = false;
449     QString capturename = KdenliveSettings::dvgrabfilename();
450     QString path;
451     MltVideoProfile profile;
452     QString producer;
453     QStringList dvargs = KdenliveSettings::dvgrabextra().simplified().split(' ', QString::SkipEmptyParts);
454     int ix = device_selector->currentIndex();
455     bool isXml;
456     videoBox->setHidden(ix != VIDEO4LINUX && ix != BLACKMAGIC && ix != FIREWIRE);
457     switch (ix) {
458     case FIREWIRE:
459         switch (KdenliveSettings::firewireformat()) {
460         case 0:
461             // RAW DV CAPTURE
462             m_captureArgs << "--format" << "raw";
463             m_displayArgs << "-f" << "dv";
464             break;
465         case 1:
466             // DV type 1
467             m_captureArgs << "--format" << "dv1";
468             m_displayArgs << "-f" << "dv";
469             break;
470         case 2:
471             // DV type 2
472             m_captureArgs << "--format" << "dv2";
473             m_displayArgs << "-f" << "dv";
474             break;
475         case 3:
476             // HDV CAPTURE
477             m_captureArgs << "--format" << "hdv";
478             m_displayArgs << "-f" << "mpegts";
479             break;
480         }
481         if (KdenliveSettings::firewireautosplit()) m_captureArgs << "--autosplit";
482         if (KdenliveSettings::firewiretimestamp()) m_captureArgs << "--timestamp";
483         if (!dvargs.isEmpty()) {
484             m_captureArgs << dvargs;
485         }
486         m_captureArgs << "-i";
487         if (capturename.isEmpty()) capturename = "capture";
488         m_captureArgs << capturename << "-";
489
490         m_displayArgs << "-x" << QString::number(video_frame->width()) << "-y" << QString::number(video_frame->height()) << "-noframedrop" << "-";
491
492         m_captureProcess->setStandardOutputProcess(m_displayProcess);
493         m_captureProcess->setWorkingDirectory(m_capturePath);
494         kDebug() << "Capture: Running dvgrab " << m_captureArgs.join(" ");
495
496         m_captureProcess->start(KdenliveSettings::dvgrab_path(), m_captureArgs);
497         if (play) m_captureProcess->write(" ", 1);
498         m_discAction->setEnabled(true);
499         break;
500     case VIDEO4LINUX:
501         path = KStandardDirs::locateLocal("appdata", "profiles/video4linux");
502         buildMltDevice(path);
503         profile = ProfilesDialog::getVideoProfile(path);
504         producer = getV4lXmlPlaylist(profile, &isXml);
505
506         //producer = QString("avformat-novalidate:video4linux2:%1?width:%2&height:%3&frame_rate:%4").arg(KdenliveSettings::video4vdevice()).arg(profile.width).arg(profile.height).arg((double) profile.frame_rate_num / profile.frame_rate_den);
507         if (!m_captureDevice->slotStartPreview(producer, isXml)) {
508             // v4l capture failed to start
509             video_frame->setText(i18n("Failed to start Video4Linux,\ncheck your parameters..."));
510             videoBox->setHidden(true);
511
512         } else {
513             m_playAction->setEnabled(false);
514             m_stopAction->setEnabled(true);
515             m_isPlaying = true;
516         }
517
518         break;
519     case BLACKMAGIC:
520         path = KdenliveSettings::current_profile();
521         slotActivateMonitor();
522         buildMltDevice(path);
523         producer = QString("decklink:%1").arg(KdenliveSettings::decklink_capturedevice());
524         if (!m_captureDevice->slotStartPreview(producer)) {
525             // v4l capture failed to start
526             video_frame->setText(i18n("Failed to start Decklink,\ncheck your parameters..."));
527             videoBox->setHidden(true);
528
529         } else {
530             m_playAction->setEnabled(false);
531             m_stopAction->setEnabled(true);
532             m_isPlaying = true;
533         }
534         break;
535     default:
536         break;
537     }
538
539     control_frame->setEnabled(false);
540
541     if (device_selector->currentIndex() == FIREWIRE) {
542         kDebug() << "Capture: Running ffplay " << m_displayArgs.join(" ");
543         m_displayProcess->start(KdenliveSettings::ffplaypath(), m_displayArgs);
544         //video_frame->setText(i18n("Initialising..."));
545     } else {
546         // do something when starting screen grab
547     }
548 }
549
550 void RecMonitor::slotRecord()
551 {
552     control_frame->setEnabled(false);
553
554     if (m_captureProcess->state() == QProcess::NotRunning && device_selector->currentIndex() == FIREWIRE) {
555         slotStartPreview();
556     }
557     if (m_isCapturing) {
558         // User stopped capture
559         slotStopCapture();
560         return;
561     } else if (device_selector->currentIndex() == FIREWIRE) {
562         m_isCapturing = true;
563         m_didCapture = true;
564         m_captureProcess->write("c\n", 3);
565         m_spaceTimer.start();
566         return;
567     }
568     if (m_captureProcess->state() == QProcess::NotRunning) {
569         m_logger.clear();
570         m_recAction->setChecked(true);
571         QString extension = "mpg";
572         if (device_selector->currentIndex() == SCREENGRAB) extension = "ogv"; //KdenliveSettings::screengrabextension();
573         else if (device_selector->currentIndex() == VIDEO4LINUX) {
574             // TODO: when recording audio only, allow configuration?
575             if (!rec_video->isChecked()) extension = "wav";
576             else extension = KdenliveSettings::v4l_extension();
577         }
578         else if (device_selector->currentIndex() == BLACKMAGIC) extension = KdenliveSettings::decklink_extension();
579         QString path = KUrl(m_capturePath).path(KUrl::AddTrailingSlash) + "capture0000." + extension;
580         int i = 1;
581         while (QFile::exists(path)) {
582             QString num = QString::number(i).rightJustified(4, '0', false);
583             path = KUrl(m_capturePath).path(KUrl::AddTrailingSlash) + "capture" + num + '.' + extension;
584             i++;
585         }
586         m_captureFile = KUrl(path);
587
588         m_captureArgs.clear();
589         m_displayArgs.clear();
590         QString args;
591         QString playlist;
592         QString v4lparameters;
593         MltVideoProfile profile;
594         bool showPreview;
595         bool isXml;
596         QString capturename = KdenliveSettings::dvgrabfilename();
597         if (capturename.isEmpty()) capturename = "capture";
598
599         switch (device_selector->currentIndex()) {
600         case VIDEO4LINUX:
601             if (rec_video->isChecked()) slotActivateMonitor();
602             path = KStandardDirs::locateLocal("appdata", "profiles/video4linux");
603             profile = ProfilesDialog::getVideoProfile(path);
604             //m_videoBox->setRatio((double) profile.display_aspect_num / profile.display_aspect_den);
605             buildMltDevice(path);
606             playlist = getV4lXmlPlaylist(profile, &isXml);
607
608             v4lparameters = KdenliveSettings::v4l_parameters();
609
610             // TODO: when recording audio only, allow param configuration?
611             if (!rec_video->isChecked()) v4lparameters.clear();
612
613             // Add alsa audio capture
614             if (!rec_audio->isChecked()) {
615                 // if we do not want audio, make sure that we don't have audio encoding parameters
616                 // this is required otherwise the MLT avformat consumer will not close properly
617                 if (v4lparameters.contains("acodec")) {
618                     QString endParam = v4lparameters.section("acodec", 1);
619                     int vcodec = endParam.indexOf(" vcodec");
620                     int format = endParam.indexOf(" f=");
621                     int cutPosition = -1;
622                     if (vcodec > -1) {
623                         if (format  > -1) {
624                             cutPosition = qMin(vcodec, format);
625                         }
626                         else cutPosition = vcodec;
627                     }
628                     else if (format  > -1) {
629                         cutPosition = format;
630                     }
631                     else {
632                         // nothing interesting in end params
633                         endParam.clear();
634                     }
635                     if (cutPosition > -1) {
636                         endParam.remove(0, cutPosition);
637                     }
638                     v4lparameters = QString(v4lparameters.section("acodec", 0, 0) + "an=1 " + endParam).simplified();
639                 }
640             }
641
642             showPreview = m_previewSettings->isChecked();
643             if (!rec_video->isChecked()) showPreview = false;
644
645             if (m_captureDevice->slotStartCapture(v4lparameters, m_captureFile.path(), playlist, showPreview, isXml)) {
646                 videoBox->setHidden(false);
647                 m_isCapturing = true;
648                 m_recAction->setEnabled(false);
649                 m_stopAction->setEnabled(true);
650                 m_previewSettings->setEnabled(false);
651             }
652             else {
653                 video_frame->setText(i18n("Failed to start Video4Linux,\ncheck your parameters..."));
654                 videoBox->setHidden(true);
655                 m_recAction->blockSignals(true);
656                 m_recAction->setChecked(false);
657                 m_recAction->blockSignals(false);
658                 m_isCapturing = false;
659             }
660             break;
661
662         case BLACKMAGIC:
663             slotActivateMonitor();
664             path = KdenliveSettings::current_profile();
665             profile = ProfilesDialog::getVideoProfile(path);
666             //m_videoBox->setRatio((double) profile.display_aspect_num / profile.display_aspect_den);
667             buildMltDevice(path);
668
669             playlist = QString("<producer id=\"producer0\" in=\"0\" out=\"99999\"><property name=\"mlt_type\">producer</property><property name=\"length\">100000</property><property name=\"eof\">pause</property><property name=\"resource\">%1</property><property name=\"mlt_service\">decklink</property></producer>").arg(KdenliveSettings::decklink_capturedevice());
670
671             if (m_captureDevice->slotStartCapture(KdenliveSettings::decklink_parameters(), m_captureFile.path(), QString("decklink:%1").arg(KdenliveSettings::decklink_capturedevice()), m_previewSettings->isChecked(), false)) {
672                 videoBox->setHidden(false);
673                 m_isCapturing = true;
674                 slotSetInfoMessage(i18n("Capturing to %1", m_captureFile.fileName()));
675                 m_recAction->setEnabled(false);
676                 m_stopAction->setEnabled(true);
677                 m_previewSettings->setEnabled(false);
678             }
679             else {
680                 video_frame->setText(i18n("Failed to start Decklink,\ncheck your parameters..."));
681                 slotSetInfoMessage(i18n("Failed to start capture"));
682                 videoBox->setHidden(true);
683                 m_isCapturing = false;
684             }
685             break;
686
687         case SCREENGRAB:
688             switch (KdenliveSettings::rmd_capture_type()) {
689             case 0:
690                 // Full screen capture, nothing special to do
691                 break;
692             default:
693                 // Region capture
694                 m_captureArgs << "--width" << QString::number(KdenliveSettings::rmd_width()) << "--height" << QString::number(KdenliveSettings::rmd_height());
695                 if (!KdenliveSettings::rmd_follow_mouse()) {
696                     m_captureArgs << "-x" << QString::number(KdenliveSettings::rmd_offsetx()) << "-y" << QString::number(KdenliveSettings::rmd_offsety());
697                 } else {
698                     m_captureArgs << "--follow-mouse";
699                     if (KdenliveSettings::rmd_hide_frame()) m_captureArgs << "--no-frame";
700                 }
701                 break;
702             }
703             if (KdenliveSettings::rmd_hide_mouse()) m_captureArgs << "--no-cursor";
704             m_isCapturing = true;
705             if (KdenliveSettings::rmd_capture_audio()) {
706                 m_captureArgs << "--freq" << KdenliveSettings::rmd_freq();
707                 m_captureArgs << "--channels" << QString::number(KdenliveSettings::rmd_audio_channels());
708                 if (KdenliveSettings::rmd_use_jack()) {
709                     m_captureArgs << "--use-jack";
710                     QStringList ports = KdenliveSettings::rmd_jackports().split(' ', QString::SkipEmptyParts);
711                     for (int i = 0; i < ports.count(); ++i) {
712                         m_captureArgs << ports.at(i);
713                     }
714                     if (KdenliveSettings::rmd_jack_buffer() > 0.0)
715                         m_captureArgs << "--ring-buffer-size" << QString::number(KdenliveSettings::rmd_jack_buffer());
716                 } else {
717                     if (!KdenliveSettings::rmd_alsadevicename().isEmpty())
718                         m_captureArgs << "--device" << KdenliveSettings::rmd_alsadevicename();
719                     if (KdenliveSettings::rmd_alsa_buffer() > 0)
720                         m_captureArgs << "--buffer-size" << QString::number(KdenliveSettings::rmd_alsa_buffer());
721                 }
722             } else m_captureArgs << "--no-sound";
723
724             if (KdenliveSettings::rmd_fullshots()) m_captureArgs << "--full-shots";
725             m_captureArgs << "--v_bitrate" << QString::number(KdenliveSettings::rmd_bitrate());
726             m_captureArgs << "--v_quality" << QString::number(KdenliveSettings::rmd_quality());
727             m_captureArgs << "--workdir" << KdenliveSettings::currenttmpfolder();
728             m_captureArgs << "--fps" << QString::number(KdenliveSettings::rmd_fps()) << "-o" << m_captureFile.path();
729             m_captureProcess->start(KdenliveSettings::rmd_path(), m_captureArgs);
730             kDebug() << "// RecordMyDesktop params: " << m_captureArgs;
731             break;
732         default:
733             break;
734         }
735
736
737         if (device_selector->currentIndex() == FIREWIRE) {
738             m_isCapturing = true;
739             kDebug() << "Capture: Running ffplay " << m_displayArgs.join(" ");
740             m_displayProcess->start(KdenliveSettings::ffplaypath(), m_displayArgs);
741             video_frame->setText(i18n("Initialising..."));
742         }
743     } else {
744         // stop capture
745         m_displayProcess->kill();
746         //captureProcess->kill();
747         QTimer::singleShot(1000, this, SLOT(slotRecord()));
748     }
749 }
750
751 const QString RecMonitor::getV4lXmlPlaylist(MltVideoProfile profile, bool *isXml) 
752 {
753     QString playlist;
754     if (rec_video->isChecked() && rec_audio->isChecked()) {
755         // We want to capture audio and video, use xml playlist
756         *isXml = true;
757         playlist = QString("<mlt title=\"capture\" LC_NUMERIC=\"C\"><profile description=\"v4l\" width=\"%1\" height=\"%2\" progressive=\"%3\" sample_aspect_num=\"%4\" sample_aspect_den=\"%5\" display_aspect_num=\"%6\" display_aspect_den=\"%7\" frame_rate_num=\"%8\" frame_rate_den=\"%9\" colorspace=\"%10\"/>").arg(profile.width).arg(profile.height).arg(profile.progressive).arg(profile.sample_aspect_num).arg(profile.sample_aspect_den).arg(profile.display_aspect_num).arg(profile.display_aspect_den).arg(profile.frame_rate_num).arg(profile.frame_rate_den).arg(profile.colorspace);
758
759         playlist.append(QString("<producer id=\"producer0\" in=\"0\" out=\"999999\"><property name=\"mlt_type\">producer</property><property name=\"length\">1000000</property><property name=\"eof\">loop</property><property name=\"resource\">video4linux2:%1?width:%2&amp;height:%3&amp;frame_rate:%4</property><property name=\"mlt_service\">avformat-novalidate</property></producer><playlist id=\"playlist0\"><entry producer=\"producer0\" in=\"0\" out=\"999999\"/></playlist>").arg(KdenliveSettings::video4vdevice()).arg(profile.width).arg(profile.height).arg((double) profile.frame_rate_num / profile.frame_rate_den));
760     
761         playlist.append(QString("<producer id=\"producer1\" in=\"0\" out=\"999999\"><property name=\"mlt_type\">producer</property><property name=\"length\">1000000</property><property name=\"resource\">alsa:%1?channels=%2</property><property name=\"audio_index\">0</property><property name=\"video_index\">-1</property><property name=\"mlt_service\">avformat-novalidate</property></producer><playlist id=\"playlist1\"><entry producer=\"producer1\" in=\"0\" out=\"999999\"/></playlist>").arg(KdenliveSettings::v4l_alsadevicename()).arg(KdenliveSettings::alsachannels()));
762
763         playlist.append("<tractor id=\"tractor0\" title=\"video0\" global_feed=\"1\" in=\"0\" out=\"999999\">");
764         playlist.append("<track producer=\"playlist0\"/><track producer=\"playlist1\"/>");
765         playlist.append("</tractor></mlt>");
766     }
767     else if (rec_audio->isChecked()) {
768         // Audio only recording
769         *isXml = false;
770         playlist =QString("alsa:%1?channels=%2").arg(KdenliveSettings::v4l_alsadevicename()).arg(KdenliveSettings::alsachannels());
771     }
772     else {
773         // Video only recording
774         *isXml = false;
775         playlist =QString("video4linux2:%1?width:%2&amp;height:%3&amp;frame_rate:%4").arg(KdenliveSettings::video4vdevice()).arg(profile.width).arg(profile.height).arg((double) profile.frame_rate_num / profile.frame_rate_den);
776         
777     }
778     
779     return playlist;
780 }
781
782 /*
783 void RecMonitor::slotStartGrab(const QRect &rect) {
784     rgnGrab->deleteLater();
785     QApplication::restoreOverrideCursor();
786     show();
787     if (rect.isNull()) return;
788     int width = rect.width();
789     int height = rect.height();
790     if (width % 2 != 0) width--;
791     if (height % 2 != 0) height--;
792     QString args = KdenliveSettings::screengrabcapture().replace("%size", QString::number(width) + "x" + QString::number(height)).replace("%offset", "+" + QString::number(rect.x()) + "," + QString::number(rect.y()));
793     if (KdenliveSettings::screengrabenableaudio()) {
794         // also capture audio
795         if (KdenliveSettings::useosscapture()) m_captureArgs << KdenliveSettings::screengrabosscapture().simplified().split(' ');
796         else m_captureArgs << KdenliveSettings::screengrabalsacapture2().simplified().split(' ');
797     }
798     m_captureArgs << args.simplified().split(' ') << KdenliveSettings::screengrabencoding().simplified().split(' ') << m_captureFile.path();
799     m_isCapturing = true;
800     video_frame->setText(i18n("Capturing..."));
801     if (KdenliveSettings::screengrabenableaudio() && !KdenliveSettings::useosscapture()) {
802         QStringList alsaArgs = KdenliveSettings::screengrabalsacapture().simplified().split(' ');
803         alsaProcess->setStandardOutputProcess(captureProcess);
804         kDebug() << "Capture: Running arecord " << alsaArgs.join(" ");
805         alsaProcess->start("arecord", alsaArgs);
806     }
807     kDebug() << "Capture: Running ffmpeg " << m_captureArgs.join(" ");
808     captureProcess->start(KdenliveSettings::ffmpegpath(), m_captureArgs);
809 }*/
810
811 void RecMonitor::slotProcessStatus(QProcess::ProcessState status)
812 {
813     if (status == QProcess::NotRunning) {
814         m_displayProcess->kill();
815         if (m_isCapturing && device_selector->currentIndex() != FIREWIRE)
816             if (m_addCapturedClip->isChecked() && !m_captureFile.isEmpty() && QFile::exists(m_captureFile.path())) {
817                 emit addProjectClip(m_captureFile);
818                 m_captureFile.clear();
819             }
820         if (device_selector->currentIndex() == FIREWIRE) {
821             m_discAction->setIcon(KIcon("network-connect"));
822             m_discAction->setText(i18n("Connect"));
823             m_playAction->setEnabled(false);
824             m_rewAction->setEnabled(false);
825             m_fwdAction->setEnabled(false);
826             m_recAction->setEnabled(false);
827         }
828         m_isPlaying = false;
829         m_playAction->setIcon(m_playIcon);
830         m_recAction->setChecked(false);
831         m_stopAction->setEnabled(false);
832         device_selector->setEnabled(true);
833         if (m_captureProcess && m_captureProcess->exitStatus() == QProcess::CrashExit) {
834             video_frame->setText(i18n("Capture crashed, please check your parameters"));
835         } else {
836             if (device_selector->currentIndex() != SCREENGRAB) {
837                 video_frame->setText(i18n("Not connected"));
838             } else {
839                 if (m_captureProcess->exitCode() != 0) {
840                     video_frame->setText(i18n("Capture crashed, please check your parameters\nRecordMyDesktop exit code: %1", QString::number(m_captureProcess->exitCode())));
841                 } else {
842                     video_frame->setPixmap(mergeSideBySide(KIcon("video-display").pixmap(QSize(50, 50)), i18n("Press record button\nto start screen capture\nFiles will be saved in:\n%1", m_capturePath)));
843                 }
844             }
845         }
846         m_isCapturing = false;
847
848         m_spaceTimer.stop();
849         // update free space info
850         slotUpdateFreeSpace();
851     } else {
852         if (device_selector->currentIndex() != SCREENGRAB) m_stopAction->setEnabled(true);
853         device_selector->setEnabled(false);
854     }
855 }
856
857 void RecMonitor::manageCapturedFiles()
858 {
859     QString extension;
860     switch (KdenliveSettings::firewireformat()) {
861     case 0:
862         extension = ".dv";
863         break;
864     case 1:
865     case 2:
866         extension = ".avi";
867         break;
868     case 3:
869         extension = ".m2t";
870         break;
871     }
872     QDir dir(m_capturePath);
873     QStringList filters;
874     QString capturename = KdenliveSettings::dvgrabfilename();
875     if (capturename.isEmpty()) capturename = "capture";
876     filters << capturename + '*' + extension;
877     const QStringList result = dir.entryList(filters, QDir::Files, QDir::Time);
878     KUrl::List capturedFiles;
879     foreach(const QString & name, result) {
880         KUrl url = KUrl(dir.filePath(name));
881         if (KIO::NetAccess::exists(url, KIO::NetAccess::SourceSide, this)) {
882             KFileItem file(KFileItem::Unknown, KFileItem::Unknown, url, true);
883             if (file.time(KFileItem::ModificationTime) > m_captureTime) {
884                 // The file was captured in the last batch
885                 if (url.fileName().contains(':')) {
886                     // Several dvgrab options (--timecode,...) use : in the file name, which is
887                     // not supported by MLT, so rename them
888                     QString newUrl = url.directory(KUrl::AppendTrailingSlash) + url.fileName().replace(':', '_');
889                     if (QFile::rename(url.path(), newUrl)) {
890                         url = KUrl(newUrl);
891                     }
892
893                 }
894                 capturedFiles.append(url);
895             }
896         }
897     }
898     kDebug() << "Found : " << capturedFiles.count() << " new capture files";
899     kDebug() << capturedFiles;
900
901     if (capturedFiles.count() > 0) {
902         QPointer<ManageCapturesDialog> d = new ManageCapturesDialog(capturedFiles, this);
903         if (d->exec() == QDialog::Accepted) {
904             emit addProjectClipList(d->importFiles());
905         }
906         delete d;
907     }
908 }
909
910 // virtual
911 void RecMonitor::mousePressEvent(QMouseEvent *event)
912 {
913     if (m_freeSpace->underMouse()) slotUpdateFreeSpace();
914     else QWidget::mousePressEvent(event);//m_videoBox->mousePressEvent(event);
915 }
916
917 void RecMonitor::slotUpdateFreeSpace()
918 {
919     KDiskFreeSpaceInfo info = KDiskFreeSpaceInfo::freeSpaceInfo(m_capturePath);
920     if (info.isValid() && info.size() > 0) {
921         m_freeSpace->setValue(100 * info.used() / info.size());
922         m_freeSpace->setText(i18n("Free space: %1", KIO::convertSize(info.available())));
923         m_freeSpace->update();
924     }
925 }
926
927 void RecMonitor::refreshRecMonitor(bool visible)
928 {
929     if (visible) {
930         //if (!m_isActive) activateMonitor();
931
932     }
933 }
934
935 void RecMonitor::slotPlay()
936 {
937     /*if (m_isPlaying) slotStopCapture();
938     else slotStartPreview(true);*/
939 }
940
941 void RecMonitor::slotReadDvgrabInfo()
942 {
943     QString data = m_captureProcess->readAllStandardError().simplified();
944     data = data.section('"', 2, 2).simplified();
945     m_dvinfo.setText(data.left(11));
946     m_dvinfo.updateGeometry();
947 }
948
949 AbstractRender *RecMonitor::abstractRender()
950 {
951     return m_captureDevice;
952 }
953
954
955 void RecMonitor::analyseFrames(bool analyse)
956 {
957     m_analyse = analyse;
958     if (m_captureDevice) m_captureDevice->sendFrameForAnalysis = analyse;
959 }
960
961 void RecMonitor::slotDroppedFrames(int dropped)
962 {
963     slotSetInfoMessage(i18n("%1 dropped frames", dropped));
964 }
965
966 void RecMonitor::buildMltDevice(const QString &path)
967 {
968     if (m_captureDevice == NULL) {
969         m_monitorManager->updateScopeSource();
970         m_captureDevice = new MltDeviceCapture(path, videoSurface, this);
971         connect(m_captureDevice, SIGNAL(droppedFrames(int)), this, SLOT(slotDroppedFrames(int)));
972         m_captureDevice->sendFrameForAnalysis = m_analyse;
973         m_monitorManager->updateScopeSource();
974     }
975 }
976
977 void RecMonitor::slotChangeRecordingPreview(bool enable)
978 {
979     KdenliveSettings::setEnable_recording_preview(enable);
980 }
981
982
983 void RecMonitor::slotMouseSeek(int /*eventDelta*/, bool /*fast*/)
984 {
985 }
986
987
988 #include "recmonitor.moc"
989