1、web音频 Web Audio API

  1. const audioUrl = `https://assets.mixkit.co/music/preview/mixkit-hazy-after-hours-132.mp3`;
  2. const play_button = document.querySelector("play_button");
  3. const pause_button = document.querySelector("pause_button");
  4. class Demo {
  5. constructor() {
  6. this.audioContext = new AudioContext({ latencyHint: "balanced" });
  7. this.audioSourceNode = null;
  8. this.audioBuffer = null;
  9. this.analyser = null;
  10. this.bufferLength = null;
  11. this.dataArray = null;
  12. this.scriptProcessor = null;
  13. this.gainNode = null;
  14. this.draw = null;
  15. this.canvas = null;
  16. this.canvasCtx = null;
  17. this.loading = false;
  18. this.playing = false;
  19. this.WAVFormatInfo = null;
  20. }
  21. async start(url) {
  22. this.loading = true;
  23. const musicArrayBuffer = await fetch(url).then((res) => res.arrayBuffer());
  24. // this.initGain();
  25. // this.initAnalyser();
  26. this.audioContext.decodeAudioData(musicArrayBuffer).then(
  27. (decodedData)=>{
  28. this.loading = false;
  29. this.playing = true;
  30. this.audioBuffer = decodedData;
  31. this.play(decodedData)
  32. }
  33. );
  34. }
  35. async play (buffer) {
  36. if(buffer ?? this.audioBuffer){
  37. this.audioSourceNode = this.audioContext.createBufferSource();
  38. this.audioSourceNode.buffer = buffer ?? this.audioBuffer;
  39. this.audioSourceNode.connect(this.audioContext.destination);
  40. // this.audioSourceNode.connect(this.analyser);
  41. // this.audioSourceNode.connect(this.gainNode);
  42. this.audioSourceNode.start(0);
  43. }
  44. }
  45. async pause() {
  46. if(this.audioSourceNode){
  47. this.audioSourceNode.stop();
  48. this.playing = false
  49. }
  50. }
  51. initGain () {
  52. this.gainNode = this.audioContext.createGain();
  53. }
  54. initAnalyser () {
  55. this.analyser = this.audioContext.createAnalyser();
  56. //快速傅里叶变换参数
  57. this.analyser.fftSize = 256;
  58. //bufferArray长度
  59. this.bufferLength = this.analyser.frequencyBinCount;
  60. //创建bufferArray,用来装音频数据
  61. this.dataArray = new Uint8Array(this.bufferLength);
  62. }
  63. }
  64. const musicDemo = new Demo();
  65. play_button.onclick = () => musicDemo.start(audioUrl);
  66. pause_button.onclick = () => musicDemo.pause();

2、web 语音 Web Speech API

1. 语音合成 SpeechSynthesis

  1. let speechInstance = new SpeechSynthesisUtterance('大家好,我是渣渣辉。');
  2. speechSynthesis.speak(speechInstance);

附录