mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 11:18:46 +08:00
feat: 支持flv预拉流
This commit is contained in:
parent
6851672144
commit
a87316cb44
@ -163,11 +163,11 @@ export class Flv extends EventEmitter {
|
|||||||
* @param {string} [url]
|
* @param {string} [url]
|
||||||
* @return {Promise}
|
* @return {Promise}
|
||||||
*/
|
*/
|
||||||
async load (url, reuseMse = false) {
|
async load (url, reuseMse = false, streamRes) {
|
||||||
if (!this._bufferService) return
|
if (!this._bufferService) return
|
||||||
await this._reset(reuseMse)
|
await this._reset(reuseMse)
|
||||||
|
|
||||||
this._loadData(url, this._opts.isLive ? [] : [0, this._opts.defaultVodLoadSize])
|
this._loadData(url, this._opts.isLive ? [] : [0, this._opts.defaultVodLoadSize], streamRes)
|
||||||
|
|
||||||
clearTimeout(this._tickTimer)
|
clearTimeout(this._tickTimer)
|
||||||
this._tickTimer = setTimeout(this._tick, this._tickInterval)
|
this._tickTimer = setTimeout(this._tick, this._tickInterval)
|
||||||
@ -298,7 +298,7 @@ export class Flv extends EventEmitter {
|
|||||||
await this._bufferService.reset(reuseMse)
|
await this._bufferService.reset(reuseMse)
|
||||||
}
|
}
|
||||||
|
|
||||||
async _loadData (url, range) {
|
async _loadData (url, range, streamRes) {
|
||||||
if (url) this._opts.url = url
|
if (url) this._opts.url = url
|
||||||
let finnalUrl = (url = this._opts.url)
|
let finnalUrl = (url = this._opts.url)
|
||||||
if (!url) throw new Error('Source url is missing')
|
if (!url) throw new Error('Source url is missing')
|
||||||
@ -322,7 +322,7 @@ export class Flv extends EventEmitter {
|
|||||||
|
|
||||||
this._loading = true
|
this._loading = true
|
||||||
try {
|
try {
|
||||||
await this._mediaLoader.load({ url: finnalUrl, range })
|
await this._mediaLoader.load({ url: finnalUrl, range, streamRes })
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this._loading = false
|
this._loading = false
|
||||||
return this._emitError(StreamingError.network(error), false)
|
return this._emitError(StreamingError.network(error), false)
|
||||||
|
@ -114,7 +114,9 @@ export class FlvPlugin extends BasePlugin {
|
|||||||
this._transCoreEvent(EVENT.SWITCH_URL_SUCCESS)
|
this._transCoreEvent(EVENT.SWITCH_URL_SUCCESS)
|
||||||
this._transCoreEvent(EVENT.SWITCH_URL_FAILED)
|
this._transCoreEvent(EVENT.SWITCH_URL_FAILED)
|
||||||
|
|
||||||
this.flv.load(config.url, true)
|
if (!flvOpts.manualLoad) {
|
||||||
|
this.loadSource(config.url)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -124,6 +126,10 @@ export class FlvPlugin extends BasePlugin {
|
|||||||
return this.flv?.getStats()
|
return this.flv?.getStats()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
loadSource = (url = this.player.config.url, streamRes) => {
|
||||||
|
this.flv?.load(this.player.config.url, true, streamRes)
|
||||||
|
}
|
||||||
|
|
||||||
destroy = () => {
|
destroy = () => {
|
||||||
if (this.flv) {
|
if (this.flv) {
|
||||||
this.flv.destroy()
|
this.flv.destroy()
|
||||||
|
@ -49,7 +49,8 @@ export class FetchLoader extends EventEmitter {
|
|||||||
referrer,
|
referrer,
|
||||||
referrerPolicy,
|
referrerPolicy,
|
||||||
onProcessMinLen,
|
onProcessMinLen,
|
||||||
priOptions
|
priOptions,
|
||||||
|
streamRes
|
||||||
}) {
|
}) {
|
||||||
this._logger = logger
|
this._logger = logger
|
||||||
this._aborted = false
|
this._aborted = false
|
||||||
@ -108,7 +109,14 @@ export class FetchLoader extends EventEmitter {
|
|||||||
const startTime = Date.now()
|
const startTime = Date.now()
|
||||||
this._logger.debug('[fetch load start], index,', index, ',range,', range)
|
this._logger.debug('[fetch load start], index,', index, ',range,', range)
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
fetch(request || url, request ? undefined : init).then(async (response) => {
|
const promise = streamRes
|
||||||
|
? new Promise(r => {
|
||||||
|
// const response = new Response(stream)
|
||||||
|
// Object.defineProperty(response, 'url', { value: url })
|
||||||
|
r(streamRes)
|
||||||
|
})
|
||||||
|
: fetch(request || url, request ? undefined : init)
|
||||||
|
promise.then(async (response) => {
|
||||||
clearTimeout(this._timeoutTimer)
|
clearTimeout(this._timeoutTimer)
|
||||||
this._response = response
|
this._response = response
|
||||||
if (this._aborted || !this._running) return
|
if (this._aborted || !this._running) return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user