fix MV player
This commit is contained in:
parent
309a20620f
commit
5f6bc36e80
6 changed files with 50339 additions and 12 deletions
|
@ -83,9 +83,9 @@
|
|||
}
|
||||
],
|
||||
"build": {
|
||||
"electronVersion": "15.3.1",
|
||||
"electronVersion": "15.3.3",
|
||||
"electronDownload": {
|
||||
"version": "15.3.1-wvvmp",
|
||||
"version": "15.3.3-wvvmp",
|
||||
"mirror": "https://github.com/castlabs/electron-releases/releases/download/v"
|
||||
},
|
||||
"appId": "cider",
|
||||
|
|
31028
resources/cider-ui-tests/apple-hls.js
Normal file
31028
resources/cider-ui-tests/apple-hls.js
Normal file
File diff suppressed because it is too large
Load diff
|
@ -263,16 +263,17 @@ const app = new Vue({
|
|||
let type = (self.mk.nowPlayingItem != null) ? self.mk.nowPlayingItem["type"] ?? '' : '';
|
||||
|
||||
if (type.includes("musicVideo") || type.includes("uploadedVideo")) {
|
||||
document.getElementById("apple-music-video-container").style.display = "block";
|
||||
// app.chrome.topChromeVisible = false
|
||||
document.getElementById("apple-music-video-container").style.display = "block";
|
||||
// app.chrome.topChromeVisible = false
|
||||
} else {
|
||||
document.getElementById("apple-music-video-container").style.display = "none";
|
||||
// app.chrome.topChromeVisible = true
|
||||
// app.chrome.topChromeVisible = true
|
||||
self.chrome.artworkReady = false
|
||||
|
||||
app.getNowPlayingArtwork(42);
|
||||
app.getNowPlayingArtworkBG(32);
|
||||
}
|
||||
self.chrome.artworkReady = false
|
||||
self.lyrics = []
|
||||
app.getNowPlayingArtwork(42);
|
||||
app.getNowPlayingArtworkBG(32);
|
||||
app.loadLyrics()
|
||||
})
|
||||
|
||||
|
@ -499,7 +500,7 @@ const app = new Vue({
|
|||
|
||||
},
|
||||
exitMV() {
|
||||
MusicKit.getInstance().stop()
|
||||
MusicKit.getInstance().stop();
|
||||
document.getElementById("apple-music-video-container").style.display = "none";
|
||||
},
|
||||
getArtistInfo(id, isLibrary) {
|
||||
|
|
19293
resources/cider-ui-tests/musickit.js
Normal file
19293
resources/cider-ui-tests/musickit.js
Normal file
File diff suppressed because it is too large
Load diff
|
@ -2400,4 +2400,8 @@ div#captions {
|
|||
|
||||
.item-navigate:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
apple-music-video-player{
|
||||
position:relative;
|
||||
z-index:10000}
|
|
@ -381,8 +381,9 @@
|
|||
<%- include("svg/fullscreen.svg") %>
|
||||
</div>
|
||||
</div>
|
||||
<div id="apple-music-video-player"></div>
|
||||
<div ></div>
|
||||
</div>
|
||||
<!-- <apple-music-video-player></apple-music-video-player> -->
|
||||
</div>
|
||||
|
||||
<%- include("components/mediaitem-artwork"); %>
|
||||
|
@ -501,7 +502,7 @@
|
|||
</div>
|
||||
</script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
|
||||
<script src="https://js-cdn.music.apple.com/musickit/v2/amp/musickit.js"></script>
|
||||
<script src="musickit.js?v=1"></script>
|
||||
<script src="index.js?v=1"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue