mangui/flashls

Flowplayer playlist issue

Open

#157 geöffnet am 17. Dez. 2014

Auf GitHub ansehen
 (40 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)ActionScript (260 Forks)batch import
FlowPlayerhelp wantedquestion

Repository-Metriken

Stars
 (745 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

Hello, The first video plays just fine then 2nd video shows up then fade out. i can hear the audio but no video at all.

$f("flashls_live", "../flowplayer-3.2.18.swf", {
            plugins: {
                flashls: {
                    // load the flashls plugin
                    url: "../flashlsFlowPlayer-0.3.4.swf",
                  hls_debug: false,
                  hls_debug2: false,
                  hls_lowbufferlength: 3,
                  hls_minbufferlength: 8,
                  hls_maxbufferlength: 10,
                  hls_startfromlowestlevel: false,
                  hls_seekfromlowestlevel: false,
                  hls_live_flushurlcache: false,
                  hls_seekmode: 'ACCURATE',
                  hls_capleveltostage: false,
                  hls_maxlevelcappingmode: 'downscale'
                },
                controls: {display: 'none'}

            },
            clip: {
                baseUrl: 'https://s3-ap-southeast-1.amazonaws.com/vdyoencoded/1',
                provider: "flashls",
                urlResolvers: "flashls",
                scaling: "fit"
            },
            playlist: [
                {
                    url: '1/play.m3u8',
                    duration: 7,
                    onBeforePause: function() {
                        return false;
                    }
                },
                {
                    url: '2/play.m3u8',
                    fadeInSpeed: 500,
                    onStart: function() {
                        this.getControls().show();
                    },
                    onFinish: function() {
                        this.unload();
                    }
                }
            ]

        }).ipad();

Contributor Guide