父级容器记得加`relative`
Closed this issue · 9 comments
AimLuo commented
父级容器记得加relative
<div style={{
height: '100%',
position: 'relative'
}} >
<ReactPlayer src={foo} />
</div>
AimLuo commented
😂react-swf尺寸小于400*300的视频不能自动播放
xiaosongxiaosong commented
这个限制是浏览器对flash的限制,两个问题等我手头事情忙完了补充到 FAQ 中
AimLuo commented
xiaosongxiaosong commented
那可能是 GrindPlayer 的限制,我一直以为 flash 都是这样的呢😥
AimLuo commented
浏览器安全设置就是小于这个尺寸的视频不能自动播放,但是有些例外:
原生video,设置静音就能自动播放。
<video autoPlay muted loop style={{
height: 165,
width: 309,
display: 'block',
backgroundColor: 'black',
objectFit: 'fill'
}} src='foo.mp4' />
- falsh需要研究,自行编译react-swf的swf文件,实现小尺寸自动播放
另外音频audio,可以用一段空白音频实现自动播放。
const audioIframe = document.createElement('iframe')
audioIframe.allow = "autoplay"
audioIframe.style = "display:none"
audioIframe.src = `foo/voice/empty.m4a`
document.body.appendChild(audioIframe);
然后在代码中播放其他带声音的音频
AimLuo commented
empty.m4a空白音频可以用window10的录音机录制,此时可以将耳机插入话筒孔,实现空白录制。
建议用m4a格式,优点请自行查询。
AimLuo commented
那可能是 GrindPlayer 的限制,我一直以为 flash 都是这样的呢😥
videojs的flash也限制了,需要自己编译swf才行。
xiaosongxiaosong commented
自动播放
这个项目目前没有强制做自动播放的计划,打开页面自动播放在我看来并不是最好的体验
flash
grindplayer 是目前用户的 flash player 中体验比较好的,接口和文档都比较不错,现在已经在抽时间封装 grindplayer ,也没有替换的打算
AimLuo commented
flash
已死,不要浪费时间去研究 flash` 了。