hjplayer
Version:
hjplayer, a HTML5 Player, can play flv and hls by Media Source Extension, based on typescript;
13 lines (10 loc) • 429 B
text/typescript
import { typeSupported } from '../Interface';
const typeSupport = function typeSupport(): typeSupported {
const MediaSource = (window as any).MediaSource || (window as any).WebKitMediaSource;
return {
mp4: MediaSource.isTypeSupported('video/mp4'),
mpeg: MediaSource.isTypeSupported('audio/mpeg'),
mp3: MediaSource.isTypeSupported('audio/mp4; codecs="mp3"')
};
};
export default typeSupport;