48 lines
1.5 KiB
C++
48 lines
1.5 KiB
C++
#include "mainwindow.h"
|
|
#include "virtmic.h"
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
#include <QLoggingCategory>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QApplication app(argc, argv);
|
|
QApplication::setApplicationName("discord-screenaudio");
|
|
QApplication::setWindowIcon(
|
|
QIcon(":assets/de.shorsh.discord-screenaudio.png"));
|
|
QApplication::setApplicationVersion(DISCORD_SCEENAUDIO_VERSION_FULL);
|
|
QApplication::setDesktopFileName("de.shorsh.discord-screenaudio");
|
|
|
|
qSetMessagePattern("[%{category}] %{message}");
|
|
|
|
QCommandLineParser parser;
|
|
parser.setApplicationDescription(
|
|
"Custom Discord client with the ability to stream audio on Linux");
|
|
parser.addHelpOption();
|
|
parser.addVersionOption();
|
|
QCommandLineOption virtmicOption("virtmic", "Start the Virtual Microphone",
|
|
"target");
|
|
parser.addOption(virtmicOption);
|
|
QCommandLineOption degubOption("remote-debugging",
|
|
"Open Chromium Remote Debugging on port 9222");
|
|
parser.addOption(degubOption);
|
|
parser.process(app);
|
|
|
|
if (parser.isSet(virtmicOption)) {
|
|
Virtmic::start(parser.value(virtmicOption));
|
|
}
|
|
|
|
qputenv("QTWEBENGINE_CHROMIUM_FLAGS",
|
|
"--enable-features=WebRTCPipeWireCapturer " +
|
|
qgetenv("QTWEBENGINE_CHROMIUM_FLAGS"));
|
|
|
|
if (parser.isSet(degubOption))
|
|
qputenv("QTWEBENGINE_CHROMIUM_FLAGS",
|
|
"--remote-debugging-port=9222 " +
|
|
qgetenv("QTWEBENGINE_CHROMIUM_FLAGS"));
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return app.exec();
|
|
}
|