• Skip to content
  • Skip to primary sidebar
  • Skip to footer

Foliovision

Main navigation

  • Weblog
    • FV Player
    • WordPress
    • Video of the Week
    • Case Studies
    • Business
  • About
    • Testimonials
    • Meet the Team
    • We Support
    • Careers
    • Contact
    • Pricing
  • Products
  • Support
    • FV Player Docs
    • Pro Support
  • Login
  • Basket is empty

How can I disable the flash fallback?

[Solved]

Foliovision › Forums › FV Player › How to … › How can I disable the flash fallback?

  • Timon S. 11 years, 1 month ago

    Hi,

    how can I disable the flash fallback?

    I’m caching the HTML output from WordPress on a CDN (Google Pagespeed Service). A more detailed investigation will happen, but at the moment it looks like even browsers that should definitely support HTML5 with MP4 (encoded using Handbrake as described in the FV Flowplayer documentation) are using Flash?? Could that have to do with the CDN? Is any of the browser detection done using PHP? Can I disable the flash fallback or force HTML5 to be used in any other way?

    Details on how I know which technology is being used:

    When I remove the video file, Chrome displays:

    “flash: Video file not found”

    Only when I disable the flash plugin I Chrome I get:

    “html5: Video file not found”

    I woould like this to work be the other way around (use only HTML5, or use HTML5 as default, flash only as fallback …).

    I’m using the most recent FV WordPress Flowplayer Version 2.2.6

    Cheers,

    Timon

Viewing 12 replies - 1 through 12 (of 12 total)
  • Timon S. 11 years ago

    P.S. O.K., after rethinking this I realize that it was not a good idea to remove the file to find out if HTML5 will be used by a certain browser: This may be misleading because if the HTML5 player can’t find the file, that might be a reason to fall back to the Flashplayer, too!?

    Therefore:

    Is there a quick and easy way to check in each browser whether it’s playing via HTML5 or Flash? (Other that checking the HTML source each time?)

    Cheers,

    Timon

    Martin 11 years ago

    Hello Timon,

    could you please use the video checker to send us a report about your video? Here’s how it’s one: http://foliovision.com/wordpress/plugins/fv-wordpress-flowplayer/faq#properties-built-checker-report-playing

    Thanks,
    Martin

    Timon S. 11 years ago

    Hi Martin,

    thanks for the hint, I clicked “Admin: Video OK” to submit problem reports for this video in some of the browsers. Find the details below:

    I’m glad that 5 out of 8 browsers are working already.

    I investigated more, as follows:

    I re-encoded the video with the settings shown here:
    http://www.php-schulung.de/wp-content/uploads/handbrake_settings_VIDEO_PSD2_v3.png

    I display the new video here:
    “http://www.v2.php-schulung.de/video-debug/”

    The video itself is at:
    “http://www.v2.php-schulung.de/wp-content/uploads/video/willkommen_php_symfony_v3.mp4”

    The message “Admin: Video OK” shows in every browser.

    Mac OS 10.8.5 Safari, Flash off: Works perfectly

    Mac OS 10.8.5 Chrome, Flash off: Works perfectly

    Mac OS 10.8.5 Opera 12.16, Flash off: Does not work, as expected
    Mac OS 10.8.5 Opera 12.16, Flash on: Video plays, but is vertically stretched. It also extends below the top edge (open in Chrome to see what it is supposed to look like …).

    Mac OS 10.8.5 Firefox 28.0, Flash off: The following message is shown: “html5: Unsupported video format. Try installing Adobe Flash.”
    Mac OS 10.8.5 Firefox 28.0, Flash on: Video plays, but is vertically stretched. It also extends below the top edge (open in Chrome to see what it is supposed to look like …).

    Windows 7 Internet Explorer 11.0.7, Flash off: Very weird display problems: The three flashing dots in the center that indicate the loding of the video keep flashing even when the video is playing. In addition, black bars are shown at top and bottom.

    Windows 7 Opera 12.16, Flash off: Does not work, as expected
    Mac OS 10.8.5 Opera 12.16, Flash on: Video plays, but is vertically stretched. It also extends below the top edge (open in Chrome to see what it is supposed to look like …).

    Windows 7 FireFox 28.0, Flash off: Works perfectly

    I clicked “Admin: Video OK” to submit a problem report for this video in:
    * Internet Explorer (Windows) (v1 and v3 of the video)
    * FireFox (Mac) 2 times (v1 and v3 of the video)
    * Opera (Mac) (v1 of the video)

    I’m glad that 5 out of 8 browsers are working already.

    Any hints for the remaining three browsers?

    Cheers,

    Timon

    Martin 11 years ago

    Hello Timon,

    first of all, thank you for the detailed reports!

    1) if you want to figure out what Flowplayer engine is used, you can just check the element with your browser developer tools after it had started.

    You can also execute a script like this, then you should see the engine in your JavaScript console:

    jQuery('.flowplayer').bind('ready', function(e,api,video) { console.log(api.engine); } );

    2) Regarding your video stretching issues – Flash is not aware of the actual dimensions of the video, so you need to enter the video width and height properly. If your actual video file contains some spacing above and below, you need to include this in the dimensions.

    There is a way of switching the Flash behavior, but that stops it from being responsive. However perhaps there is a way of adding the responsiveness back in.

    Other fix would be to include your video in WebM format. Typically 25% of users are not able to play MP4 in HTML5 (Firefox Mac, Firefox on old Windows, Opera and Linux users), they could use a WebM version of the video and benefit from random seeking as well.

    3) IE 11 issues – I’m using IE 11.0.9600.16428 on Windows 7 with SP1 and while I’m seeing black bars above and below the video (please use correct video dimensions, the Video HTML5 tag appears not to be transparent in IE 11), there is no issue with loading indicator. What exactly are you using to turn off Flash? Perhaps that’s causing the problem.

    Thanks,
    Martin

    Timon S. 11 years ago

    Hi Martin,

    thank you for your detailed response!

    Regarding 1) Thank you for this useful shortcut!

    Regarding 2) Ah, good to know. I read the section “Manual Editing” on the page
    http://foliovision.com/wordpress/plugins/fv-wordpress-flowplayer/user-guide
    which does not list the width and height shortcode attributes. But in retrospective, I could have guessed from the screenshots in the other sections. Thank you for pointing this out!!

    Regarding 3) After fixing the size, the black bars are gone. The load indicator weirdness is still there, but I’m going to describe that one in a separate thread. I turned off flash without any extra software, just by clicking the gear icon > internet options > programs > manage add-ons > flash > disable
    so that should not interfere with the HTML5 video!?

    Thank you very much for your detailed response, 7 out of 8 browsers are working perfectly now!

    Cheers,

    Timon

    Martin 11 years ago

    Hello Timon,

    thank you for reporting the documentation issue, I put in width and height into it.

    We will check your IE 11 issues.

    Thanks,
    Martin

    Steven 9 years ago

    Hi

    I need to know how to disable flash fallback.

    There is no need for it in my situation and it is causing troubles. I scanned this thread and cannot find that this has been answered. Please just tell me how to disable it.

    Thanks,
    Steve

    Martin 9 years ago

    Hello Steven,

    there is not a direct way of disabling it. Please let us know more about what kind of videos you are using in our player and what issue you are facing and I’m sure we can come to a solution.

    Thanks,
    Martin

    Steven 9 years ago

    My server has issues streaming mp4 in flash, the clip will not seek past buffer zone. I know I can install a mod but I don’t think it is really needed. Why can’t the player be configured to only fallback to flash for windows xp users or those on the older version of internet explorer? Right now it is going flash fallback on the latest version of firefox which is not necessary. Player should always be in html5 mode unless absolutely necessary.

    Any way to get it to stop going flash fallback in new browsers?

    – Steven

    Martin 9 years ago

    Hello Steven,

    you are right that the modern browsers should be not using Flash.

    Could you please post the shortcode you are using and also a URL where we can see this behavior? It’s not what is normally happening.

    Thanks,
    Martin

    Steven 9 years ago

    It is not a shortcode. I am using wordpress theme TrueMag and the player is one of several integrated into the theme. In Firefox here is the page source:

    <input type=”hidden” name=”main_video_url” value=”http://mysite.com/wp-content/uploads/2015/12/myclip.webm
    http://mysite.com/wp-content/uploads/2015/12/myclip.m4v
    http://mysite.com/wp-content/uploads/2015/12/myclip.ogv”/&gt;
    <input type=”hidden” name=”main_video_type” value=”self-hosted”/>
    <div class=”single-inbox”>
    <div id=”player”>
    <div class=”video-player”>
    <div class=”player-content”>
    <div class=”player-content-inner”>
    <div id=”player-embed”>
    <div id=”wpfp_45d4bbc62a1e855e23d629b771d6813c” class=”flowplayer no-brand is-splash play-button” style=”max-width: 720px; max-height: 480px; ” data-ratio=”0.6667″>
    <video poster=”http://mysite.com/wp-content/uploads/2015/12/myclip.m4v.jpg&#8221; preload=”none”>
    <source src=”http://mysite.com/wp-content/uploads/2015/12/myclip.webm&#8221; type=”video/webm”/>
    <source src=”http://mysite.com/wp-content/uploads/2015/12/myclip.m4v&#8221; type=”video/mp4″/>
    <source src=”http://mysite.com/wp-content/uploads/2015/12/myclip.ogv&#8221; type=”video/ogg”/>
    </video>

    Now with this source in Firefox the m4v is what plays instead of the webm which is what should be playing. The reason i suspect it is flash is that it will not seek past the buffer line and with other players if m4v is the source it will seek fine(because it is playing the m4v in html5 not flash.)

    – Steven

    Martin 9 years ago

    Hello Steven,

    please submit your site URL here, we won’t publish it.

    Thanks,
    Martin

Viewing 12 replies - 1 through 12 (of 12 total)
Reply To: How can I disable the flash fallback?



Please Sign in or Register to upload files.

Related Posts

  1. Changelog

  2. Using Soft Hyphens to Disable Embedded Shortcode in WordPress or other CMS Web Tutorials

    Using Soft Hyphens to Disable Embedded Shortcode in WordPress or other CMS Web Tutorials

  3. How to use RTMP streams with Flash – Deprecated

Primary Sidebar

Sign in Register
FV Player Docs Post New Topic

Welcome

to Foliovision support forums! We'll be happy to provide free support to resolve all the reported bugs. You always can start by specifying your OS and browser and steps to reproduce the bug.

If you need help with the installation on your site, please submit a request for a Pro Support Incident. We'll have you up and running in no time, with detailed instructions on how to resolve your issue yourself in the future.

Facing a hard to solve WordPress problem? On a tight deadline?

Let us take care of it for you
right now.

Pro Support Buy FV Player

Footer

Our Plugins

  • FV WordPress Flowplayer
  • FV Thoughtful Comments
  • FV Simpler SEO
  • FV Antispam
  • FV Gravatar Cache
  • FV Testimonials

Free Tools

  • Pandoc Online
  • Article spinner
  • WordPress Password Finder
  • Delete LinkedIn Account
  • Responsive Design Calculator
Foliovision logo
All materials © 2025 Foliovision s.r.o. | Panská 12 - 81101 Bratislava - Slovakia | info@foliovision.com
  • This Site Uses Cookies
  • Privacy Policy
  • Terms of Service
  • Site Map
  • Contact
  • Tel. ‭+421 2/5292 0086‬

We are using cookies to give you the best experience on our website.

You can find out more about which cookies we are using or switch them off in .

Powered by  GDPR Cookie Compliance
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.

Necessary Cookies

Strictly Necessary Cookie allow you to log in and download your software or post to forums.

We use the WordPress login cookie and the session cookie.

If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.

Support Cookies

Foliovision.com uses self-hosted Rocket.chat and self-hosted Freescout support desk to provide support for FV Player users. These cookies allow our visitors to chat with us and/or submit support tickets.

We are delighted to recommend self-hosted Rocket.chat and especially Freescout to other privacy-conscious independent publishers who would prefer to self-host support.

Please enable Strictly Necessary Cookies first so that we can save your preferences!

3rd Party Cookies

This website uses Google Analytics and Statcounter to collect anonymous information such as the number of visitors to the site, and the most popular pages.

Keeping this cookie enabled helps us to improve our website.

We reluctantly use Google Analytics as it helps us to test FV Player against popular Google Analytics features. Feel free to turn off these cookies if they make you feel uncomfortable.

Statcounter is an independent Irish stats service which we have been using since the beginning of recorded time, sixteen years ago.

Please enable Strictly Necessary Cookies first so that we can save your preferences!