mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-26 11:43:13 +02:00
10 lines
476 B
TypeScript
10 lines
476 B
TypeScript
|
export default async function hasAudio(media: HTMLMediaElement) {
|
||
|
const cloned = media.cloneNode() as HTMLMediaElement;
|
||
|
cloned.muted = (cloned as typeof cloned & Partial<HTMLVideoElement>).playsInline = true;
|
||
|
cloned.play();
|
||
|
await new Promise((resolve) => cloned.addEventListener('playing', resolve));
|
||
|
const result = !!(cloned as any).audioTracks?.length || (cloned as any).mozHasAudio || !!(cloned as any).webkitAudioDecodedByteCount;
|
||
|
cloned.remove();
|
||
|
return result;
|
||
|
}
|