Giter Club home page Giter Club logo

Comments (3)

etianen avatar etianen commented on July 20, 2024

You can override the default flowplayer configuration by defining the following callback:

/**
 * This callback should return the updated Flowplayer configuration.
 * The default implementation leaves the generated configuration intact.
 */
html5media.configureFlowplayer = function(element, config) {
    return config;
}

This should be defined in a script tag after the html5media script.

You should be able to use this hook to configure an error handler that will define a better error fallback. For example, assuming your audio elements all have the class "audio":

html5media.configureFlowplayer = function(element, config) {
    config.onError = function() {
        $(".audio").hide().after("<p>It all went wrong!</p>");
    }
    return config;
}

By targeting your error at a classname, it'll add the error message after the element, whether it's been replaced with the fallback container or not.

Note: This code isn't tested, and isn't a very good error message, but it should serve as a starting point.

from html5media.

mandx avatar mandx commented on July 20, 2024

Sadly, it doesn't work:

html5media.configureFlowplayer = function(element, config) {
    alert('Init FlowPlayer config');  // <-- gets called
    config.onError = function() {
        alert('FlowPlayer Error!');  // <-- doesn't gets called
        $(".audio").hide().after("<p>It all went wrong!</p>");
    }
    config.onFail = function() {
        alert('FlowPlayer Fail!');  // <-- doesn't gets called
        $(".audio").hide().after("<p>It all went wrong!</p>");
    }
    return config;
}

Apparently, the onFail error may be relevant as well (Flash is installed, but an older version.).
http://flowplayer.org/documentation/configuration/player.html#onfail-event

Maybe this is relevant: I'm testing this in on a machine with Firefox 9 and Flash disabled. The native audio interface is loaded briefly, and then it gets replaced by the error message.

from html5media.

etianen avatar etianen commented on July 20, 2024

Damn, that makes this more complicated than I thought.

I will look into this, but I'm currently stuck with a few big deadlines. When the work eases up, I'll get going on a solution for this.

Meanwhile, if you manage to solve this problem yourself, please post your solution here. Alternatively, if you can make a pull request, I'll be eternally in your debt!

from html5media.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.