亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python語音識別whisper如何使用

發布時間:2023-02-27 15:04:20 來源:億速云 閱讀:230 作者:iii 欄目:開發技術

這篇文章主要介紹了python語音識別whisper如何使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇python語音識別whisper如何使用文章都會有所收獲,下面我們一起來看看吧。

whisper語音識別

Whisper 是一種通用的語音識別模型。它在不同音頻的大型數據集上進行訓練,也是一個多任務模型,可以執行多語言語音識別以及語音翻譯和語言識別。
stable-ts在 OpenAI 的 Whisper 之上修改并添加了更大的破解代碼發布,生成更準確的階段時間切換,并在無須額外推介的情況下獲得申領

安裝

pip install openai-whisper 
pip install stable-ts
SizeParametersEnglish-only modelMultilingual modelRequired VRAMRelative speed
tiny39 Mtiny.entiny~1 GB~32x
base74 Mbase.enbase~1 GB~16x
small244 Msmall.ensmall~2 GB~6x
medium769 Mmedium.enmedium~5 GB~2x
large1550 MN/Alarge~10 GB1x

示例

模型越大,越精確,相應話費的時間越長
自帶語言識別功能,language最好加上,下面歌曲識別為英語,加后為中文
stable_whisper 是 whisper 進化版

import whisper
import stable_whisper as whisper

class WhisperTranscriber(object):

    def __init__(self, model_name):
        self.model = whisper.load_model(model_name)

    def whisper_transcribe(self, audio_path):
        audio = self.model.transcribe(audio_path, fp16=False, language='Chinese')
        return audio['text']

if __name__ == '__main__':

    transcriber = WhisperTranscriber("base")
    text = transcriber.whisper_transcribe("257853511.mp3")
    print(text)

python語音識別whisper如何使用

可能是伴奏聲音過大,你才出來這是什么歌了嗎?stable_whisper 別的用法、生成字幕

import stable_whisper
model = stable_whisper.load_model('base')
results = model.transcribe('257853511.mp3', fp16=False, language='Chinese')
stable_whisper.results_to_sentence_srt(results, 'audio')
stable_whisper.results_to_sentence_word_ass(results, 'audio.ass')

封裝工具

buzz

如果遇到簡繁轉換可以石下面

pip install zhconv
  • zh-cn 大陸簡體

  • zh-hant 繁體

from zhconv import convert     
convert('Python是一種動態的、面向對象的腳本語言', 'zh-hant')
'Python是一種動態的、面向對象的腳本語言'

關于“python語音識別whisper如何使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“python語音識別whisper如何使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建瓯市| 孟村| 云和县| 永靖县| 广灵县| 盐池县| 会东县| 江山市| 江口县| 兴安盟| 双峰县| 温宿县| 安吉县| 大悟县| 九龙坡区| 额尔古纳市| 衡阳县| 晴隆县| 临城县| 定襄县| 铁岭县| 通辽市| 永和县| 孟连| 焉耆| 旌德县| 尚志市| 临江市| 五峰| 巴南区| 虞城县| 二连浩特市| 尉氏县| 肥东县| 秀山| 日照市| 锡林郭勒盟| 平乡县| 汝城县| 太保市| 宿州市|