2014-03-29 18:49:22 -05:00
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Demo Qt application to test the QtPlayer class
|
|
|
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
|
|
|
*
|
2019-06-09 08:31:04 -04:00
|
|
|
* @ref License
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* LICENSE
|
2014-03-29 18:49:22 -05:00
|
|
|
*
|
2019-06-11 06:48:32 -04:00
|
|
|
* Copyright (c) 2008-2019 OpenShot Studios, LLC
|
2014-03-29 18:49:22 -05:00
|
|
|
* <http://www.openshotstudios.com/>. This file is part of
|
|
|
|
|
* OpenShot Library (libopenshot), an open-source project dedicated to
|
|
|
|
|
* delivering high quality video editing and animation solutions to the
|
|
|
|
|
* world. For more information visit <http://www.openshot.org/>.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is free software: you can redistribute it
|
2014-07-11 16:52:14 -05:00
|
|
|
* and/or modify it under the terms of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* as published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is distributed in the hope that it will be
|
|
|
|
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2014-07-11 16:52:14 -05:00
|
|
|
* GNU Lesser General Public License for more details.
|
2014-03-29 18:49:22 -05:00
|
|
|
*
|
2014-07-11 16:52:14 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-10-18 05:10:33 -04:00
|
|
|
#include "Qt/PlayerDemo.h"
|
2021-02-04 17:28:07 -06:00
|
|
|
#include "ZmqLogger.h"
|
2020-10-18 05:10:33 -04:00
|
|
|
#include <QApplication>
|
2014-01-25 03:38:38 +08:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
2021-02-04 17:28:07 -06:00
|
|
|
// Enable logging for openshot-player since this is primarily used for
|
|
|
|
|
// profiling and debugging video playback issues.
|
|
|
|
|
openshot::ZmqLogger::Instance()->Enable(true);
|
|
|
|
|
openshot::ZmqLogger::Instance()->Path("./player.log");
|
|
|
|
|
|
2014-01-25 03:38:38 +08:00
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
PlayerDemo demo;
|
|
|
|
|
demo.show();
|
|
|
|
|
return app.exec();
|
|
|
|
|
}
|