【前端】智能库房综合管理系统前端项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
315 B

  1. import BaseDecoder from './decoder'
  2. import MPEG1 from './mpeg1'
  3. import MPEG1WASM from './mpeg1-wasm'
  4. import MP2 from './mp2'
  5. import MP2WASM from './mp2-wasm'
  6. const Decoder = {
  7. Base: BaseDecoder,
  8. MPEG1Video: MPEG1,
  9. MPEG1VideoWASM: MPEG1WASM,
  10. MP2Audio: MP2,
  11. MP2AudioWASM: MP2WASM
  12. }
  13. export default Decoder