当前位置: 首页 > news >正文

网站建设需要的流程.net 网站开发权限设计

网站建设需要的流程,.net 网站开发权限设计,wordpress个性登录,乐清网站定制公司Vue 使用 js-audio-recorder 实现录制、播放、下载 PCM 数据 Vue 使用 js-audio-recorder 实现录制、播放、下载 PCM 数据js-audio-recorder 简介Vue 项目创建下载相关依赖主界面设计设置路由组件及页面设计项目启动源码下载 Vue 使用 js-audio-recorder 实现录制、播放、下载 … Vue 使用 js-audio-recorder 实现录制、播放、下载 PCM 数据 Vue 使用 js-audio-recorder 实现录制、播放、下载 PCM 数据js-audio-recorder 简介Vue 项目创建下载相关依赖主界面设计设置路由组件及页面设计项目启动源码下载 Vue 使用 js-audio-recorder 实现录制、播放、下载 PCM 数据 js-audio-recorder 简介 纯 js 实现浏览器端录音。 支持功能 支持录音暂停恢复和录音播放。支持音频数据的压缩支持单双通道录音。支持录音时长、录音大小的显示。支持边录边转播放 后续支持。支持导出录音文件格式为 pcm 或 wav。支持录音波形显示可自己定制。 项目地址https://github.com/2fps/recorder 演示地址https://recorder.zhuyuntao.cn/ Vue 项目创建 按下面的步骤创建 Vue 项目 然后 cd 到 vue_recorder 下终端输入 npm run serve出现下面输出说明成功了 浏览器打开 http://localhost:8080/ 下载相关依赖 在项目中我们会用到 js-audio-plugin 以及 Element 所以需要下载相关依赖并在 main.js 中引入。 安装 js-audio-plugin 指令npm i js-audio-recorder。 安装 Element 指令npm install element-ui。 安装好以后在 main.js 添加 // 引入 element-ui import ElementUI from element-ui; // element-ui 的 css 样式要单独引入 import element-ui/lib/theme-chalk/index.css;Vue.use(ElementUI);主界面设计 主页面的设计在根组件 App.vue 中进行主要负责一些全局内容的显示。 templatediv idapp!-- navrouter-link to/Recorder/router-link |/nav --router-view //div /templatestyle langscss #app {font-family: Avenir, Helvetica, Arial, sans-serif;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-align: center;color: #2c3e50; }nav {padding: 30px;a {font-weight: bold;color: #2c3e50;.router-link-exact-active {color: #42b983;}} } /style设置路由 在 router 目录下的 index.js 中设置路由 import Vue from vue import VueRouter from vue-router import RecorderView from ../views/RecorderView.vueVue.use(VueRouter)const routes [{path: /,name: recorder,component: RecorderView}, ]const router new VueRouter({routes })export default router组件及页面设计 在 compoments 文件夹下新建 MyRecorder.vue templatediv stylepadding: 20px;h1{{ msg }}/h1h3录音上传/h3div stylefont-size:14pxh3录音时长{{ recorder recorder.duration.toFixed(4) }}/h3br /el-button typeprimary clickhandleStart开始录音/el-buttonel-button typeinfo clickhandlePause暂停录音/el-buttonel-button typesuccess clickhandleResume继续录音/el-buttonel-button typewarning clickhandleStop停止录音/el-buttonbr /br /h3播放时长{{ recorder (playTime recorder.duration ? recorder.duration.toFixed(4) : playTime.toFixed(4)) }}/h3br /el-button typeprimary clickhandlePlay播放录音/el-buttonel-button typeinfo clickhandlePausePlay暂停播放/el-buttonel-button typesuccess clickhandleResumePlay继续播放/el-buttonel-button typewarning clickhandleStopPlay停止播放/el-buttonel-button typeerror clickhandleDestroy销毁录音/el-buttonel-button typeprimary clickdownloadPCM下载PCM数据/el-buttonel-button typeprimary clickdownloadWAV下载WAV数据/el-buttonel-button typeprimary clickuploadRecord上传/el-button/div/div /templatescript import Recorder from js-audio-recorder // import axios from axiosexport default {name: MyRecorder,props: {msg: String},data() {return {recorder: null,playTime: 0,timer: null,src: null}},created() {this.recorder new Recorder({sampleBits: 16, // 采样位数支持 8 或 16默认是 16sampleRate: 16000, // 采样率支持 11025、16000、22050、24000、44100、48000根据浏览器默认值Chrome 是 48000numChannels: 1, // 声道数支持 1 或 2 默认是 1})},methods: {// 开始录音handleStart() {this.recorder new Recorder()Recorder.getPermission().then(() {console.log(开始录音)this.recorder.start() // 开始录音}, (error) {this.$message({message: 请先允许该网页使用麦克风,type: info})console.log(${error.name} : ${error.message})})},handlePause() {console.log(暂停录音)this.recorder.pause() // 暂停录音},handleResume() {console.log(恢复录音)this.recorder.resume() // 恢复录音},handleStop() {console.log(停止录音)this.recorder.stop() // 停止录音},handlePlay() {console.log(播放录音)console.log(this.recorder)this.recorder.play() // 播放录音// 播放时长this.timer setInterval(() {try {this.playTime this.recorder.getPlayTime()} catch (error) {this.timer null}}, 100)},handlePausePlay() {console.log(暂停播放)this.recorder.pausePlay() // 暂停播放// 播放时长this.playTime this.recorder.getPlayTime()this.time null},handleResumePlay() {console.log(恢复播放)this.recorder.resumePlay() // 恢复播放// 播放时长this.timer setInterval(() {try {this.playTime this.recorder.getPlayTime()} catch (error) {this.timer null}}, 100)},handleStopPlay() {console.log(停止播放)this.recorder.stopPlay() // 停止播放// 播放时长this.playTime this.recorder.getPlayTime()this.timer null},handleDestroy() {console.log(销毁实例)this.recorder.destroy() // 销毁实例this.timer null},downloadPCM() {console.log(下载PCM格式数据)// 注使用该方法会默认调用 stop() 方法this.recorder.downloadPCM(record-pcm)},downloadWAV() {console.log(下载WAV格式数据)// 注使用该方法会默认调用 stop() 方法this.recorder.downloadWAV(record-wav)},uploadRecord() {if (this.recorder null || this.recorder.duration 0) {this.$message({message: 请先录音,type: error})return false}this.recorder.pause() // 暂停录音this.timer nullconsole.log(上传录音) // 上传录音const formData new FormData()const blob this.recorder.getPCMBlob() // 获取 pcm 格式音频数据// 此处获取到 blob 对象后需要设置 fileName 满足项目上传需求这里选择直接把 blob 作为 file 塞入 formDataconst fileOfBlob new File([blob], new Date().getTime() .pcm)formData.append(file, fileOfBlob)const url window.URL.createObjectURL(fileOfBlob)this.src url// const axios require(axios)// axios.post(url, formData).then(res {// console.log(res.data.data[0].url)// })}} } /script在 views 文件夹下新建 RecorderView.vue templatediv classhome!-- imgaltVue logosrc../assets/logo.png --MyRecorder msgWelcome to Vue Recorder //div /templatescript // is an alias to /src import MyRecorder from /components/MyRecorder.vueexport default {name: RecorderView,components: {MyRecorder} } /script项目启动 在终端中输入指令npm run serve。 可以看到如下界面说明项目成功运行 根据提示访问本地地址 http://localhost:8080/。 经过测试页面正常排布所有功能都正常使用除了上传功能。 源码下载 GitHub CSDNvue-recorder.zip
http://www.yutouwan.com/news/156428/

相关文章:

  • 做worksheet的网站导航网站移动端流量占比
  • 做系统那个网站好做创新方法工作网站
  • 洛阳 网站建设北京企迪网站建设公司
  • 模版网站做支付功能西安网站建设 美科动
  • 网站建设价格明细表和网站预算施工单位招聘信息
  • 旅游网站wordpressh5框架做网站
  • 渭南哪家公司可以做网站在线花钱做网站
  • 前程无忧网广州网站建设类岗位wordpress时间表插件
  • 苏州著名网站建设wordpress视频教程 百度网盘
  • 东莞微客巴巴做网站j2ee博客网站开发
  • 东莞市住建局官网网站免费打开网站
  • 婚纱手机网站做网站的前端技术
  • 关于网站开发的学校南阳千牛网站建设
  • 全县网站建设管理工作会议召开iis服务器网站301重定向怎么做
  • 证书兼职的人才网站网络规划设计师考试内容
  • 制作关于灯的网站网站排名下降的原因
  • 长沙做网站 必看 磐石网络佛山关键词搜索排名
  • 制作企业网站素材视频网站自做书本
  • 网站建设公司选哪个好新闻株洲最新
  • 稳稳在哪个网站做的消防直播免费发布广告
  • 广州医院网站建设网页设计实训报告
  • 如何网站点击率摄影设计说明怎么写
  • 在阿里怎样做单页销售网站不用买服务器可以做网站
  • 如何降低网站跳出率大型网站建设制作平台
  • p2p理财网站开发要求wordpress搜索页面怎么仿
  • 网站活泼广州软件开发公司排行榜
  • 公司网站需要多少钱国外做图片识别训练的网站
  • 廊坊高端品牌网站建设网页设计教案
  • 徐州网站定制公司阮一峰wordpress
  • 做中国o2o网站领导深圳设计公司盖出图章