diff --git a/.eslintignore b/.eslintignore index b178d8db..77e0ec13 100755 --- a/.eslintignore +++ b/.eslintignore @@ -9,8 +9,6 @@ examples/* jest.config.js jest.setup.js babel.config.js -packages/xgplayer-flv.js/* -packages/xgplayer-hls.js/* packages/xgplayer-shaka/* packages/xgplayer-helper-transmuxers/* packages/xgplayer-helper-utils/* diff --git a/packages/xgplayer-flv.js/src/index.js b/packages/xgplayer-flv.js/src/index.js index c11828f3..8247d000 100755 --- a/packages/xgplayer-flv.js/src/index.js +++ b/packages/xgplayer-flv.js/src/index.js @@ -6,28 +6,28 @@ try { } catch (e) {} class FlvJsPlugin extends BasePlugin { - static get isSupported() { + static get isSupported () { return Flv.isSupported } - static get pluginName() { + static get pluginName () { return 'FlvJsPlugin' } - static get defaultConfig() { + static get defaultConfig () { return { mediaDataSource: { type: 'flv' }, flvConfig: {} } } - beforePlayerInit() { + beforePlayerInit () { if (this.playerConfig.url) { this.flvLoad(this.playerConfig.url) } } - afterCreate() { + afterCreate () { const { player } = this this.flv = null player.video.addEventListener('contextmenu', function (e) { @@ -62,7 +62,7 @@ class FlvJsPlugin extends BasePlugin { } } - destroy() { + destroy () { const { player } = this this.destroyInstance() BasePlugin.defineGetterOrSetter(player, { @@ -79,7 +79,7 @@ class FlvJsPlugin extends BasePlugin { }) } - destroyInstance() { + destroyInstance () { if (!this.flv) { return } @@ -91,7 +91,7 @@ class FlvJsPlugin extends BasePlugin { this.flv = null } - createInstance(flv) { + createInstance (flv) { const { player } = this if (!flv) { return @@ -123,7 +123,7 @@ class FlvJsPlugin extends BasePlugin { }) } - flvLoad(newUrl) { + flvLoad (newUrl) { const mediaDataSource = this.config.mediaDataSource mediaDataSource.segments = [ { @@ -145,7 +145,7 @@ class FlvJsPlugin extends BasePlugin { this.flvLoadMds(mediaDataSource) } - flvLoadMds(mediaDataSource) { + flvLoadMds (mediaDataSource) { const { player } = this if (typeof this.flv !== 'undefined') { this.destroyInstance() @@ -156,7 +156,7 @@ class FlvJsPlugin extends BasePlugin { this.flv.load() } - switchURL(url) { + switchURL (url) { const { player, playerConfig } = this let curTime = 0 if (!playerConfig.isLive) {