美文网首页
解决uniapp 录音文件调用百度语音识别空问题wav,pcm都

解决uniapp 录音文件调用百度语音识别空问题wav,pcm都

作者: yichen_china | 来源:发表于2024-08-27 10:31 被阅读0次

最终使用amr识别成功了

                recorderManager.start({
                    duration:60000,
                    sampleRate: 16000, // 采样率  
                    numberOfChannels: 1, // 录音通道数  
                    encodeBitRate: 96000, // 编码码率  
                    format: 'amr',   
                    frameSize: 10 // 指定帧大小,单位 KB 
                });

附完整代码

<template>
    <view class="chat_wrap flex-column">
        <headerView :is_back="true" :header_text="header_text"></headerView>
        <scroll-view :scroll-into-view="scrollToView" scroll-y="true" class="msg_list">
            <block v-for="(item,index) in msg_list">
                <view :id="'item'+index" class="item my flex-row align-start just-end">
                    <view class="content flex-column">
                        <text class="text_val">{{item.message}}</text>
                    </view>
                    <image></image>
                </view>
                <view :id="'item'+index" v-if="item.audio" class="item her flex-row align-start just-start">
                    <image></image>
                    <view class="content">
                        <text @click="handleAudioPlay(item)" @longpress="handleMore(item)">点击播放</text>
                    </view>
                </view>
            </block>
        </scroll-view>
        <view class="btn flex-row align-end just-between">
            <view class="add flex-row align-center just-center" @click="changePostType">
                <image mode="widthFix" style="width:46rpx" src="@/static/gpt/keywords.png" v-if="post_type!='text'">
                </image>
                <image mode="widthFix" style="width: 34rpx;" src="@/static/gpt/voice.png" v-else></image>
            </view>
            <text v-if="post_type!='text'" @touchstart="startRecord"
                @touchend="endRecord">{{is_voice_type=='starting'?'松开结束':'按住说话'}}</text>
            <textarea v-else auto-height="true" placeholder="请输入描述词" v-model="postText"></textarea>
            <view v-if="post_type=='text'" class="add flex-row align-center just-center" @click="handleSend">
                <image src="@/static/gpt/post.png"></image>
            </view>
        </view>
    </view>
</template>

<script>
    import api from '@/http/api.js'
    import headerView from '../../components/header-view.vue'
    const recorderManager = uni.getRecorderManager();
    const innerAudioContext = uni.createInnerAudioContext();
    innerAudioContext.autoplay = true;
    export default {
        components: {
            headerView
        },
        data() {
            return {
                header_text: '',
                id: '',
                msg_list: [],
                postText: '',
                scrollToView: '',
                req: {},
                is_show_file: false,
                post_type: 'text',
                voicePath: '',
                is_voice_type: 'ending',
                recorderManager: null,
                is_requesting: false
            }
        },
        async onLoad(option) {
            let self = this;
            this.header_text = option.title
            this.req.assistant_id = option.id
            this.getHistoryMsg()
            recorderManager.onStop(function(res) {
                self.voicePath = res.tempFilePath;
                self.handleSend()
            });
        },
        methods: {
            async getHistoryMsg() {
                let res = await api.getHistoryMsg(this.req)
                this.msg_list = res.data
                setTimeout(() => {
                    this.scrollToView = 'item' + Number(this.msg_list.length - 1);
                }, 100)
            },
            // 切换文字 语音
            changePostType() {
                if (this.post_type == 'text') {
                    this.post_type = 'audio'
                } else {
                    this.post_type = 'text'
                }
            },
            startRecord() {
                if (this.changeYyModule()) {
                    return
                }
                this.is_voice_type = 'starting'
                recorderManager.start({
                    duration:60000,
                    sampleRate: 16000, // 采样率  
                    numberOfChannels: 1, // 录音通道数  
                    encodeBitRate: 96000, // 编码码率  
                    format: 'amr',   
                    frameSize: 10 // 指定帧大小,单位 KB 
                });
            },
            endRecord() {
                console.log('录音结束');
                this.is_voice_type = 'ending'
                recorderManager.stop();
            },
            async handleSend() {
                let res
                if (this.is_requesting) {
                    return
                }
                this.is_requesting = true
                if (this.post_type == 'text') {
                    if (this.postText == '') {
                        uni.showToast({
                            icon: 'error',
                            title: '请描述出您的内容'
                        })
                    }
                    this.msg_list.push({
                        text: this.postText
                    })
                    res = await api.textToAudio({
                        ...this.req,
                        text: this.postText
                    })
                } else {
                    if (this.voicePath == '') {
                        uni.showToast({
                            icon: 'error',
                            title: '请描述出您的内容'
                        })
                    }
                    console.log(this.voicePath)
                    res = await api.audioToText({
                        formData: {
                            ...this.req
                        },
                        file: this.voicePath
                    })
                }
                console.log(res)
                this.is_requesting = false
                if (res.errno != 0) {
                    uni.showToast({
                        icon: 'error',
                        title: res.message
                    })
                }
                this.postText = ''
                this.voicePath = ''
                this.getHistoryMsg()
            },
            // 麦克风权限判断
            changeYyModule(e) {
                const appAuthorizeSetting = uni.getAppAuthorizeSetting()
                let callback = false
                if (appAuthorizeSetting.microphoneAuthorized == "denied") {
                    uni.showModal({
                        title: '提示',
                        content: '请先打开麦克风权限',
                        success: function(res) {
                            if (res.confirm) {
                                uni.openAppAuthorizeSetting()
                            } else if (res.cancel) {
                                console.log('用户点击取消');
                            }
                        },
                    });
                    callback = true
                }
                return callback
            },
            handleAudioPlay(item) {
                innerAudioContext.src = item.audio
            },
            handleMore(item) {
                const that = this
                uni.showActionSheet({
                    itemList: ['下载'],
                    success: function(res) {
                        if (res.tapIndex == 0) {
                            that.downLoadAudio(item)
                        }
                    },
                    fail: function(res) {
                        console.log(res.errMsg);
                    }
                });
            },
            downLoadAudio(item) {
                uni.downloadFile({
                    url: item.audio, //仅为示例,并非真实的资源
                    success: (res) => {
                        if (res.statusCode === 200) {
                            console.log('下载成功');
                        }
                    }
                })
            }
        }
    }
</script>

<style scoped lang="less">
    .chat_wrap {
        background: #F6F5FC;
        height: 100vh;

        .msg_list {
            height: calc(100% - 122rpx - 88rpx - var(--status-bar-height));
            overflow-y: scroll;
            padding: 20rpx 40rpx;

            .item {
                margin-bottom: 40rpx;
            }

            .her {
                &>image {
                    width: 80rpx;
                    height: 80rpx;
                    border-radius: 20rpx;
                    margin-right: 20rpx;
                    background: url(@/static/logo_96.png);
                    background-size: 100%;
                }

                .content {
                    max-width: 560rpx;
                    padding: 20rpx;
                    background: #fff;
                    border-radius: 12rpx;

                    .text_val {
                        font-weight: 400;
                        font-size: 30rpx;
                        color: #333333;
                        word-break: break-word;
                    }
                }
            }

            .my {
                &>image {
                    width: 80rpx;
                    height: 80rpx;
                    border-radius: 20rpx;
                    margin-left: 20rpx;
                    background: url(@/static/logo_96.png);
                    background-size: 100%;
                }

                .content {
                    max-width: 560rpx;
                    padding: 20rpx;
                    background: #fff;
                    border-radius: 12rpx;

                    .text_val {
                        font-weight: 400;
                        font-size: 30rpx;
                        color: #333333;
                        word-break: break-word;
                    }
                }
            }
        }

        .btn {
            width: 750rpx;
            min-height: 122rpx;
            background: #FFFFFF;
            padding: 20rpx 40rpx;
            position: fixed;
            bottom: 0;
            left: 0;

            .add {
                width: 80rpx;
                height: 80rpx;
                background: #FFFFFF;
                border-radius: 12rpx;
                border: 3rpx solid #252634;

                image {
                    width: 44rpx;
                    height: 44rpx;
                }
            }

            textarea,
            text {
                flex: 1;
                background: #FFFFFF;
                border-radius: 12rpx;
                border: 3rpx solid #252634;
                font-weight: 400;
                font-size: 30rpx;
                color: #828285;
                padding: 17rpx 20rpx;
                box-sizing: border-box;
                margin: 0 20rpx;
            }

            text {
                text-align: center;
                color: #333;
            }

            textarea:first-child {
                margin-left: 0;
            }
        }
    }
</style>

相关文章

  • 录音程序

    1.获取pcm文件: 2.pcm转wav 3.录音转为pcm再转为wav:

  • android录音并通过百度识别将语音转文字遇到的坑

    由于百度语音识别的语音文件格式必须固定且符合: 百度语音识别规则:原始 PCM 的录音参数必须符合 16k 采样率...

  • golang 使用科大讯飞进行语音合成与识别

    golang 使用科大讯飞进行语音合成与识别 使用科大讯飞 API 进行语音合成和识别,可识别wav和pcm文件 ...

  • iOS PCM转成WAV

    最近做录音的时候为了和安卓端统一,需要将pcm格式的录音文件转为wav格式的文件。 背景知识 PCM PCM (P...

  • 语音识别预处理---语音转文字

    平台:百度语音识别 环境:win7+python3 利用百度语音识别,由于百度限制了语音文件格式(pcm(不压缩)...

  • Android pcm转码wav

    百度语音识别后生成的语音文件为pcm文件,pcm可以使用ffmpeg进行转码,我自己尝试过使用其他工具转码均失败,...

  • [kalid] pcm2wav

    20180827 qzd pcm文件转wav文件时,主要是在pcm文件加入wav的头。wav的文件头包含wav标示...

  • 微信小程序语音搜索踩坑之路——SUSE版

    直接调用微信小程序录音接口,然后上传到服务器,百度语音的接口是识别不了这种格式的文件,那么问题来了 一、如何转码?...

  • iOS将PCM数据文件转换为WAV文件

    最近学习写wav文件,搞了很久,踩了不少坑。将PCM数据文件转换为WAV文件其实就是在PCM数据前加上WAV的头。...

  • PCM文件转wav文件

    PCM是采样的原始音频数据, 是无压缩的原始数据, 给pcm添加wav的文件头, 就是wav文件, 所以wav也是...

网友评论

      本文标题:解决uniapp 录音文件调用百度语音识别空问题wav,pcm都

      本文链接:https://www.haomeiwen.com/subject/awtzkjtx.html