Dustin Lammiman
Forum Replies Created
-
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] responsive?Are you looking on the settings page? Do the other settings show up?
The plugin does what you want by default – no css editing required. You should check “Responsive Video” on the settings page and then set the height and width of the video in the shortcode to the height and width of the actual video. The video will then auto resize to the width of its container.
If you don’t want your video’s id to change on every refresh, set id=”yourid” in the shortcode.
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] Show controls on hoverOnce the video is playing, the default behaviour is for the controls to show on hover. Is this not happening for you? What browser are you using?
As it is, no. It may be possible with some custom javascript and the api, but not without some work on your part or hiring someone to do some coding for you.
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] not works on my websiteYour test page is gone? What exactly is not working? Are your videos encoded properly? See https://blog.nosecreekweb.ca/wordpress/reliable-html5-video-made-easy/#preparing-your-video
Does it work in other IE versions? If not, usually this is due to improperly encoded video. See https://blog.nosecreekweb.ca/wordpress/reliable-html5-video-made-easy/#preparing-your-video
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] Flash format (flv)Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] flv video don't workThis player is for html5 video, so it does not support flv.
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] using the shortcode in a modalThe script isn’t loading because the modal doesn’t load the video until after the page is loaded. So the plugin doesn’t know to load the scripts. Can you add this code to your theme somewhere to force it to always load the javascript:
<?php wp_enqueue_script( 'videojs' ); wp_enqueue_script( 'videojs-youtube' ); ?>
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] VIMEOCurrently the WordPress plugin doesn’t support Vimeo although I have considered adding it in the future. The biggest issue is that when I add third party plugins like that I find I have to wait for their updates before I can update this plugin.
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] AJAX initialisation?In the latest version the js files are enqueued right before the closing
</body>
tag.Good catch, thanks! Will fix in the next update.
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] White Video background“Background Color” in settings is the background for the play button. The background bars will always be black – but if you set the size of the video correctly using width=”” and height=”” there shouldn’t be any bars.
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] Video adsNot as it is, but it should be possible with add-on libraries and some coding knowledge. A few links to get you started:
https://www.npmjs.org/package/videojs-ads
https://github.com/PetroFrolov/vast-video-js
https://theonion.github.io/videojs-vast-plugin/Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] Can this be used in your headerResolved in latest update.