mediaelement.js - 播放随机视频?
我的 WordPress 安装目录“video”中有很多视频。
它们都使用 MediaElement.js 插件播放得很好,但也可以播放此目录中的随机剪辑?例如,使用指向目录(而不是特定视频)的短代码,类似这样的东西
[video src="http://www.domain.com/wordpress/wp-content/video" random="true"]
就太好了!
I have lots of videos in the directory "video" in my WordPress installation.
They all play nice using the MediaElement.js plugin, but is it also possible to play a random clip from this directory? For example using a shortcode that directs to the directory (and not to a specific video), something like
[video src="http://www.domain.com/wordpress/wp-content/video" random="true"]
That would be great!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该是可能的。
您可能想要做的是使用 AJAX 生成包含视频播放器的 div。如果这样做,您可以非常轻松地删除/重新创建播放器。
之后,您需要的是一个短代码定义,它将目录字符串值和布尔值提供给您附加到短代码处理程序的任何函数。
例如
也来自 http://php.net/manual/en/function.readdir.php
This should be possible.
What you might want to do is use AJAX to generate the div containing your video player. If you do this, you can delete/recreate the player very easily.
After that what you'd need is a shortcode definition which feeds a directory string value and a boolean value into whichever function you attach to the shortcode handler.
For Instance
Also from http://php.net/manual/en/function.readdir.php