jplayer / jPlayer

jPlayer : HTML5 Audio & Video for jQuery
http://jplayer.org/
Other
4.6k stars 1.47k forks source link

Does not play in android 4.2+ #244

Closed Soufraz closed 10 years ago

Soufraz commented 10 years ago

Hi folks, I've an application running on web with jplayer. On desktop, it works perfectly. But in any device with android 4.2+, the method play, does not work. Again, in any desktop the play works. Below, my instance of jplayer:

new jPlayerPlaylist({
        jPlayer: "#jquery_jplayer_1",
        cssSelectorAncestor: "#jp_container_1"
    }, [
        {
            title:"Find Your Thing",
            artist:"Avishay & Joseph",
            mp3:"http://corporation.com/jobs/site-dev/wp-content/themes/job/assets/audio/Find Your Thing - Avishay & Joseph.mp3",
            poster: "http://www.jplayer.org/audio/poster/The_Stark_Palace_640x360.png"
        }

    ], {
        swfPath: "js",
        solution: "html",
        supplied: "mp3",
        smoothPlayBar: true,
        keyEnabled: true,
        audioFullScreen: true
    });

Thanks advance!!