mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 21:03:22 +01:00
Fix direct streaming
This commit is contained in:
parent
043b67e076
commit
90fdc6b322
1 changed files with 3 additions and 2 deletions
|
|
@ -311,10 +311,11 @@ export const ScenePlayer: React.FC<IScenePlayerProps> = ({
|
|||
function handleOffset(player: VideoJsPlayer) {
|
||||
if (!scene || !file) return;
|
||||
|
||||
const currentSrc = player.currentSrc();
|
||||
const currentSrc = new URL(player.currentSrc());
|
||||
|
||||
const isDirect =
|
||||
currentSrc.endsWith("/stream") || currentSrc.endsWith("/stream.m3u8");
|
||||
currentSrc.pathname.endsWith("/stream") ||
|
||||
currentSrc.pathname.endsWith("/stream.m3u8");
|
||||
|
||||
const curTime = player.currentTime();
|
||||
if (!isDirect) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue