diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-10-16 14:58:28 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-10-29 11:24:52 -0700 |
commit | 18a06c173161b77e650c1e3a36ed2381e428ef9f (patch) | |
tree | 1c14665f4aa8defc1cec30bbff6c80e2a589253d /app/MediaPlayer.qml | |
parent | 001f10ceffba5c1c8a5da89c5daa16fe69e36197 (diff) |
binding: mediaplayer: switch to mediaplayer backend binding
Stop using the QTMultimedia plugin and switch to the
agl-service-mediaplayer binding for media playback.
Bug-AGL: SPEC-999
Change-Id: I5b380dc3cc908ed7bb2aa610c819f9f76f442829
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/MediaPlayer.qml')
-rw-r--r-- | app/MediaPlayer.qml | 60 |
1 files changed, 19 insertions, 41 deletions
diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml index 77538a6..bcf09cf 100644 --- a/app/MediaPlayer.qml +++ b/app/MediaPlayer.qml @@ -25,8 +25,8 @@ import 'api' as API ApplicationWindow { id: root - API.LightMediaScanner { - id: binding + API.MediaPlayer { + id: player url: bindingAddress } @@ -35,17 +35,6 @@ ApplicationWindow { url: bindingAddress } - MediaPlayer { - id: player - audioRole: MediaPlayer.MusicRole - autoLoad: true - playlist: playlist - - function time2str(value) { - return Qt.formatTime(new Date(value), 'mm:ss') - } - } - Timer { id: timer interval: 250 @@ -57,12 +46,10 @@ ApplicationWindow { } } - Playlist { + ListModel { id: playlist - playbackMode: random.checked ? Playlist.Random : loop.checked ? Playlist.Loop : Playlist.Sequential } - ColumnLayout { anchors.fill: parent Item { @@ -77,7 +64,7 @@ ApplicationWindow { anchors.bottom: parent.bottom height: sourceSize.height * width / sourceSize.width fillMode: Image.PreserveAspectCrop - source: player.metaData.coverArtImage ? player.metaData.coverArtImage : '' + source: player.cover_art ? player.cover_art : '' visible: bluetooth.av_connected == false } @@ -109,8 +96,10 @@ ApplicationWindow { ToggleButton { id: loop visible: bluetooth.connected == false + checked: player.loop_state offImage: './images/AGL_MediaPlayer_Loop_Inactive.svg' onImage: './images/AGL_MediaPlayer_Loop_Active.svg' + onClicked: { player.loop(checked) } } } ColumnLayout { @@ -118,13 +107,13 @@ ApplicationWindow { Label { id: title Layout.alignment: Layout.Center - text: bluetooth.av_connected ? bluetooth.title : (player.metaData.title ? player.metaData.title : '') + text: bluetooth.av_connected ? bluetooth.title : (player.title ? player.title : '') horizontalAlignment: Label.AlignHCenter verticalAlignment: Label.AlignVCenter } Label { Layout.alignment: Layout.Center - text: bluetooth.av_connected ? bluetooth.artist : (player.metaData.contributingArtist ? player.metaData.contributingArtist : '') + text: bluetooth.av_connected ? bluetooth.artist : (player.artist ? player.artist : '') horizontalAlignment: Label.AlignHCenter verticalAlignment: Label.AlignVCenter font.pixelSize: title.font.pixelSize * 0.6 @@ -176,7 +165,7 @@ ApplicationWindow { bluetooth.sendMediaCommand("Previous") bluetooth.position = 0 } else { - playlist.previous() + player.previous() } } } @@ -192,7 +181,7 @@ ApplicationWindow { } states: [ State { - when: player.playbackState === MediaPlayer.PlayingState + when: player.running === true PropertyChanges { target: play offImage: './images/AGL_MediaPlayer_Player_Pause.svg' @@ -217,7 +206,7 @@ ApplicationWindow { if (bluetooth.av_connected) { bluetooth.sendMediaCommand("Next") } else { - playlist.next() + player.next() } } } @@ -247,11 +236,6 @@ ApplicationWindow { Layout.fillHeight: true Layout.preferredHeight: 407 - PlaylistWithMetadata { - id: playlistmodel - source: playlist - } - ListView { anchors.fill: parent id: playlistview @@ -262,8 +246,8 @@ ApplicationWindow { text: 'PLAYLIST' opacity: 0.5 } - model: playlistmodel - currentIndex: playlist.currentIndex + model: playlist + currentIndex: -1 delegate: MouseArea { id: delegate @@ -273,12 +257,6 @@ ApplicationWindow { anchors.fill: parent anchors.leftMargin: 50 anchors.rightMargin: 50 - Image { - source: model.coverArt - fillMode: Image.PreserveAspectFit - Layout.preferredWidth: delegate.height - Layout.preferredHeight: delegate.height - } ColumnLayout { Layout.fillWidth: true Label { @@ -292,14 +270,14 @@ ApplicationWindow { font.pixelSize: 32 } } - Label { - text: player.time2str(model.duration) - color: '#66FF99' - font.pixelSize: 32 - } + //Label { + // text: player.time2str(model.duration) + // color: '#66FF99' + // font.pixelSize: 32 + //} } onClicked: { - playlist.currentIndex = model.index + player.pick_track(playlistview.model.get(index).index) player.play() } } |