Embed videos (FLV, H.264, and MP4) into posts or pages.
Currently these don't work when the Flash fallback player is used. So they only work if your browsers supports the video format natively (read more about video formats in next question). One of the next version should have this fixed.
This should be related to your video format or mime type issues.
Each browser supports different video format, MP4 is the recommended format: http://flowplayer.org/docs/#video-formats
Please note that MP4 is just a container, it might contain various streams for audio and video. You should check if the video stream in your MP4 is using H.264 aka MPEG-4 AVC or MPEG-4 Part 10 codec and if audio is using AAC codec: http://flowplayer.org/docs/encoding.html#codecs
In general, it's recommended to use constant frame rate: http://flowplayer.org/docs/encoding.html#general-advice
It seems HTML5 is more picky about what video it can play.
Most of the issues is caused by bad mime type on the server which serves your video files. Our plugin contains an automated checked for this - just click the "Check Videos" button on the plugin Settings screen.
Here's how to fix the mime type:
If your videos are hosted on a standard server:
You need to put the following into your .htaccess:
AddType video/mp4 .mp4
AddType video/webm .webm
AddType video/ogg .ogv
AddType application/x-mpegurl .m3u8
AddType video/x-m4v .m4v
# hls transport stream segments:
AddType video/mp2t .ts
This can be also done in the Apache configuration. If you are on Microsoft IIS, you need to use the IIS manager.
If you host videos on Amazon AWS:
They might be served with bad mime type too - "application/octet-stream". This largely depends on the tool which you use to upload your videos. Using your Amazon AWS Management Console, you can go though your videos and find file content type under the "Metadata" tab in an object's "Properties" pane and fix it to "video/mp4" (without the quotes, of course different video formats need different mime type, this one is for MP4). There are also tools for this, like S3 Browser Freeware, good place for start is here: https://forums.aws.amazon.com/thread.jspa?messageID=224446
Also for Internet Explorer, it's not recommended to use MPEG-4 Visual or MPEG-4 Part 2 video stream codecs.
Unfortunatelly HTML5 does not support live broadcasting. Please read about it here under "Flash. The good parts": http://flowplayer.org/docs/#flash
You need to use at least PHP 5, your site is probably still running on old PHP 4.
Go to plugin Settings screen and hit "Check template" button. It will check if both jQuery library and Flowplayer JavaScript is loading properly.
Please check if these issues also appear when using the default WordPress template. There seems to be some sort of conflict between the Flowplayer CSS and your theme CSS.
Just copy the plugin into wp-content/plugins and then activate it on each blog where you want to use it.
This option is not available. With autobuffer, it means every visitor on every visit to your page will be downloading the video. This means that you use a lot more bandwidth than on demand. I know that I actually watch the video on only about 1/3 of the pages with video that I visit. That saves you money (no bandwidth overages) and means that people who do want to watch the video and other visitors to your site get faster performance. If you want to autobuffer, you can turn that on in the options (we turn it off by default and recommend that it stays off).
Just enter the URL of your video hosted on Amazon S3 as the video source.
Currently there is no support for other languages. Some localizations for Flowplayer exists, but there is no official support from flowplayer.org.
You can change this manually in the the models/flowplayer.php in the flowplayer_head function. It you use videos in widgets you might need to edit the function flowplayer_content in controller/frontend.php as well. Please be carefull when editing source codes.
You need to use following code to include the shortcode into a sidebar:
echo apply_filters('the_content', '[flowplayer src=yourvideo.mp4 width=240 height=320]');
Fill the Flowplayer shortcode part according to your needs. The apply filter needs to be called because the flowplayer shortcodes are not parsen outside posts automatically. Also, please do not forget to add the echo at the beginning.
Check out .wpfp_custom_popup in /fv-wordpress-flowplayer/css/flowplayer.css. You might want to move your changes to your template CSS - make sure you use ID of container element, so your declarations will work even when the flowplayer.css is loaded later in the head section of your webpage.
Yes, there's a global option in settings to disable sharing/embed. We plan to add an individual flag on a per video basis to allow sharing when sharing is turned off globally and vice versa.
Playlist feature is not supported right now.
You need to copy the CSS from the Flowplayer CSS (default theme) and put it into your theme CSS. Also add some element ID in front of it to make sure it overridsed the default Flowplayer CSS:
#content .is-paused.flowplayer .fp-ui{background:url({PATH TO YOUR IMAGE}.png) center no-repeat;background-size:12%;}
#content .is-rtl.is-splash.flowplayer .fp-ui, #content .is-rtl.is-paused.flowplayer .fp-ui{background:url({PATH TO YOUR IMAGE-rtl}.png) center no-repeat;background-size:12%}
@media (-webkit-min-device-pixel-ratio: 2){
#content .is-splash.flowplayer .fp-ui, #content .is-paused.flowplayer .fp-ui{background:url({PATH TO YOUR IMAGE@2x}.png) center no-repeat;background-size:12%}
#content .is-rtl.is-splash.flowplayer .fp-ui, #content .is-rtl.is-paused.flowplayer .fp-ui{background:url({PATH TO YOUR IMAGE-rtl@2x}.png)}
}
The image needs to be 100x106px normal version nad 200x212px hi res version. You only have to include the RTL version if your site runs in such language.
Make sure you are not using obsolete tags like <center> to wrap the video. Such tag is not supported in HTML5, you have to use CSS to center elements.
No worries.
FV Flowplayer 5 Pro comes with a money back guarantee so you can even try the commercial no-branding version risk free. Or make it work first with the free versions.
Thank you for being part of the HMTL 5 mobile video revolution!
Requires: 3.5 or higher
Compatible up to: 3.5.1
Last Updated: 2013-5-24
Downloads: 122,898
7 of 7 support threads in the last two months have been resolved.
Got something to say? Need help?