如何使用 iframe 引发对 Flash MediaElement 事件的搜索?
How to raise a seek to event for a Flash MediaElement using iframe?
如何从具有默认 flashvars 的嵌入代码开始将搜索事件引发到 Flash MediaElement。如:
<embed id="me_flash_0"
name="me_flash_0" play="true" loop="false" quality="high" bgcolor="#000000"
wmode="transparent"
allowscriptaccess="always"
allowfullscreen="true"
type="application/x-shockwave-flash"
pluginspage="//www.macromedia.com/go/getflashplayer"
src="/dl/player/Fallback/flashmediaelement.swf"
flashvars="id=me_flash_0&isvideo=true&autoplay=true&preload=none&width=968&startvolume=0.8&timerrate=250&flashstreamer=&height=580&pseudostreamstart=start&autohideinterval=5&islive=false&smoothing=true"
width="968" height="580" nanclass="mejs-shim">
如果不能直接引发 seek 事件,昂贵的播放器重新渲染到特定的开始时间怎么办?
此外,flashvars 的默认可能值是什么?
什么是 nanclass="mejs-shim"
垫片有什么用?
与
类似的问题
居然找到了答案。无需访问 SWF,直接与 MediaElement shim 交互,MediaElement.js 允许控制媒体。
可以使用嵌入标签 ID 和媒体元素中声明的功能之一来访问这些功能。
因此,为了通过媒体搜索,使用垫片 window.me_flash_0.setCurrentTime(30);
足以在媒体内搜索 30s。
如何从具有默认 flashvars 的嵌入代码开始将搜索事件引发到 Flash MediaElement。如:
<embed id="me_flash_0"
name="me_flash_0" play="true" loop="false" quality="high" bgcolor="#000000"
wmode="transparent"
allowscriptaccess="always"
allowfullscreen="true"
type="application/x-shockwave-flash"
pluginspage="//www.macromedia.com/go/getflashplayer"
src="/dl/player/Fallback/flashmediaelement.swf"
flashvars="id=me_flash_0&isvideo=true&autoplay=true&preload=none&width=968&startvolume=0.8&timerrate=250&flashstreamer=&height=580&pseudostreamstart=start&autohideinterval=5&islive=false&smoothing=true"
width="968" height="580" nanclass="mejs-shim">
如果不能直接引发 seek 事件,昂贵的播放器重新渲染到特定的开始时间怎么办?
此外,flashvars 的默认可能值是什么?
什么是 nanclass="mejs-shim"
垫片有什么用?
与
类似的问题居然找到了答案。无需访问 SWF,直接与 MediaElement shim 交互,MediaElement.js 允许控制媒体。
可以使用嵌入标签 ID 和媒体元素中声明的功能之一来访问这些功能。
因此,为了通过媒体搜索,使用垫片 window.me_flash_0.setCurrentTime(30);
足以在媒体内搜索 30s。