mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
rework collection editor
This commit is contained in:
parent
39d4daa2fb
commit
0e1c7cbb7a
21 changed files with 436 additions and 402 deletions
7
dashboard-ui/cordova/ios/vlcplayer.js
vendored
7
dashboard-ui/cordova/ios/vlcplayer.js
vendored
|
@ -110,12 +110,13 @@
|
|||
return self.playerState.volume;
|
||||
};
|
||||
|
||||
self.setCurrentSrc = function (val, item, mediaSource, tracks) {
|
||||
self.setCurrentSrc = function (streamInfo, item, mediaSource, tracks) {
|
||||
|
||||
if (!val) {
|
||||
if (!streamInfo) {
|
||||
return;
|
||||
}
|
||||
|
||||
var val = streamInfo.url;
|
||||
var tIndex = val.indexOf('#t=');
|
||||
var startPosMs = 0;
|
||||
|
||||
|
@ -127,8 +128,6 @@
|
|||
|
||||
if (options.type == 'audio') {
|
||||
|
||||
// TODO
|
||||
|
||||
//AndroidVlcPlayer.playAudioVlc(val, JSON.stringify(item), JSON.stringify(mediaSource), options.poster);
|
||||
var artist = item.ArtistItems && item.ArtistItems.length ? item.ArtistItems[0].Name : null;
|
||||
window.audioplayer.playstream(successHandler, function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue