-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.cpp
249 lines (213 loc) · 8.15 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
** of its contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
/*
Copyright (c) 2015 University of Helsinki
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "avrecorder.h"
#include "camerathread.h"
#include <QtWidgets>
#include <QTextStream>
// ---------------------------------------------------------------------
void help(const QString& cmd) {
QTextStream cout(stdout);
cout << "USAGE: " << cmd << " [0:videosize] [1:videosize]" << endl
<< endl
<< " supported videosizes: WxH, fullhd, 1080p, hd, 720p" << endl
<< " (currently only for Linux; OS X uses max camera resolution)"
<< endl
<< endl;
}
// ---------------------------------------------------------------------
int main(int argc, char *argv[])
{
QCoreApplication::setOrganizationName("HIIT");
QCoreApplication::setOrganizationDomain("hiit.fi");
QCoreApplication::setApplicationName("mrecorder");
QApplication app(argc, argv);
AvRecorder recorder;
recorder.show();
#if defined(Q_OS_MAC)
qDebug() << "Running on OS X";
#elif defined(Q_OS_LINUX)
qDebug() << "Running on Linux";
qDebug() << "Querying for v4l2 devices:";
int res = system("/usr/bin/v4l2-ctl --list-devices");
if (res)
qWarning() << "WARNING: /usr/bin/v4l2-ctl not found or failed. "
<< "This may cause problems";
#elif defined(Q_OS_WIN)
qDebug() << "Running on Windows";
#else
qWarning() << "Unknown operating system";
#endif
QStringList args = QCoreApplication::arguments();
QBitArray use_cameras(2);
QMap<int, QString> wxhs;
QMap<QString, QString> resolutions;
resolutions.insert("fullhd", "1920x1080");
resolutions.insert("1080p", "1920x1080");
resolutions.insert("hd", "1280x720");
resolutions.insert("720p", "1280x720");
if (args.size()>1)
use_cameras.fill(false);
else {
use_cameras.fill(true);
QStringList items;
items << "Both webcams" << "First webcam only" << "Second webcam only"
<< "None";
bool ok;
QString item =
QInputDialog::getItem(&recorder, "Re:Know Meeting recorder",
"Please select the webcams to open",
items, 1, false, &ok);
if (ok) {
int idx = items.indexOf(item);
if (idx == 1)
use_cameras[1] = false;
if (idx == 2)
use_cameras[0] = false;
if (idx == 3)
use_cameras[0] = use_cameras[1] = false;
}
}
for (int i = 1; i < args.size(); ++i) {
bool ok = true;
int c = -1;
if (args.at(i) == "-h" || args.at(i) == "--help") {
help(args.at(0));
return 0;
} else if (args.at(i).contains(':')) {
QStringList parts = args.at(i).split(':');
c = parts.at(0).toInt(&ok);
if (ok)
wxhs.insert(c, parts.at(1));
} else {
c = args.at(i).toInt(&ok);
}
if (ok)
use_cameras[c] = true;
else
qWarning() << "WARNING: Failed to parse" << args.at(i);
}
qDebug() << args.size()
<< use_cameras.at(0)
<< use_cameras.at(1);
QList<CameraThread *> cameras;
for (int idx=0; idx<2; idx++) {
if (!use_cameras.at(idx)) {
qDebug() << "Camera" << idx << "disabled";
recorder.disableCameraCheckbox(idx);
continue;
}
CameraThread* cam;
if (wxhs.contains(idx)) {
QString val = wxhs.value(idx);
if (resolutions.contains(val))
cam = new CameraThread(idx, resolutions.value(val));
else
cam = new CameraThread(idx, val);
} else {
cam = new CameraThread(idx);
}
cam->start();
cameras.append(cam);
QObject::connect(&recorder, SIGNAL(outputDirectory(const QString&)),
cam, SLOT(setOutputDirectory(const QString&)));
QObject::connect(&recorder, SIGNAL(stateChanged(QMediaRecorder::State)),
cam, SLOT(onStateChanged(QMediaRecorder::State)));
QObject::connect(&recorder, SIGNAL(cameraOutput(QString)),
cam, SLOT(setCameraOutput(QString)));
QObject::connect(&recorder, SIGNAL(cameraFramerate(QString)),
cam, SLOT(setCameraFramerate(QString)));
QObject::connect(&recorder, SIGNAL(cameraPowerChanged(int, int)),
cam, SLOT(setCameraPower(int, int)));
QObject::connect(cam, SIGNAL(cameraInfo(int,int,int)),
&recorder, SLOT(processCameraInfo(int, int, int)));
QObject::connect(cam, SIGNAL(qimgReady(int, const QImage)),
&recorder, SLOT(processQImage(int, const QImage)));
QObject::connect(cam, SIGNAL(errorMessage(const QString&)),
&recorder, SLOT(displayErrorMessage(const QString&)));
}
const int retval = app.exec();
QList<CameraThread *>::iterator i;
for (i = cameras.begin(); i != cameras.end(); ++i)
if ((*i)->isRunning()) {
(*i)->breakLoop();
(*i)->quit();
if (!(*i)->wait(2000)) {
(*i)->terminate();
if (!(*i)->wait(2000))
qDebug() << "CameraThread failed to terminate!";
}
}
/*
if (camera.isRunning()){
camera.breakLoop();
camera.quit();
if (!camera.wait(5000)) {
camera.terminate();
if (!camera.wait(5000))
qDebug() << "Failed to terminate!";
}
}
*/
return retval;
}
// ---------------------------------------------------------------------
// Local Variables:
// c-basic-offset: 4
// End: