diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | mainwindow.cc | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -20,6 +20,7 @@ For example, on Ubuntu, these correspond with packages: qtbase5-dev libqt5svg5-dev qtmultimedia5-dev +libqt5multimedia5-plugins libudev-dev libopenobex2-dev libusb-1.0-0-dev diff --git a/mainwindow.cc b/mainwindow.cc index b66423a..cf1ef1a 100644 --- a/mainwindow.cc +++ b/mainwindow.cc @@ -456,7 +456,8 @@ QString MainWindow::formatDuration(qint64 time) const } } +QT_WARNING_DISABLE_DEPRECATED QString MainWindow::currentPlayerMediaPath() const { - return _player->media().request().url().toLocalFile(); + return _player->media().canonicalUrl().toLocalFile(); } |