Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WHIP: Support DELETE resource for Larix Broadcaster. v5.0.148 v6.0.36 #3427

Merged
merged 5 commits into from
Mar 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FLV: Disable stash buffer for realtime.
  • Loading branch information
winlinvip committed Mar 22, 2023
commit 9c019d02652e86a37afbef43b001e4ac143ca9c9
4 changes: 2 additions & 2 deletions trunk/research/players/srs_player.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@

show_for_video_ok();

tsPlayer = mpegts.createPlayer({type: 'mpegts', url: r.url, isLive: true});
tsPlayer = mpegts.createPlayer({type: 'mpegts', url: r.url, isLive: true, enableStashBuffer: false});
tsPlayer.attachMediaElement(document.getElementById('video_player'));
tsPlayer.load();
tsPlayer.play();
Expand Down Expand Up @@ -264,7 +264,7 @@

show_for_video_ok();

flvPlayer = mpegts.createPlayer({type: 'flv', url: r.url, isLive: true});
flvPlayer = mpegts.createPlayer({type: 'flv', url: r.url, isLive: true, enableStashBuffer: false});
flvPlayer.attachMediaElement(document.getElementById('video_player'));
flvPlayer.load();
flvPlayer.play();
Expand Down