簡體   English   中英

如何在特定位置存儲或上傳音頻文件?

[英]How to store or upload audio file in specific location?

我需要將錄制的聲音存儲在一個特定位置。 如何將錄制的文件存儲或上傳到位置?

這是我上傳音頻文件和上傳的腳本。php 文件

這是我的參考鏈接: https://blog.addpipe.com/using-recorder-js-to-capture-wav-audio-in-your-html5-web-site/

//upload link
var upload = document.createElement('a');
upload.href="#";
upload.innerHTML = "Upload";
upload.addEventListener("click", function(event){
      var xhr=new XMLHttpRequest();
      xhr.onload=function(e) {
          if(this.readyState === 4) {
              console.log("Server returned: ",e.target.responseText);
          }
      };
      var fd=new FormData();
      fd.append("audio_data",blob, filename);
      xhr.open("POST","upload.php",true);
      xhr.send(fd);
})
li.appendChild(document.createTextNode (" "))//add a space in between
li.appendChild(upload)//add the upload link to li

上傳.php

<?php
print_r($_FILES); //this will print out the received name, temp name, type, size, etc.
$size = $_FILES['audio_data']['size'];
$input = $_FILES['audio_data']['tmp_name'];
$output = $_FILES['audio_data']['name'].".wav";
move_uploaded_file($input, $output)
?>

target_dir=>你想把它存儲在哪里

  $target_dir = "uploads/";
   $target_file = $target_dir . basename($_FILES["audio_data"]["name"]);


 if (move_uploaded_file($_FILES["audio_data"]["tmp_name"], $target_file)) {
    echo "The file ". basename( $_FILES["audio_data"]["name"]). " has been 

   uploaded.";

  } else {
   echo "Sorry, there was an error uploading your file.";
 }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM