mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
Update artwork using URLSession
This commit is contained in:
parent
d8bd3ef50c
commit
8d3bbb34d6
@ -585,23 +585,26 @@ final class PlayerModel: ObservableObject {
|
||||
|
||||
func updateCurrentArtwork() {
|
||||
guard let video = currentVideo,
|
||||
let thumbnailURL = video.thumbnailURL(quality: .medium),
|
||||
let thumbnailData = try? Data(contentsOf: thumbnailURL)
|
||||
let thumbnailURL = video.thumbnailURL(quality: .medium)
|
||||
else {
|
||||
return
|
||||
}
|
||||
|
||||
#if os(macOS)
|
||||
let image = NSImage(data: thumbnailData)
|
||||
#else
|
||||
let image = UIImage(data: thumbnailData)
|
||||
#endif
|
||||
|
||||
if image.isNil {
|
||||
let task = URLSession.shared.dataTask(with: thumbnailURL) { [weak self] thumbnailData, _, _ in
|
||||
guard let thumbnailData = thumbnailData else {
|
||||
return
|
||||
}
|
||||
|
||||
currentArtwork = MPMediaItemArtwork(boundsSize: image!.size) { _ in image! }
|
||||
#if os(macOS)
|
||||
guard let image = NSImage(data: thumbnailData) else { return }
|
||||
#else
|
||||
guard let image = UIImage(data: thumbnailData) else { return }
|
||||
#endif
|
||||
|
||||
self?.currentArtwork = MPMediaItemArtwork(boundsSize: image.size) { _ in image }
|
||||
}
|
||||
|
||||
task.resume()
|
||||
}
|
||||
|
||||
func toggleFullscreen(_ isFullScreen: Bool) {
|
||||
|
Loading…
Reference in New Issue
Block a user