jessibuca.d.ts 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637
  1. declare namespace Jessibuca {
  2. /** 超时信息 */
  3. enum TIMEOUT {
  4. /** 当play()的时候,如果没有数据返回 */
  5. loadingTimeout = 'loadingTimeout',
  6. /** 当播放过程中,如果超过timeout之后没有数据渲染 */
  7. delayTimeout = 'delayTimeout',
  8. }
  9. /** 错误信息 */
  10. enum ERROR {
  11. /** 播放错误,url 为空的时候,调用 play 方法 */
  12. playError = 'playError',
  13. /** http 请求失败 */
  14. fetchError = 'fetchError',
  15. /** websocket 请求失败 */
  16. websocketError = 'websocketError',
  17. /** webcodecs 解码 h265 失败 */
  18. webcodecsH265NotSupport = 'webcodecsH265NotSupport',
  19. /** mediaSource 解码 h265 失败 */
  20. mediaSourceH265NotSupport = 'mediaSourceH265NotSupport',
  21. /** wasm 解码失败 */
  22. wasmDecodeError = 'wasmDecodeError',
  23. }
  24. interface Config {
  25. /**
  26. * 播放器容器
  27. * * 若为 string ,则底层调用的是 document.getElementById('id')
  28. * */
  29. container: HTMLElement | string;
  30. /**
  31. * 设置最大缓冲时长,单位秒,播放器会自动消除延迟
  32. */
  33. videoBuffer?: number;
  34. /**
  35. * worker地址
  36. * * 默认引用的是根目录下面的decoder.js文件 ,decoder.js 与 decoder.wasm文件必须是放在同一个目录下面。 */
  37. decoder?: string;
  38. /**
  39. * 是否不使用离屏模式(提升渲染能力)
  40. */
  41. forceNoOffscreen?: boolean;
  42. /**
  43. * 是否开启当页面的'visibilityState'变为'hidden'的时候,自动暂停播放。
  44. */
  45. hiddenAutoPause?: boolean;
  46. /**
  47. * 是否有音频,如果设置`false`,则不对音频数据解码,提升性能。
  48. */
  49. hasAudio?: boolean;
  50. /**
  51. * 设置旋转角度,只支持,0(默认),180,270 三个值
  52. */
  53. rotate?: boolean;
  54. /**
  55. * 1. 当为`true`的时候:视频画面做等比缩放后,高或宽对齐canvas区域,画面不被拉伸,但有黑边。 等同于 `setScaleMode(1)`
  56. * 2. 当为`false`的时候:视频画面完全填充canvas区域,画面会被拉伸。等同于 `setScaleMode(0)`
  57. */
  58. isResize?: boolean;
  59. /**
  60. * 1. 当为`true`的时候:视频画面做等比缩放后,完全填充canvas区域,画面不被拉伸,没有黑边,但画面显示不全。等同于 `setScaleMode(2)`
  61. */
  62. isFullResize?: boolean;
  63. /**
  64. * 1. 当为`true`的时候:ws协议不检验是否以.flv为依据,进行协议解析。
  65. */
  66. isFlv?: boolean;
  67. /**
  68. * 是否开启控制台调试打
  69. */
  70. debug?: boolean;
  71. /**
  72. * 1. 设置超时时长, 单位秒
  73. * 2. 在连接成功之前(loading)和播放中途(heart),如果超过设定时长无数据返回,则回调timeout事件
  74. */
  75. timeout?: number;
  76. /**
  77. * 1. 设置超时时长, 单位秒
  78. * 2. 在连接成功之前,如果超过设定时长无数据返回,则回调timeout事件
  79. */
  80. heartTimeout?: number;
  81. /**
  82. * 1. 设置超时时长, 单位秒
  83. * 2. 在连接成功之前,如果超过设定时长无数据返回,则回调timeout事件
  84. */
  85. loadingTimeout?: number;
  86. /**
  87. * 是否支持屏幕的双击事件,触发全屏,取消全屏事件
  88. */
  89. supportDblclickFullscreen?: boolean;
  90. /**
  91. * 是否显示网
  92. */
  93. showBandwidth?: boolean;
  94. /**
  95. * 配置操作按钮
  96. */
  97. operateBtns?: {
  98. /** 是否显示全屏按钮 */
  99. fullscreen?: boolean;
  100. /** 是否显示截图按钮 */
  101. screenshot?: boolean;
  102. /** 是否显示播放暂停按钮 */
  103. play?: boolean;
  104. /** 是否显示声音按钮 */
  105. audio?: boolean;
  106. /** 是否显示录制按 */
  107. record?: boolean;
  108. };
  109. /**
  110. * 开启屏幕常亮,在手机浏览器上, canvas标签渲染视频并不会像video标签那样保持屏幕常亮
  111. */
  112. keepScreenOn?: boolean;
  113. /**
  114. * 是否开启声音,默认是关闭声音播放的
  115. */
  116. isNotMute?: boolean;
  117. /**
  118. * 加载过程中文案
  119. */
  120. loadingText?: string;
  121. /**
  122. * 背景图片
  123. */
  124. background?: string;
  125. /**
  126. * 是否开启MediaSource硬解码
  127. * * 视频编码只支持H.264视频(Safari on iOS不支持)
  128. * * 不支持 forceNoOffscreen 为 false (开启离屏渲染)
  129. */
  130. useMSE?: boolean;
  131. /**
  132. * 是否开启Webcodecs硬解码
  133. * * 视频编码只支持H.264视频 (需在chrome 94版本以上,需要https或者localhost环境)
  134. * * 支持 forceNoOffscreen 为 false (开启离屏渲染)
  135. * */
  136. useWCS?: boolean;
  137. /**
  138. * 是否开启键盘快捷键
  139. * 目前支持的键盘快捷键有:esc -> 退出全屏;arrowUp -> 声音增加;arrowDown -> 声音减少;
  140. */
  141. hotKey?: boolean;
  142. /**
  143. * 在使用MSE或者Webcodecs 播放H265的时候,是否自动降级到wasm模式。
  144. * 设置为false 则直接关闭播放,抛出Error 异常,设置为true 则会自动切换成wasm模式播放。
  145. */
  146. autoWasm?: boolean;
  147. /**
  148. * heartTimeout 心跳超时之后自动再播放,不再抛出异常,而直接重新播放视频地址。
  149. */
  150. heartTimeoutReplay?: boolean,
  151. /**
  152. * heartTimeoutReplay 从试次数,超过之后,不再自动播放
  153. */
  154. heartTimeoutReplayTimes?: number,
  155. /**
  156. * loadingTimeout loading之后自动再播放,不再抛出异常,而直接重新播放视频地址。
  157. */
  158. loadingTimeoutReplay?: boolean,
  159. /**
  160. * heartTimeoutReplay 从试次数,超过之后,不再自动播放
  161. */
  162. loadingTimeoutReplayTimes?: number
  163. /**
  164. * wasm解码报错之后,不再抛出异常,而是直接重新播放视频地址。
  165. */
  166. wasmDecodeErrorReplay?: boolean,
  167. /**
  168. * https://github.com/langhuihui/jessibuca/issues/152 解决方案
  169. * 例如:WebGL图像预处理默认每次取4字节的数据,但是540x960分辨率下的U、V分量宽度是540/2=270不能被4整除,导致绿屏。
  170. */
  171. openWebglAlignment?: boolean
  172. }
  173. }
  174. declare class Jessibuca {
  175. constructor(config?: Jessibuca.Config);
  176. /**
  177. * 是否开启控制台调试打印
  178. @example
  179. // 开启
  180. jessibuca.setDebug(true)
  181. // 关闭
  182. jessibuca.setDebug(false)
  183. */
  184. setDebug(flag: boolean): void;
  185. /**
  186. * 静音
  187. @example
  188. jessibuca.mute()
  189. */
  190. mute(): void;
  191. /**
  192. * 取消静音
  193. @example
  194. jessibuca.cancelMute()
  195. */
  196. cancelMute(): void;
  197. /**
  198. * 留给上层用户操作来触发音频恢复的方法。
  199. *
  200. * iPhone,chrome等要求自动播放时,音频必须静音,需要由一个真实的用户交互操作来恢复,不能使用代码。
  201. *
  202. * https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
  203. */
  204. audioResume(): void;
  205. /**
  206. *
  207. * 设置超时时长, 单位秒
  208. * 在连接成功之前和播放中途,如果超过设定时长无数据返回,则回调timeout事件
  209. @example
  210. jessibuca.setTimeout(10)
  211. jessibuca.on('timeout',function(){
  212. //
  213. });
  214. */
  215. setTimeout(): void;
  216. /**
  217. * @param mode
  218. * 0 视频画面完全填充canvas区域,画面会被拉伸 等同于参数 `isResize` 为false
  219. *
  220. * 1 视频画面做等比缩放后,高或宽对齐canvas区域,画面不被拉伸,但有黑边 等同于参数 `isResize` 为true
  221. *
  222. * 2 视频画面做等比缩放后,完全填充canvas区域,画面不被拉伸,没有黑边,但画面显示不全 等同于参数 `isFullResize` 为true
  223. @example
  224. jessibuca.setScaleMode(0)
  225. jessibuca.setScaleMode(1)
  226. jessibuca.setScaleMode(2)
  227. */
  228. setScaleMode(mode: number): void;
  229. /**
  230. * 暂停播放
  231. *
  232. * 可以在pause 之后,再调用 `play()`方法就继续播放之前的流。
  233. @example
  234. jessibuca.pause().then(()=>{
  235. console.log('pause success')
  236. jessibuca.play().then(()=>{
  237. }).catch((e)=>{
  238. })
  239. }).catch((e)=>{
  240. console.log('pause error',e);
  241. })
  242. */
  243. pause(): Promise<void>;
  244. /**
  245. * 关闭视频,不释放底层资源
  246. @example
  247. jessibuca.close();
  248. */
  249. close(): void;
  250. /**
  251. * 关闭视频,释放底层资源
  252. @example
  253. jessibuca.destroy()
  254. */
  255. destroy(): void;
  256. /**
  257. * 清理画布为黑色背景
  258. @example
  259. jessibuca.clearView()
  260. */
  261. clearView(): void;
  262. /**
  263. * 播放视频
  264. @example
  265. jessibuca.play('url').then(()=>{
  266. console.log('play success')
  267. }).catch((e)=>{
  268. console.log('play error',e)
  269. })
  270. //
  271. jessibuca.play()
  272. */
  273. play(url?: string): Promise<void>;
  274. /**
  275. * 重新调整视图大小
  276. */
  277. resize(): void;
  278. /**
  279. * 设置最大缓冲时长,单位秒,播放器会自动消除延迟。
  280. *
  281. * 等同于 `videoBuffer` 参数。
  282. *
  283. @example
  284. // 设置 200ms 缓冲
  285. jessibuca.setBufferTime(0.2)
  286. */
  287. setBufferTime(time: number): void;
  288. /**
  289. * 设置旋转角度,只支持,0(默认) ,180,270 三个值。
  290. *
  291. * > 可用于实现监控画面小窗和全屏效果,由于iOS没有全屏API,此方法可以模拟页面内全屏效果而且多端效果一致。 *
  292. @example
  293. jessibuca.setRotate(0)
  294. jessibuca.setRotate(90)
  295. jessibuca.setRotate(270)
  296. */
  297. setRotate(deg: number): void;
  298. /**
  299. *
  300. * 设置音量大小,取值0 — 1
  301. *
  302. * > 区别于 mute 和 cancelMute 方法,虽然设置setVolume(0) 也能达到 mute方法,但是mute 方法是不调用底层播放音频的,能提高性能。而setVolume(0)只是把声音设置为0 ,以达到效果。
  303. * @param volume 当为0时,完全无声;当为1时,最大音量,默认值
  304. @example
  305. jessibuca.setVolume(0.2)
  306. jessibuca.setVolume(0)
  307. jessibuca.setVolume(1)
  308. */
  309. setVolume(volume: number): void;
  310. /**
  311. * 返回是否加载完毕
  312. @example
  313. var result = jessibuca.hasLoaded()
  314. console.log(result) // true
  315. */
  316. hasLoaded(): boolean;
  317. /**
  318. * 开启屏幕常亮,在手机浏览器上, canvas标签渲染视频并不会像video标签那样保持屏幕常亮。
  319. * H5目前在chrome\edge 84, android chrome 84及以上有原生亮屏API, 需要是https页面
  320. * 其余平台为模拟实现,此时为兼容实现,并不保证所有浏览器都支持
  321. @example
  322. jessibuca.setKeepScreenOn()
  323. */
  324. setKeepScreenOn(): boolean;
  325. /**
  326. * 全屏(取消全屏)播放视频
  327. @example
  328. jessibuca.setFullscreen(true)
  329. //
  330. jessibuca.setFullscreen(false)
  331. */
  332. setFullscreen(flag: boolean): void;
  333. /**
  334. *
  335. * 截图,调用后弹出下载框保存截图
  336. * @param filename 可选参数, 保存的文件名, 默认 `时间戳`
  337. * @param format 可选参数, 截图的格式,可选png或jpeg或者webp ,默认 `png`
  338. * @param quality 可选参数, 当格式是jpeg或者webp时,压缩质量,取值0 ~ 1 ,默认 `0.92`
  339. * @param type 可选参数, 可选download或者base64或者blob,默认`download`
  340. @example
  341. jessibuca.screenshot("test","png",0.5)
  342. const base64 = jessibuca.screenshot("test","png",0.5,'base64')
  343. const fileBlob = jessibuca.screenshot("test",'blob')
  344. */
  345. screenshot(filename?: string, format?: string, quality?: number, type?: string): void;
  346. /**
  347. * 开始录制。
  348. * @param fileName 可选,默认时间戳
  349. * @param fileType 可选,默认webm,支持webm 和mp4 格式
  350. @example
  351. jessibuca.startRecord('xxx','webm')
  352. */
  353. startRecord(fileName: string, fileType: string): void;
  354. /**
  355. * 暂停录制并下载。
  356. @example
  357. jessibuca.stopRecordAndSave()
  358. */
  359. stopRecordAndSave(): void;
  360. /**
  361. * 返回是否正在播放中状态。
  362. @example
  363. var result = jessibuca.isPlaying()
  364. console.log(result) // true
  365. */
  366. isPlaying(): boolean;
  367. /**
  368. * 返回是否静音。
  369. @example
  370. var result = jessibuca.isMute()
  371. console.log(result) // true
  372. */
  373. isMute(): boolean;
  374. /**
  375. * 返回是否正在录制。
  376. @example
  377. var result = jessibuca.isRecording()
  378. console.log(result) // true
  379. */
  380. isRecording(): boolean;
  381. /**
  382. * 监听 jessibuca 初始化事件
  383. * @example
  384. * jessibuca.on("load",function(){console.log('load')})
  385. */
  386. on(event: 'load', callback: () => void): void;
  387. /**
  388. * 视频播放持续时间,单位ms
  389. * @example
  390. * jessibuca.on('timeUpdate',function (ts) {console.log('timeUpdate',ts);})
  391. */
  392. on(event: 'timeUpdate', callback: () => void): void;
  393. /**
  394. * 当解析出视频信息时回调,2个回调参数
  395. * @example
  396. * jessibuca.on("videoInfo",function(data){console.log('width:',data.width,'height:',data.width)})
  397. */
  398. on(event: 'videoInfo', callback: (data: {
  399. /** 视频宽 */
  400. width: number;
  401. /** 视频高 */
  402. height: number;
  403. }) => void): void;
  404. /**
  405. * 当解析出音频信息时回调,2个回调参数
  406. * @example
  407. * jessibuca.on("audioInfo",function(data){console.log('numOfChannels:',data.numOfChannels,'sampleRate',data.sampleRate)})
  408. */
  409. on(event: 'audioInfo', callback: (data: {
  410. /** 声频通道 */
  411. numOfChannels: number;
  412. /** 采样率 */
  413. sampleRate: number;
  414. }) => void): void;
  415. /**
  416. * 信息,包含错误信息
  417. * @example
  418. * jessibuca.on("log",function(data){console.log('data:',data)})
  419. */
  420. on(event: 'log', callback: () => void): void;
  421. /**
  422. * 错误信息
  423. * @example
  424. * jessibuca.on("error",function(error){
  425. if(error === Jessibuca.ERROR.fetchError){
  426. //
  427. }
  428. else if(error === Jessibuca.ERROR.webcodecsH265NotSupport){
  429. //
  430. }
  431. console.log('error:',error)
  432. })
  433. */
  434. on(event: 'error', callback: (err: Jessibuca.ERROR) => void): void;
  435. /**
  436. * 当前网速, 单位KB 每秒1次,
  437. * @example
  438. * jessibuca.on("kBps",function(data){console.log('kBps:',data)})
  439. */
  440. on(event: 'kBps', callback: (value: number) => void): void;
  441. /**
  442. * 渲染开始
  443. * @example
  444. * jessibuca.on("start",function(){console.log('start render')})
  445. */
  446. on(event: 'start', callback: () => void): void;
  447. /**
  448. * 当设定的超时时间内无数据返回,则回调
  449. * @example
  450. * jessibuca.on("timeout",function(error){console.log('timeout:',error)})
  451. */
  452. on(event: 'timeout', callback: (error: Jessibuca.TIMEOUT) => void): void;
  453. /**
  454. * 当play()的时候,如果没有数据返回,则回调
  455. * @example
  456. * jessibuca.on("loadingTimeout",function(){console.log('timeout')})
  457. */
  458. on(event: 'loadingTimeout', callback: () => void): void;
  459. /**
  460. * 当播放过程中,如果超过timeout之后没有数据渲染,则抛出异常。
  461. * @example
  462. * jessibuca.on("delayTimeout",function(){console.log('timeout')})
  463. */
  464. on(event: 'delayTimeout', callback: () => void): void;
  465. /**
  466. * 当前是否全屏
  467. * @example
  468. * jessibuca.on("fullscreen",function(flag){console.log('is fullscreen',flag)})
  469. */
  470. on(event: 'fullscreen', callback: () => void): void;
  471. /**
  472. * 触发播放事件
  473. * @example
  474. * jessibuca.on("play",function(flag){console.log('play')})
  475. */
  476. on(event: 'play', callback: () => void): void;
  477. /**
  478. * 触发暂停事件
  479. * @example
  480. * jessibuca.on("pause",function(flag){console.log('pause')})
  481. */
  482. on(event: 'pause', callback: () => void): void;
  483. /**
  484. * 触发声音事件,返回boolean值
  485. * @example
  486. * jessibuca.on("mute",function(flag){console.log('is mute',flag)})
  487. */
  488. on(event: 'mute', callback: () => void): void;
  489. /**
  490. * 流状态统计,流开始播放后回调,每秒1次。
  491. * @example
  492. * jessibuca.on("stats",function(s){console.log("stats is",s)})
  493. */
  494. on(event: 'stats', callback: (stats: {
  495. /** 当前缓冲区时长,单位毫秒 */
  496. buf: number;
  497. /** 当前视频帧率 */
  498. fps: number;
  499. /** 当前音频码率,单位byte */
  500. abps: number;
  501. /** 当前视频码率,单位byte */
  502. vbps: number;
  503. /** 当前视频帧pts,单位毫秒 */
  504. ts: number;
  505. }) => void): void;
  506. /**
  507. * 渲染性能统计,流开始播放后回调,每秒1次。
  508. * @param performance 0: 表示卡顿,1: 表示流畅,2: 表示非常流程
  509. * @example
  510. * jessibuca.on("performance",function(performance){console.log("performance is",performance)})
  511. */
  512. on(event: 'performance', callback: (performance: 0 | 1 | 2) => void): void;
  513. /**
  514. * 录制开始的事件
  515. * @example
  516. * jessibuca.on("recordStart",function(){console.log("record start")})
  517. */
  518. on(event: 'recordStart', callback: () => void): void;
  519. /**
  520. * 录制结束的事件
  521. * @example
  522. * jessibuca.on("recordEnd",function(){console.log("record end")})
  523. */
  524. on(event: 'recordEnd', callback: () => void): void;
  525. /**
  526. * 录制的时候,返回的录制时长,1s一次
  527. * @example
  528. * jessibuca.on("recordingTimestamp",function(timestamp){console.log("recordingTimestamp is",timestamp)})
  529. */
  530. on(event: 'recordingTimestamp', callback: (timestamp: number) => void): void;
  531. /**
  532. * 监听调用play方法 经过 初始化-> 网络请求-> 解封装 -> 解码 -> 渲染 一系列过程的时间消耗
  533. * @param event
  534. * @param callback
  535. */
  536. on(event: 'playToRenderTimes', callback: (times: {
  537. playInitStart: number, // 1 初始化
  538. playStart: number, // 2 初始化
  539. streamStart: number, // 3 网络请求
  540. streamResponse: number, // 4 网络请求
  541. demuxStart: number, // 5 解封装
  542. decodeStart: number, // 6 解码
  543. videoStart: number, // 7 渲染
  544. playTimestamp: number,// playStart- playInitStart
  545. streamTimestamp: number,// streamStart - playStart
  546. streamResponseTimestamp: number,// streamResponse - streamStart
  547. demuxTimestamp: number, // demuxStart - streamResponse
  548. decodeTimestamp: number, // decodeStart - demuxStart
  549. videoTimestamp: number,// videoStart - decodeStart
  550. allTimestamp: number // videoStart - playInitStart
  551. }) => void): void
  552. /**
  553. * 监听方法
  554. *
  555. @example
  556. jessibuca.on("load",function(){console.log('load')})
  557. */
  558. on(event: string, callback: Function): void;
  559. }
  560. export default Jessibuca;