| 15 | #include <QApplication> |
| 16 | |
| 17 | int main(int argc, char *argv[]) |
| 18 | { |
| 19 | // Enable logging for openshot-player since this is primarily used for |
| 20 | // profiling and debugging video playback issues. |
| 21 | openshot::ZmqLogger::Instance()->Enable(true); |
| 22 | openshot::ZmqLogger::Instance()->Path("./player.log"); |
| 23 | |
| 24 | QApplication app(argc, argv); |
| 25 | PlayerDemo demo; |
| 26 | demo.show(); |
| 27 | return app.exec(); |
| 28 | } |