js實(shí)現(xiàn)錄音上傳功能的方法是什么?很多人都不太了解,今天小編為了讓大家更加了解js實(shí)現(xiàn)錄音上傳功能的方法,所以給大家總結(jié)了以下內(nèi)容,一起往下看吧。
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比五大連池網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式五大連池網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋五大連池地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。
具體代碼如下所示:
1、html頁面
2、Recorder.js內(nèi)容
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.Recorder = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o3、flask寫法
... @app.route("/") def index(): return render_template("index.html") @app.route("/receive_audio", methods=["POST"]) def receive_audio(): file = request.files.get("audio") if file: filepath = os.path.join(BAISE_DIR, "data", "%s.m4a" % uuid4()) file.save(filepath) text = baidu.auido2text(filepath) answer = tuling.chat(text) res = baidu.text2audio(answer) if res.get("err_no") == 200: return {"code": 200, "filename": res.get("filename")} return {"code": 201, "msg": "上傳失敗"} @app.route("/get_audio/") def get_audio(filename): return send_file(os.path.join(BAISE_DIR, "data", filename)) ... 注意:flask啟動ip寫成127.0.0.1,其他地址js可能會報錯。
以上就是js實(shí)現(xiàn)錄音上傳功能的方法是什么的簡略介紹,當(dāng)然詳細(xì)使用上面的不同還得要大家自己使用過才領(lǐng)會。如果想了解更多,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道哦!
當(dāng)前題目:js實(shí)現(xiàn)錄音上傳功能的方法是什么
分享路徑:http://weahome.cn/article/ppssss.html