Start an explicit playback.
import Hls from 'hls.js';const [source] = getPlaybackSources({ parameters });const handle = await attachPlayback({ source, video: videoRef.current, hlsFactory: () => new Hls({ lowLatencyMode: true }),});// later, always:detachPlayback(handle); Copy
import Hls from 'hls.js';const [source] = getPlaybackSources({ parameters });const handle = await attachPlayback({ source, video: videoRef.current, hlsFactory: () => new Hls({ lowLatencyMode: true }),});// later, always:detachPlayback(handle);
Start an explicit playback.