updated nuget
This commit is contained in:
parent
6c97b11f21
commit
f470541e59
20 changed files with 254 additions and 61 deletions
|
@ -760,7 +760,7 @@
|
|||
contentType = 'video/' + mediaSource.Container;
|
||||
|
||||
if (mediaSource.enableDirectPlay) {
|
||||
mediaUrl = FileSystem.translateFilePath(mediaSource.Path);
|
||||
mediaUrl = FileSystemBridge.translateFilePath(mediaSource.Path);
|
||||
playMethod = 'DirectPlay';
|
||||
|
||||
} else {
|
||||
|
@ -797,7 +797,7 @@
|
|||
|
||||
if (mediaSource.enableDirectPlay) {
|
||||
|
||||
mediaUrl = FileSystem.translateFilePath(mediaSource.Path);
|
||||
mediaUrl = FileSystemBridge.translateFilePath(mediaSource.Path);
|
||||
playMethod = 'DirectPlay';
|
||||
|
||||
} else {
|
||||
|
@ -1628,7 +1628,7 @@
|
|||
|
||||
function getAudioRenderer() {
|
||||
|
||||
return new HtmlMediaRenderer('audio');
|
||||
return new AudioRenderer('audio');
|
||||
}
|
||||
|
||||
function onTimeUpdate() {
|
||||
|
@ -1639,7 +1639,7 @@
|
|||
|
||||
function playAudio(item, mediaSource, startPositionTicks) {
|
||||
|
||||
requirejs(['scripts/htmlmediarenderer'], function () {
|
||||
requirejs(['audiorenderer'], function () {
|
||||
playAudioInternal(item, mediaSource, startPositionTicks);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue