1. <ul id="0c1fb"></ul>

      <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
      <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区

      RELATEED CONSULTING
      相關(guān)咨詢
      選擇下列產(chǎn)品馬上在線溝通
      服務(wù)時間:8:30-17:00
      你可能遇到了下面的問題
      關(guān)閉右側(cè)工具欄

      新聞中心

      這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
      HTML5聲音錄制和播放功能如何實(shí)現(xiàn)

      這篇文章將為大家詳細(xì)講解有關(guān)HTML5聲音錄制和播放功能如何實(shí)現(xiàn),小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

      明水網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)建站成立與2013年到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運(yùn)維經(jīng)驗,來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站

      html代碼:

      
      
          
              
              火星黑洞
          
          
              


      HZRecorder.js

      (function (window) {
          //兼容
          window.URL = window.URL || window.webkitURL;
          navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
          var HZRecorder = function (stream, config) {
              config = config || {};
              config.sampleBits = config.sampleBits || 8      //采樣數(shù)位 8, 16
              config.sampleRate = config.sampleRate || (44100 / 6);   //采樣率(1/6 44100)
              var context = new (window.webkitAudioContext || window.AudioContext)();
              var audioInput = context.createMediaStreamSource(stream);
              var createScript = context.createScriptProcessor || context.createJavaScriptNode;
              var recorder = createScript.apply(context, [4096, 1, 1]);
              var mp3ReceiveSuccess, currentErrorCallback;
              var audioData = {
                  size: 0          //錄音文件長度
                  , buffer: []     //錄音緩存
                  , inputSampleRate: context.sampleRate    //輸入采樣率
                  , inputSampleBits: 16       //輸入采樣數(shù)位 8, 16
                  , outputSampleRate: config.sampleRate    //輸出采樣率
                  , oututSampleBits: config.sampleBits       //輸出采樣數(shù)位 8, 16
                  , input: function (data) {
                      this.buffer.push(new Float32Array(data));
                      this.size += data.length;
                  }
                  , compress: function () { //合并壓縮
                      //合并
                      var data = new Float32Array(this.size);
                      var offset = 0;
                      for (var i = 0; i < this.buffer.length; i++) {
                          data.set(this.buffer[i], offset);
                          offset += this.buffer[i].length;
                      }
                      //壓縮
                      var compression = parseInt(this.inputSampleRate / this.outputSampleRate);
                      var length = data.length / compression;
                      var result = new Float32Array(length);
                      var index = 0, j = 0;
                      while (index < length) {
                          result[index] = data[j];
                          j += compression;
                          index++;
                      }
                      return result;
                  }
                  , encodeWAV: function () {
                      var sampleRate = Math.min(this.inputSampleRate, this.outputSampleRate);
                      var sampleBits = Math.min(this.inputSampleBits, this.oututSampleBits);
                      var bytes = this.compress();
                      var dataLength = bytes.length * (sampleBits / 8);
                      var buffer = new ArrayBuffer(44 + dataLength);
                      var data = new DataView(buffer);
                      var channelCount = 1;//單聲道
                      var offset = 0;
                      var writeString = function (str) {
                          for (var i = 0; i < str.length; i++) {
                              data.setUint8(offset + i, str.charCodeAt(i));
                          }
                      }
                      // 資源交換文件標(biāo)識符 
                      writeString('RIFF'); offset += 4;
                      // 下個地址開始到文件尾總字節(jié)數(shù),即文件大小-8 
                      data.setUint32(offset, 36 + dataLength, true); offset += 4;
                      // WAV文件標(biāo)志
                      writeString('WAVE'); offset += 4;
                      // 波形格式標(biāo)志 
                      writeString('fmt '); offset += 4;
                      // 過濾字節(jié),一般為 0x10 = 16 
                      data.setUint32(offset, 16, true); offset += 4;
                      // 格式類別 (PCM形式采樣數(shù)據(jù)) 
                      data.setUint16(offset, 1, true); offset += 2;
                      // 通道數(shù) 
                      data.setUint16(offset, channelCount, true); offset += 2;
                      // 采樣率,每秒樣本數(shù),表示每個通道的播放速度 
                      data.setUint32(offset, sampleRate, true); offset += 4;
                      // 波形數(shù)據(jù)傳輸率 (每秒平均字節(jié)數(shù)) 單聲道×每秒數(shù)據(jù)位數(shù)×每樣本數(shù)據(jù)位/8 
                      data.setUint32(offset, channelCount * sampleRate * (sampleBits / 8), true); offset += 4;
                      // 快數(shù)據(jù)調(diào)整數(shù) 采樣一次占用字節(jié)數(shù) 單聲道×每樣本的數(shù)據(jù)位數(shù)/8 
                      data.setUint16(offset, channelCount * (sampleBits / 8), true); offset += 2;
                      // 每樣本數(shù)據(jù)位數(shù) 
                      data.setUint16(offset, sampleBits, true); offset += 2;
                      // 數(shù)據(jù)標(biāo)識符 
                      writeString('data'); offset += 4;
                      // 采樣數(shù)據(jù)總數(shù),即數(shù)據(jù)總大小-44 
                      data.setUint32(offset, dataLength, true); offset += 4;
                      // 寫入采樣數(shù)據(jù) 
                      if (sampleBits === 8) {
                          for (var i = 0; i < bytes.length; i++, offset++) {
                              var s = Math.max(-1, Math.min(1, bytes[i]));
                              var val = s < 0 ? s * 0x8000 : s * 0x7FFF;
                              val = parseInt(255 / (65535 / (val + 32768)));
                              data.setInt8(offset, val, true);
                          }
                      } else {
                          for (var i = 0; i < bytes.length; i++, offset += 2) {
                              var s = Math.max(-1, Math.min(1, bytes[i]));
                              data.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7FFF, true);
                          }
                      }
                      return new Blob([data], { type: 'audio/wav' });
                  }
              };
              //開始錄音
              this.start = function () {
                  audioInput.connect(recorder);
                  recorder.connect(context.destination);
              }
              //停止
              this.stop = function () {
                  recorder.disconnect();
              }
              //獲取音頻文件
              this.getBlob = function () {
                  this.stop();
                  return audioData.encodeWAV();
              }
              //回放
              this.play = function (audio) {
                  audio.src = window.URL.createObjectURL(this.getBlob());
              }
              //上傳
              this.upload = function (url, callback) {
                  var fd = new FormData();
                  fd.append("audioData", this.getBlob());
                  var xhr = new XMLHttpRequest();
                  if (callback) {
                      xhr.upload.addEventListener("progress", function (e) {
                          callback('uploading', e);
                      }, false);
                      xhr.addEventListener("load", function (e) {
                          callback('ok', e);
                      }, false);
                      xhr.addEventListener("error", function (e) {
                          callback('error', e);
                      }, false);
                      xhr.addEventListener("abort", function (e) {
                          callback('cancel', e);
                      }, false);
                  }
                  xhr.open("POST", url);
                  xhr.send(fd);
              }
              //音頻采集
              recorder.onaudioprocess = function (e) {
                  audioData.input(e.inputBuffer.getChannelData(0));
                  //record(e.inputBuffer.getChannelData(0));
              }
          };
          //拋出異常
          HZRecorder.throwError = function (message) {
              alert(message);
              throw new function () { this.toString = function () { return message; } }
          }
          //是否支持錄音
          HZRecorder.canRecording = (navigator.getUserMedia != null);
          //獲取錄音機(jī)
          HZRecorder.get = function (callback, config) {
              if (callback) {
                  if (navigator.getUserMedia) {
                      navigator.getUserMedia(
                          { audio: true } //只啟用音頻
                          , function (stream) {
                              var rec = new HZRecorder(stream, config);
                              callback(rec);
                          }
                          , function (error) {
                              switch (error.code || error.name) {
                                  case 'PERMISSION_DENIED':
                                  case 'PermissionDeniedError':
                                      HZRecorder.throwError('用戶拒絕提供信息。');
                                      break;
                                  case 'NOT_SUPPORTED_ERROR':
                                  case 'NotSupportedError':
                                      HZRecorder.throwError('瀏覽器不支持硬件設(shè)備。');
                                      break;
                                  case 'MANDATORY_UNSATISFIED_ERROR':
                                  case 'MandatoryUnsatisfiedError':
                                      HZRecorder.throwError('無法發(fā)現(xiàn)指定的硬件設(shè)備。');
                                      break;
                                  default:
                                      HZRecorder.throwError('無法打開麥克風(fēng)。異常信息:' + (error.code || error.name));
                                      break;
                              }
                          });
                  } else {
                      HZRecorder.throwErr('當(dāng)前瀏覽器不支持錄音功能。'); return;
                  }
              }
          }
          window.HZRecorder = HZRecorder;
      })(window);

      關(guān)于HTML5聲音錄制和播放功能如何實(shí)現(xiàn)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


      網(wǎng)站名稱:HTML5聲音錄制和播放功能如何實(shí)現(xiàn)
      網(wǎng)頁路徑:http://www.ef60e0e.cn/article/gechhs.html
      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区
      1. <ul id="0c1fb"></ul>

        <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
        <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

        淅川县| 金秀| 繁峙县| 巴马| 小金县| 北碚区| 明水县| 台南市| 北碚区| 西贡区| 从江县| 富锦市| 高密市| 资讯 | 什邡市| 颍上县| 桂林市| 会昌县| 武陟县| 高安市| 华宁县| 福建省| 西乌| 南乐县| 长治县| 旬邑县| 炉霍县| 永济市| 郯城县| 桐城市| 尼玛县| 绥滨县| 平安县| 景东| 南平市| 清水县| 崇礼县| 四平市| 湖口县| 固始县| 神木县|