tools/templates/main.cpp
author nemo
Thu, 30 Aug 2012 22:13:42 -0400
changeset 7633 d4251e519062
parent 359 59fbfc65fbda
permissions -rw-r--r--
Allow adjusting bitrate so that I can get a somewhat usable webm video. The audio is still tinny and unlistenable. Configuration option for that might be helpful, or just adjusting defaults in the wrapper.

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}