File size: 4,351 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
import React, { useRef, useEffect, useState, useMemo } from 'react';
import { createRoot } from 'react-dom/client';
import { callBackType, JoLPlayerRef, qualityKey } from 'types';
import { JolPlayer } from '../../src/index';
const AppCompent = () => {
const videoRef = useRef<JoLPlayerRef>(null!);
const [theme, setTheme] = useState<string>('#ffb821');
const [isShowMultiple, setIsShowMultiple] = useState<boolean>(true);
const onProgressMouseUp: callBackType = (val) => {
console.log(`onProgressMouseUp`, val);
};
const onEndEd: callBackType = (val) => {
console.log(`onEndEd`, val);
};
const onPause: callBackType = (val) => {
console.log(`onPause`, val);
};
const onProgressMouseDown: callBackType = (val) => {
console.log(`onProgressMouseDown`, val);
};
const onPlay: callBackType = (val) => {
console.log(`onPlay`, val);
};
const onTimeChange: callBackType = (val) => {
// console.log(`onTimeChange`, val);
};
const onvolumechange: callBackType = (val) => {
console.log(`onvolumechange`, val);
};
const onError = () => {
console.log(`onError`);
};
const onQualityChange: callBackType<qualityKey> = (val) => {
console.log(`onQualityChange`, val);
};
useEffect(() => {}, [videoRef.current]);
const videoMethod = (status: string) => {
if (status === 'play') {
videoRef.current.play();
} else if (status === 'pause') {
videoRef.current.pause();
} else if (status === 'load') {
videoRef.current.load();
} else if (status === 'volume') {
videoRef.current.setVolume(86);
} else if (status === 'seek') {
videoRef.current.seek(500);
}
};
const toggle = () => {
videoRef.current.setVideoSrc(
'https://gs-files.oss-cn-hongkong.aliyuncs.com/okr/test/file/2021/07/01/haiwang.mp4',
);
};
return (
<>
<JolPlayer
ref={videoRef}
style={{ width: '60%' }}
onProgressMouseUp={onProgressMouseUp}
onEndEd={onEndEd}
onPause={onPause}
onProgressMouseDown={onProgressMouseDown}
onPlay={onPlay}
onTimeChange={onTimeChange}
onvolumechange={onvolumechange}
onError={onError}
onQualityChange={onQualityChange}
option={{
// videoType: 'hls',
videoSrc:
// 'https://gs-files.oss-cn-hongkong.aliyuncs.com/okr/prod/file/2021/08/31/540p.mp4',
'https://cdn.gudsen.vip/2022/11/14/422e7528fce64f03bf1b378cff393237.mp4',
// 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8',
height: 900,
// width: 500,
mode: 'heightFix',
theme: 'red',
autoPlay: true,
poster:
'https://gs-files.oss-cn-hongkong.aliyuncs.com/okr/prod/file/2021/08/31/1080pp.png',
language: 'zh',
isShowMultiple,
pausePlacement: 'center',
isShowPauseButton: true,
quality: [
{
name: 'FHD',
url: 'https://gs-files.oss-cn-hongkong.aliyuncs.com/okr/prod/file/2021/08/31/720p.mp4',
},
{
name: 'HD',
url: 'https://gs-files.oss-cn-hongkong.aliyuncs.com/okr/prod/file/2021/08/31/540p.mp4',
},
{
name: 'SD',
url: 'https://gs-files.oss-accelerate.aliyuncs.com/okr/prod/file/2021/08/31/1630377480138360p.mp4',
},
],
isToast: true,
isProgressFloat: true,
}}
/>
<JolPlayer
option={{
videoSrc: 'https://qiniu.qyhever.com/162962488432086ba29652658echrome.mp4',
width: 750,
height: 420,
poster: 'https://cdn.gudsen.com/2021/06/28/f81356b08b4842d7a3719499f557c8e4.JPG',
quality: [],
}}
/>
<button onClick={() => videoMethod('play')}>play</button>
<button onClick={() => videoMethod('pause')}>pause</button>
<button onClick={() => videoMethod('load')}>load</button>
<button onClick={() => videoMethod('volume')}>volume(80)</button>
<button onClick={() => videoMethod('seek')}>seek(500s)</button>
<button onClick={toggle}>switch Road King</button>
</>
);
};
const container = document.getElementById('root')!;
const root = createRoot(container);
root.render(<AppCompent />);
|