mirror of
https://git.maid.zone/stuff/soundcloak.git
synced 2026-01-01 00:19:38 +05:00
8 lines
317 B
JavaScript
8 lines
317 B
JavaScript
var audio = document.getElementById('track');
|
|
if (Hls.isSupported()) {
|
|
var hls = new Hls({ maxBufferLength: Infinity });
|
|
hls.loadSource(audio.src);
|
|
hls.attachMedia(audio);
|
|
} else if (!audio.canPlayType('application/vnd.apple.mpegurl')) {
|
|
alert('HLS is not supported! Audio playback will not work.');
|
|
} |