2020-09-27 18:38:33 +00:00
|
|
|
/*
|
|
|
|
Sailfin: a Jellyfin client written using Qt
|
|
|
|
Copyright (C) 2020 Chris Josten
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library 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 GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2020-09-25 12:46:39 +00:00
|
|
|
import QtQuick 2.6
|
|
|
|
import QtMultimedia 5.6
|
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
|
2021-08-11 21:35:33 +00:00
|
|
|
import nl.netsoj.chris.Jellyfin 1.0 as J
|
2020-09-25 12:46:39 +00:00
|
|
|
|
|
|
|
import "videoplayer"
|
2020-10-01 19:45:34 +00:00
|
|
|
import "../"
|
2020-09-25 12:46:39 +00:00
|
|
|
|
2020-09-25 13:21:08 +00:00
|
|
|
/**
|
|
|
|
* A videoPlayer for Jellyfin videos
|
|
|
|
*/
|
|
|
|
|
|
|
|
SilicaItem {
|
2020-09-25 12:46:39 +00:00
|
|
|
id: playerRoot
|
2021-08-11 21:35:33 +00:00
|
|
|
//FIXME: Once QTBUG-10822 is resolved, change to J.Item
|
|
|
|
property var item
|
2021-02-13 23:21:49 +00:00
|
|
|
property string title: item.name
|
2021-02-14 12:29:30 +00:00
|
|
|
property bool resume
|
2020-09-25 12:46:39 +00:00
|
|
|
property int progress
|
|
|
|
readonly property bool landscape: videoOutput.contentRect.width > videoOutput.contentRect.height
|
2021-02-20 22:20:39 +00:00
|
|
|
readonly property bool hudVisible: !hud.hidden || manager.error !== MediaPlayer.NoError
|
2021-02-14 12:29:30 +00:00
|
|
|
property int audioTrack: 0
|
|
|
|
property int subtitleTrack: 0
|
2021-08-11 21:35:33 +00:00
|
|
|
//FIXME: Once QTBUG-10822 is resolved, change to J.PlaybackManager
|
|
|
|
property var manager;
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
onManagerChanged: console.log(manager.player)
|
2020-09-25 12:46:39 +00:00
|
|
|
|
2020-09-25 13:21:08 +00:00
|
|
|
// Blackground to prevent the ambience from leaking through
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
2020-10-10 15:28:13 +00:00
|
|
|
color: Theme.overlayBackgroundColor
|
2020-09-25 13:21:08 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 22:11:02 +00:00
|
|
|
RemoteImage {
|
|
|
|
id: backdrop
|
|
|
|
anchors.fill: parent
|
|
|
|
visible: !manager.controllingSessionLocal
|
|
|
|
|| [J.MediaStatus.NoMedia, J.MediaStatus.Loading].indexOf(manager.mediaStatus) >= 0
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
source: Utils.itemBackdropUrl(apiClient.baseUrl, item, 0, {"maxWidth": parent.width})
|
|
|
|
blurhash: item.imageBlurHashes["Backdrop"][item.backdropImageTags[0]]
|
|
|
|
}
|
|
|
|
|
2020-09-25 12:46:39 +00:00
|
|
|
VideoOutput {
|
|
|
|
id: videoOutput
|
2021-02-20 22:20:39 +00:00
|
|
|
source: manager
|
2020-09-25 12:46:39 +00:00
|
|
|
anchors.fill: parent
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
console.log(manager.player)
|
|
|
|
}
|
2020-09-25 12:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VideoHud {
|
|
|
|
id: hud
|
|
|
|
anchors.fill: parent
|
2021-02-20 22:20:39 +00:00
|
|
|
manager: playerRoot.manager
|
2020-09-25 12:46:39 +00:00
|
|
|
title: videoPlayer.title
|
2023-01-11 22:11:02 +00:00
|
|
|
alwaysVisible: !manager.controllingSessionLocal
|
2020-09-25 12:46:39 +00:00
|
|
|
}
|
|
|
|
|
2020-09-27 15:59:11 +00:00
|
|
|
VideoError {
|
|
|
|
anchors.fill: videoOutput
|
2021-02-20 22:20:39 +00:00
|
|
|
player: manager
|
2020-09-27 15:59:11 +00:00
|
|
|
}
|
|
|
|
|
2021-08-11 21:35:33 +00:00
|
|
|
Label {
|
2021-09-08 19:44:42 +00:00
|
|
|
readonly property string _playbackMethod: {
|
|
|
|
switch(manager.playMethod) {
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
case J.PlayMethod.EnumNotSet:
|
|
|
|
return "Enum not set"
|
|
|
|
case J.PlayMethod.DirectPlay:
|
|
|
|
return "Direct Play"
|
|
|
|
case J.PlayMethod.Transcode:
|
2021-09-08 19:44:42 +00:00
|
|
|
return "Transcoding"
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
case J.PlayMethod.DirectStream:
|
2021-09-08 19:44:42 +00:00
|
|
|
return "Direct Stream"
|
|
|
|
default:
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
return "Unknown playback method '%1'".arg(manager.playMethod)
|
2021-09-08 19:44:42 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-11 21:35:33 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: Theme.horizontalPageMargin
|
|
|
|
text: item.jellyfinId + "\n" + appWindow.playbackManager.streamUrl + "\n"
|
2021-09-08 19:44:42 +00:00
|
|
|
+ "Playback method: " + _playbackMethod + "\n"
|
|
|
|
+ "Media status: " + manager.mediaStatus + "\n"
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
+ "Playback state: " + manager.playbackState + "\n"
|
2021-08-11 21:35:33 +00:00
|
|
|
// + player.bufferProgress + "\n"
|
|
|
|
// + player.metaData.videoCodec + "@" + player.metaData.videoFrameRate + "(" + player.metaData.videoBitRate + ")" + "\n"
|
|
|
|
// + player.metaData.audioCodec + "(" + player.metaData.audioBitRate + ")" + "\n"
|
|
|
|
// + player.errorString + "\n"
|
|
|
|
font.pixelSize: Theme.fontSizeExtraSmall
|
|
|
|
wrapMode: "WordWrap"
|
|
|
|
visible: appWindow.showDebugInfo
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
enabled: parent.visible
|
|
|
|
onClicked: Clipboard.text = appWindow.playbackManager.streamUrl
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 12:29:30 +00:00
|
|
|
function start() {
|
2021-02-20 22:20:39 +00:00
|
|
|
manager.audioIndex = audioTrack
|
|
|
|
manager.subtitleIndex = subtitleTrack
|
|
|
|
manager.resumePlayback = resume
|
2021-08-11 21:35:33 +00:00
|
|
|
manager.playItem(item)
|
2021-02-14 12:29:30 +00:00
|
|
|
}
|
|
|
|
|
2020-09-25 12:46:39 +00:00
|
|
|
function stop() {
|
2021-02-20 22:20:39 +00:00
|
|
|
manager.stop();
|
2020-10-01 19:45:34 +00:00
|
|
|
}
|
2020-09-25 12:46:39 +00:00
|
|
|
}
|