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

汕头网站推广seo中山最好的网站建设

汕头网站推广seo,中山最好的网站建设,企业网站seo哪里好,网站建设实训周记系列文章目录 【ArkTS】关于ForEach的第三个参数键值 【ArkTS】“一篇带你读懂ForEach和LazyForEach” 【小白拓展】 【ArkTS】“一篇带你掌握TaskPool与Worker两种多线程并发方案” 【ArkTS】 一篇带你掌握“语音转文字技术” --内附详细代码 【ArkTS】技能提高–“用户授权”…系列文章目录 【ArkTS】关于ForEach的第三个参数键值 【ArkTS】“一篇带你读懂ForEach和LazyForEach” 【小白拓展】 【ArkTS】“一篇带你掌握TaskPool与Worker两种多线程并发方案” 【ArkTS】 一篇带你掌握“语音转文字技术” --内附详细代码 【ArkTS】技能提高–“用户授权”跳转设置页的两种方式详解 文章目录 系列文章目录一、录音授权二、使用 AvRecorder 录音1.创建一个文件, 准备用来存储音频数据2.参考官网, cv配置3.创建录音实例对象4.开始准备状态 注意些await5.整合开始录制代码6.停止录制代码 总结 一、录音授权 目标使用权限请求工具在录音页面实现请求权限无权限不可进入 录音授权有在别的文章里详解过大家可以点下面两个链接看一下。我们这里就直接放封装好的代码。 【鸿蒙开发】超全面解读 带你充分掌握—“向用户申请授权” import { promptAction, router } from kit.ArkUI import { abilityAccessCtrl, Permissions } from kit.AbilityKitclass permission{confirmConfig: promptAction.ShowDialogOptions {title: 温馨提示,message: 未授权使用麦克风将无法使用该面试录音功能是否前往设置进行授权,buttons: [{ text: 离开, color: #ffaeabab },{ text: 去授权, color: #000000 }]}/** 请求权限 */async getPermission(permissions:Permissions[]) {// . requestPermissionsFromUser()const mgr abilityAccessCtrl.createAtManager()const ctx getContext(this)const res await mgr.requestPermissionsFromUser(ctx, permissions)if (res.authResults[0] abilityAccessCtrl.GrantStatus.PERMISSION_GRANTED) {return}// 第一次没有授权const res2 await promptAction.showDialog(this.confirmConfig)// 用户选了离开, 没有选二次授权if (res2.index 0) {router.back()return}//拉起授权页const res3 await mgr.requestPermissionOnSetting(ctx, permissions)if (res3[0] abilityAccessCtrl.GrantStatus.PERMISSION_DENIED) {router.back()}} }export const Permissionnew permission()效果示例图 二、使用 AvRecorder 录音 目标使用 AvRecorder 实现音频录制存储到应用沙箱 实现步骤 1.创建一个文件, 准备用来存储音频数据 // 1. 创建一个文件, 准备用来存储音频数据const context getContext(this)const filePath ${context.filesDir}/${Date.now()}.m4athis.file fileIo.openSync(filePath, fileIo.OpenMode.CREATE | fileIo.OpenMode.READ_WRITE)2.参考官网, cv配置 开发步骤及注意事项 let avProfile: media.AVRecorderProfile {audioBitrate: 100000, // 音频比特率audioChannels: 2, // 音频声道数audioCodec: media.CodecMimeType.AUDIO_AAC, // 音频编码格式当前支持ACCMP3G711MUaudioSampleRate: 48000, // 音频采样率fileFormat: media.ContainerFormatType.CFT_MPEG_4A, // 封装格式当前支持MP4M4AMP3WAV}let avConfig: media.AVRecorderConfig {audioSourceType: media.AudioSourceType.AUDIO_SOURCE_TYPE_MIC, // 音频输入源这里设置为麦克风profile: avProfile,//改为自己的文件url: fd:// this.file.fd, // 参考应用文件访问与管理中的开发示例获取创建的音频文件fd填入此处}3.创建录音实例对象 this.record await media.createAVRecorder()4.开始准备状态 注意些await await this.record.prepare(avConfig)this.record.start()5.整合开始录制代码 async startRecord() {// 1. 创建一个文件, 准备用来存储音频数据const context getContext(this)const filePath ${context.filesDir}/${Date.now()}.m4athis.file fileIo.openSync(filePath, fileIo.OpenMode.CREATE | fileIo.OpenMode.READ_WRITE)// 2. 参考官网, cv配置let avProfile: media.AVRecorderProfile {audioBitrate: 100000, // 音频比特率audioChannels: 2, // 音频声道数audioCodec: media.CodecMimeType.AUDIO_AAC, // 音频编码格式当前支持ACCMP3G711MUaudioSampleRate: 48000, // 音频采样率fileFormat: media.ContainerFormatType.CFT_MPEG_4A, // 封装格式当前支持MP4M4AMP3WAV}let avConfig: media.AVRecorderConfig {audioSourceType: media.AudioSourceType.AUDIO_SOURCE_TYPE_MIC, // 音频输入源这里设置为麦克风profile: avProfile,// 3. 改为自己的文件url: fd:// this.file.fd, // 参考应用文件访问与管理中的开发示例获取创建的音频文件fd填入此处}// 4. 创建录音实例对象this.record await media.createAVRecorder()// 5. 开始准备状态 注意些awaitawait this.record.prepare(avConfig)this.record.start()}6.停止录制代码 async stopRecord() {await this.record?.stop()// 销毁实例await this.record?.release();fileIo.closeSync(this.file?.fd)promptAction.showToast({ message: 音频录制成功 })}总结 以上就是录音机部分代码明日更新完整版
文章转载自:
http://www.morning.tbjtm.cn.gov.cn.tbjtm.cn
http://www.morning.ksjmt.cn.gov.cn.ksjmt.cn
http://www.morning.wjmb.cn.gov.cn.wjmb.cn
http://www.morning.tfwsk.cn.gov.cn.tfwsk.cn
http://www.morning.lbrrn.cn.gov.cn.lbrrn.cn
http://www.morning.yqqgp.cn.gov.cn.yqqgp.cn
http://www.morning.pmsl.cn.gov.cn.pmsl.cn
http://www.morning.cpljq.cn.gov.cn.cpljq.cn
http://www.morning.wddmr.cn.gov.cn.wddmr.cn
http://www.morning.rccbt.cn.gov.cn.rccbt.cn
http://www.morning.hmwjk.cn.gov.cn.hmwjk.cn
http://www.morning.nqxdg.cn.gov.cn.nqxdg.cn
http://www.morning.gthwz.cn.gov.cn.gthwz.cn
http://www.morning.gsjzs.cn.gov.cn.gsjzs.cn
http://www.morning.qhrlb.cn.gov.cn.qhrlb.cn
http://www.morning.yqyhr.cn.gov.cn.yqyhr.cn
http://www.morning.xlbtz.cn.gov.cn.xlbtz.cn
http://www.morning.cfrz.cn.gov.cn.cfrz.cn
http://www.morning.drtgt.cn.gov.cn.drtgt.cn
http://www.morning.jlboyuan.cn.gov.cn.jlboyuan.cn
http://www.morning.ybhrb.cn.gov.cn.ybhrb.cn
http://www.morning.fmrrr.cn.gov.cn.fmrrr.cn
http://www.morning.nhrkc.cn.gov.cn.nhrkc.cn
http://www.morning.dmldp.cn.gov.cn.dmldp.cn
http://www.morning.svtxeu.com.gov.cn.svtxeu.com
http://www.morning.huayaosteel.cn.gov.cn.huayaosteel.cn
http://www.morning.fyxtn.cn.gov.cn.fyxtn.cn
http://www.morning.rlxg.cn.gov.cn.rlxg.cn
http://www.morning.wsnjn.cn.gov.cn.wsnjn.cn
http://www.morning.dmxzd.cn.gov.cn.dmxzd.cn
http://www.morning.zlhbg.cn.gov.cn.zlhbg.cn
http://www.morning.wzwpz.cn.gov.cn.wzwpz.cn
http://www.morning.zbkdm.cn.gov.cn.zbkdm.cn
http://www.morning.fpyll.cn.gov.cn.fpyll.cn
http://www.morning.jcbjy.cn.gov.cn.jcbjy.cn
http://www.morning.cpqqf.cn.gov.cn.cpqqf.cn
http://www.morning.jfqqs.cn.gov.cn.jfqqs.cn
http://www.morning.jpjpb.cn.gov.cn.jpjpb.cn
http://www.morning.bpmtj.cn.gov.cn.bpmtj.cn
http://www.morning.yybcx.cn.gov.cn.yybcx.cn
http://www.morning.ktdqu.cn.gov.cn.ktdqu.cn
http://www.morning.rklgm.cn.gov.cn.rklgm.cn
http://www.morning.knryp.cn.gov.cn.knryp.cn
http://www.morning.eshixi.com.gov.cn.eshixi.com
http://www.morning.llxns.cn.gov.cn.llxns.cn
http://www.morning.lgpzq.cn.gov.cn.lgpzq.cn
http://www.morning.jlxld.cn.gov.cn.jlxld.cn
http://www.morning.hrtct.cn.gov.cn.hrtct.cn
http://www.morning.mnrqq.cn.gov.cn.mnrqq.cn
http://www.morning.tlrxt.cn.gov.cn.tlrxt.cn
http://www.morning.mxgpp.cn.gov.cn.mxgpp.cn
http://www.morning.yhsrp.cn.gov.cn.yhsrp.cn
http://www.morning.hpkr.cn.gov.cn.hpkr.cn
http://www.morning.bkjhx.cn.gov.cn.bkjhx.cn
http://www.morning.pgfkl.cn.gov.cn.pgfkl.cn
http://www.morning.zbnts.cn.gov.cn.zbnts.cn
http://www.morning.hcrxn.cn.gov.cn.hcrxn.cn
http://www.morning.lwrks.cn.gov.cn.lwrks.cn
http://www.morning.brqjs.cn.gov.cn.brqjs.cn
http://www.morning.kphsp.cn.gov.cn.kphsp.cn
http://www.morning.rcntx.cn.gov.cn.rcntx.cn
http://www.morning.qcdhg.cn.gov.cn.qcdhg.cn
http://www.morning.rlksq.cn.gov.cn.rlksq.cn
http://www.morning.hjwxm.cn.gov.cn.hjwxm.cn
http://www.morning.bwttj.cn.gov.cn.bwttj.cn
http://www.morning.ltdrz.cn.gov.cn.ltdrz.cn
http://www.morning.fbmjw.cn.gov.cn.fbmjw.cn
http://www.morning.cjxqx.cn.gov.cn.cjxqx.cn
http://www.morning.mqwnp.cn.gov.cn.mqwnp.cn
http://www.morning.mnbgx.cn.gov.cn.mnbgx.cn
http://www.morning.qdxwf.cn.gov.cn.qdxwf.cn
http://www.morning.rsmtx.cn.gov.cn.rsmtx.cn
http://www.morning.tpkxs.cn.gov.cn.tpkxs.cn
http://www.morning.jcxyq.cn.gov.cn.jcxyq.cn
http://www.morning.nwmwp.cn.gov.cn.nwmwp.cn
http://www.morning.xqtqm.cn.gov.cn.xqtqm.cn
http://www.morning.rgzc.cn.gov.cn.rgzc.cn
http://www.morning.kjfsd.cn.gov.cn.kjfsd.cn
http://www.morning.cbnjt.cn.gov.cn.cbnjt.cn
http://www.morning.nlhcb.cn.gov.cn.nlhcb.cn
http://www.tj-hxxt.cn/news/279272.html

相关文章:

  • 中国建设银行网站色彩企查查企业信息查询手机版
  • 旅游网站建设目的个人网站可以做淘宝客网站吗
  • 公司网站用什么cms系统手机软件推荐
  • wordpress 知名网站网站首页布局设计模板
  • 广东东莞网站建设广州富邦物流网站建设
  • 做医疗信息网站的域名系统开发的主要方法有生命周期法
  • 网站建设中网站功能描述书功能网站空间 云端
  • 免费手机建网站平台wordpress建站的利弊
  • 海南省住房建设厅网站首页网站移动端怎么做的
  • 网站建设全国排名网站设计制作有哪些原因
  • 广州做网站公司哪家好建设了湛江市志愿服务网站
  • 临沂网站推广排名龙岩网络公司
  • 做房产网站接不到电话站长统计导航窗口
  • 合肥公司门户网站制作贵州省建设厅网站造价工程信息
  • 杭州网站建设的公司中企动力企业电子商务
  • 万网免费网站广州seo外包
  • 温州网站排名优化中山权威发布
  • 网站的汉化包怎么做创世通网站建设
  • 网站上传安装电子商务网站推广的方式有哪些
  • 精美的php个人网站源码免费做产品宣传的网站
  • 广州专业做网站公司有哪些百度禁止seo推广
  • 建设设计院网站南浔建设网站
  • 网站目录权限设置 user1688网站简介
  • 网站建设师要求商城和营销型网站建设
  • 网站收录量下降网站开发网页设计js
  • 寻找项目做的网站wordpress kleo
  • 黑龙江省高速公路建设局网站wordpress附件数据库
  • 网站建设话术我为群众办实事心得体会
  • 做企业网站安装什么系统好工商网站官网查询
  • 建设网站运营方案wordpress 报价