index.js 914 B

1234567891011121314151617181920212223242526272829303132
  1. /*********************************************************
  2. * LICENSE: LICENSE-Free_CN.MD
  3. *
  4. * Author: Numberwolf - ChangYanlong
  5. * QQ: 531365872
  6. * QQ Group:925466059
  7. * Wechat: numberwolf11
  8. * Discord: numberwolf#8694
  9. * E-Mail: porschegt23@foxmail.com
  10. * Github: https://github.com/numberwolf/h265web.js
  11. *
  12. * 作者: 小老虎(Numberwolf)(常炎隆)
  13. * QQ: 531365872
  14. * QQ群: 531365872
  15. * 微信: numberwolf11
  16. * Discord: numberwolf#8694
  17. * 邮箱: porschegt23@foxmail.com
  18. * 博客: https://www.jianshu.com/u/9c09c1e00fd1
  19. * Github: https://github.com/numberwolf/h265web.js
  20. *
  21. **********************************************************/
  22. require('./h265webjs-v20221106');
  23. export default class h265webjs {
  24. static createPlayer(videoURL, config) {
  25. return window.new265webjs(videoURL, config);
  26. }
  27. static clear() {
  28. global.STATICE_MEM_playerCount = -1;
  29. global.STATICE_MEM_playerIndexPtr = 0;
  30. }
  31. }