mangui/flashls

Flowplayer playlist issue

Open

#157 创建于 2014年12月17日

在 GitHub 查看
 (40 评论) (0 反应) (0 负责人)ActionScript (745 star) (260 fork)batch import
FlowPlayerhelp wantedquestion

描述

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();

贡献者指南