# coding=utf-8 import os import librosa import base64 import io import gradio as gr import re import numpy as np import torch import torchaudio from modelscope import HubApi api = HubApi() key = os.environ["apikey"] if "apikey" in os.environ else "" try: api.login(key) except: pass from funasr import AutoModel # model = "/Users/zhifu/Downloads/modelscope_models/SenseVoiceSmall" model = "iic/SenseVoiceSmall" model = AutoModel(model=model, vad_model="iic/speech_fsmn_vad_zh-cn-16k-common-pytorch", vad_kwargs={"max_single_segment_time": 30000}, trust_remote_code=True, ) import re emo_dict = { "<|HAPPY|>": "😊", "<|SAD|>": "😔", "<|ANGRY|>": "😡", "<|NEUTRAL|>": "", "<|FEARFUL|>": "😰", "<|DISGUSTED|>": "🤢", "<|SURPRISED|>": "😮", } event_dict = { "<|BGM|>": "🎼", "<|Speech|>": "", "<|Applause|>": "👏", "<|Laughter|>": "😀", "<|Cry|>": "😭", "<|Sneeze|>": "🤧", "<|Breath|>": "", "<|Cough|>": "🤧", } emoji_dict = { "<|nospeech|><|Event_UNK|>": "❓", "<|zh|>": "", "<|en|>": "", "<|yue|>": "", "<|ja|>": "", "<|ko|>": "", "<|nospeech|>": "", "<|HAPPY|>": "😊", "<|SAD|>": "😔", "<|ANGRY|>": "😡", "<|NEUTRAL|>": "", "<|BGM|>": "🎼", "<|Speech|>": "", "<|Applause|>": "👏", "<|Laughter|>": "😀", "<|FEARFUL|>": "😰", "<|DISGUSTED|>": "🤢", "<|SURPRISED|>": "😮", "<|Cry|>": "😭", "<|EMO_UNKNOWN|>": "", "<|Sneeze|>": "🤧", "<|Breath|>": "", "<|Cough|>": "😷", "<|Sing|>": "", "<|Speech_Noise|>": "", "<|withitn|>": "", "<|woitn|>": "", "<|GBG|>": "", "<|Event_UNK|>": "", } lang_dict = { "<|zh|>": "<|lang|>", "<|en|>": "<|lang|>", "<|yue|>": "<|lang|>", "<|ja|>": "<|lang|>", "<|ko|>": "<|lang|>", "<|nospeech|>": "<|lang|>", } emo_set = {"😊", "😔", "😡", "😰", "🤢", "😮"} event_set = {"🎼", "👏", "😀", "😭", "🤧", "😷",} def format_str(s): for sptk in emoji_dict: s = s.replace(sptk, emoji_dict[sptk]) return s def format_str_v2(s): sptk_dict = {} for sptk in emoji_dict: sptk_dict[sptk] = s.count(sptk) s = s.replace(sptk, "") emo = "<|NEUTRAL|>" for e in emo_dict: if sptk_dict[e] > sptk_dict[emo]: emo = e for e in event_dict: if sptk_dict[e] > 0: s = event_dict[e] + s s = s + emo_dict[emo] for emoji in emo_set.union(event_set): s = s.replace(" " + emoji, emoji) s = s.replace(emoji + " ", emoji) return s.strip() def format_str_v3(s): def get_emo(s): return s[-1] if s[-1] in emo_set else None def get_event(s): return s[0] if s[0] in event_set else None s = s.replace("<|nospeech|><|Event_UNK|>", "❓") for lang in lang_dict: s = s.replace(lang, "<|lang|>") s_list = [format_str_v2(s_i).strip(" ") for s_i in s.split("<|lang|>")] new_s = " " + s_list[0] cur_ent_event = get_event(new_s) for i in range(1, len(s_list)): if len(s_list[i]) == 0: continue if get_event(s_list[i]) == cur_ent_event and get_event(s_list[i]) != None: s_list[i] = s_list[i][1:] #else: cur_ent_event = get_event(s_list[i]) if get_emo(s_list[i]) != None and get_emo(s_list[i]) == get_emo(new_s): new_s = new_s[:-1] new_s += s_list[i].strip().lstrip() new_s = new_s.replace("The.", " ") return new_s.strip() def model_inference(input_wav, language, fs=16000): # task_abbr = {"Speech Recognition": "ASR", "Rich Text Transcription": ("ASR", "AED", "SER")} language_abbr = {"auto": "auto", "zh": "zh", "en": "en", "yue": "yue", "ja": "ja", "ko": "ko", "nospeech": "nospeech"} # task = "Speech Recognition" if task is None else task language = "auto" if len(language) < 1 else language selected_language = language_abbr[language] # selected_task = task_abbr.get(task) # print(f"input_wav: {type(input_wav)}, {input_wav[1].shape}, {input_wav}") if isinstance(input_wav, tuple): fs, input_wav = input_wav input_wav = input_wav.astype(np.float32) / np.iinfo(np.int16).max if len(input_wav.shape) > 1: input_wav = input_wav.mean(-1) if fs != 16000: print(f"audio_fs: {fs}") resampler = torchaudio.transforms.Resample(fs, 16000) input_wav_t = torch.from_numpy(input_wav).to(torch.float32) input_wav = resampler(input_wav_t[None, :])[0, :].numpy() # DecodingOptions = { # "task": selected_task, # "language": selected_language, # "fp16": True, # "gain_event": True, # } merge_vad = True #False if selected_task == "ASR" else True print(f"language: {language}, merge_vad: {merge_vad}") text = model.generate(input=input_wav, cache={}, language=language, use_itn=True, batch_size_s=0, merge_vad=merge_vad) # if len(input_wav) > 16000*30: # text = model.generate(input=input_wav, task=selected_task, language=language, batch_size_s=0) # else: # text = model.inference(input=input_wav, task=selected_task, language=language, batch_size_s=0) print(text) text = text[0]["text"] #text = format_str(text) #text = format_str_v2(text) text = format_str_v3(text) # text = distingush_speech(text) # text = "".join(text) print(text) return text audio_examples = [ ["example/zh.mp3", "zh"], ["example/yue.mp3", "yue"], ["example/en.mp3", "en"], ["example/ja.mp3", "ja"], ["example/ko.mp3", "ko"], ["example/emo_1.wav", "auto"], ["example/emo_2.wav", "auto"], ["example/emo_3.wav", "auto"], #["example/emo_4.wav", "auto"], #["example/event_1.wav", "auto"], #["example/event_2.wav", "auto"], #["example/event_3.wav", "auto"], ["example/rich_1.wav", "auto"], ["example/rich_2.wav", "auto"], #["example/rich_3.wav", "auto"], ["example/longwav_1.wav", "auto"], ["example/longwav_2.wav", "auto"], ["example/longwav_3.wav", "auto"], #["example/longwav_4.wav", "auto"], ] description = """ # SenseVoice is a speech foundation model with multiple speech understanding capabilities, including automatic speech recognition (ASR), spoken language identification (LID), speech emotion recognition (SER), and acoustic event classification (AEC) or acoustic event detection (AED). ## Usage ### Upload an audio file or input through a microphone, then select the task and language. *Language* - `auto`: the audio language will be detected automatically. - `Language Type Selection`: can also be specified for a particular language type. Recommended audio input duration is below 30 seconds. For audio longer than 30 seconds, local deployment is recommended, github repo. """ html_content = """

Voice Understanding Model: SenseVoice-Small

SenseVoice-Small is an encoder-only speech foundation model designed for rapid voice understanding. It encompasses a variety of features including automatic speech recognition (ASR), spoken language identification (LID), speech emotion recognition (SER), and acoustic event detection (AED). SenseVoice-Small supports multilingual recognition for Chinese, English, Cantonese, Japanese, and Korean. Additionally, it offers exceptionally low inference latency, performing 7 times faster than Whisper-small and 17 times faster than Whisper-large.

Usage

Upload an audio file or input through a microphone, then select the task and language. the audio is transcribed into corresponding text along with associated emotions (😊 happy, 😡 angry/exicting, 😔 sad) and types of sound events (😀 laughter, 🎼 music, 👏 applause, 🤧 cough&sneeze, 😭 cry). The event labels are placed in the front of the text and the emotion are in the back of the text.

Recommended audio input duration is below 30 seconds. For audio longer than 30 seconds, local deployment is recommended.

Repo

SenseVoice: multilingual speech understanding model

FunASR: fundamental speech recognition toolkit

CosyVoice: high-quality multilingual TTS model

""" # 自定义表格的 HTML 和 CSS 代码 centered_table_html = """
Samples Speech Recognition Rich Text Transcription
韩语-英语-综艺 자, 둘, 셋! 안녕 하 세요?저는 새봄 영원 신화 입니다. 한 주간 잘 지내셨나요? 오늘은 어떤 영상을 보러 들을 거냐 혹시 밴드 음악 좋아해요 네 약간 락 그런 거 그냥 밴드요 밴드 음악 좋아하는 밴드 누구 있어요 저요 뭐 우리나라 아니어도 상관없어요 어...라디오 해군 아 진짜 형은요? FT 아일랜드 그런 그런 그룹 들이 많이 있 는데 그런 관련 된 중국 에 서도 밴드 관련 된 프로그램 이 있 다고 해요?그래서 그 프로그램 영상 을 한번 만나 볼 건데 그렇게 감안 해서 생각 하 시고, 보 면서 어떤 음악 을 하 는지 또 밴드 가, 밴드라는 지칭하는 단어가 여기 악기들이 들어가는 그런 연주잖아요 그래서 느낌이 다르지 안 다르지는 잘 모르겠는데 좀 전 비슷할 것 같아요 그래서 한번 보도록 하겠습니다 틀어주세요. え?うん。 なんか、何なんだ。 여기 왔다 약간 벨로그 こんばんは? 이디엠 이디엠인가 뭐야, 재밌어야? 哦。 Like, what is that? 세일 고려하는 게 그렇게 많다 아 저 뒤에 사람 있는 게 신기한 화면이 아니라 이거 레이저인 거야 화면이 레이저를 잘 할 필요가 없는데, 정전을 잘 못해? I'm 80 now. 是吧。 No touch. てるよ。 패트가 있다는 게 아니라 투명 투명 자, 둘, 셋 안녕하세요 저는 새봄 영원 신화입니다 자, 여러분들! 한주가 잘 지내셨나요 😀 ?오늘은 어떤 영상을 불러드릴 거냐 혹시 밴드 음악 좋아요? 그냥 밴드요 밴드 밴드 음악 밴드 음악이 락 아닌가 밴드 좋아하는 밴드 누구 있어요 저요 우리나라 아니어도 상관없어요 어...라디오 헤드 아 형은요? 🎵 FG 아일랜드 그런 그런 그룹 들이 많이 있 는데 그런 관련 된 중국 에 서도 밴드 관련 된 프로그램 이 있 다고 해요?그래서, 그 프로그램 영상 을 한번 만나 볼 건데 그렇게 감안 해서 생각 하 시고, 보 면서 어떤 음악 을 하 는지 또 밴드 가, 🎶 밴드라는 지칭하는 단어가 여기 악기들이 들어가는 그런 연주잖아요 그래서 느낌이 다르지 안 다르지는 잘 모르겠는데 좀 전 비슷할 것 같아요 그래서 한번 보도록 하겠습니다 자 틀어주세요. 🎵 들어왔다 약간 갤럭시 온라인? 🎶 😀 What is that. 🎵 되게 화려한데, 렉크가 아 저 뒤에 사람 있는 게 신기해 화면이 아니라 이거 레이저인 거야?레이저를 저렇게 조절이 되냐 누구 저게 와우. 🎶 👏 No touch. 👏 👏 👏 👏 👏 🎵 패스가 있다는 게 아니라 투명 투명. 🎶
英文-歌曲 What's up, I'm Morris, I'm playing Blood Incantation Hey, this is Jeff Barrett. And this is Isaac Falk, it's Paul Riedel from Blood Incantation here at Amoeba in Hollywood, we're doing What's in My Bag. So, yeah, I found. This CD, it's a. Fates warning, perfect symmetry. 在一。 It's the album they did right around the time of another album, Parallels, where they had a new singer, this is where this band really started going in the progressive direction, where very extended like solo sections and odd time signatures and stuff like that and yeah, very influential, actually parts of this were very influential on Hidden History of the Human Race and we were working on that. First thing in my bag is. Mordred Angels 1999 album, Formulas Fatal to the Flesh. I don't own this on vinyl, I think this is the second. Repress, huge influence on floating containment, if you can tell, one of our favorite records. And it's good to find it here. Yeah, total classic. The first thing I found was in the new arrivals bin. ста 90s reissue of the second Wallenstein album. Classic krautrock on the pills label, great psychedelic Prague krautrock with a little bit of folk and kind of symphonic aspect, killer. And a great cover. Yeah, mother universe. First thing I picked out, I went straight to the jazz section. Finds this record that. Changed my life, I got to see Dave Brubeck before he died when I was about 17 in New Jersey. The saxophone player on this, Paul Desmond, is also one of my favorite jazz players, super important record to me and my dad, which he grew on very quickly. My next thing. Is this Osamu Kitajima album? I have not heard this one, but I'm a really big fan of his stuff from the 70s and 80s, and this album has a 12 minute song, so I'm guessing it's going to be pretty cool, I just want to read the back of this because this was like really interesting to me, it says,"Higher Octave Music is founded upon the vision that we have entered an era of global cooperation and unity in which we have entered an era of global cooperation and unity, We are dedicated to a process of continuous refinement, both artistically and commercially, as in music, so in life. I was like, that sounds great, I'm going to buy that next I got the Carlos Santana John McLaughlin record. Love, devotion, surrender. Morris picked it up at another record store on this tour, they're two amazing guitarists that I love both of their solo works, so I'd like to see them work together. Next is a record I have not heard, but was apparently unavailable on official format until this reissue from Wawa by Bernard Zolotol's like a classic new age. Type of progressive electronics guy. A lot of Terry Riley style tape loops, rather than like. You know, harsh digital sequencers and synthesizer stuff. So I have a couple records from this guy. I never heard this one. It includes a bonus 7". There's also a song called Gliding through the Cosmophonic Dome. So it's probably great. Next step, I got. What's up. I'm Morris playing blood incantation. Hey, this is Jeff Barrett, and this is Isaac Falk. It's Paul Riedel from Blood Incantation here at Amoeba in Hollywood. We're doing what's in my bag. 🎼 So, yeah, I found this Cd. It's a fate's warning. Perfect symmetry. 🎵 It's the album they did right around the time of another album, Parallels, where they had a new singer. This is where this band really started going in the progressive direction, where. 🎶 Very extended, like solo sections and odd time signatures and stuff like that. And yeah, very influential. Actually, parts of this were very influential on hidden history of the human race. And we're working on that. The first thing in my bag is more of an angel's album. Formulas fatal to the flesh. 🎼 I don't own this on vinyl. I think this is the second repress. Huge influence on loading, 🎵 if you can tell one of our favorite records. 🎶 And it's good to find it here. Yeah, total classic. The first thing I found was in the new arrivals bin, 🎵 the S reissue of the second Wallenstein album. Classic kraut rock on the pills label. Great psychedelic 🎶 Prague kraut rock with a little bit of folk and kind of symphonic aspect 🎵 killer and a great cover. Yeah, mother universe. First thing I picked out, I went straight to the jazz section. 🎶 😊 To find this record that changed my life, I got to see Dave Brubeck before he died when I was about seventeen 🎵 in New Jersey. 🎶 The saxophone player on this, Paul Desmond, is also one of my favorite jazz players, super important record to me and my dad, which he grew on very quickly. 🎼 🎵 My next thing is this Osamu Kitajima album. 🎶 I have not heard this one, but I'm a really big fan of his stuff from the S And S. And this album has a minute song. So I'm. I'm guessing it's going to be pretty cool. I just want to read the back of this because this was like, really interesting to me. It says higher octave music is founded upon the vision that we have entered an era of. 😊 Global cooperation and unity in which music plays an integral 🎵 part. Our purpose is to help set a new standard of excellence in the music of this era. 🎶 We are dedicated to a process of continuous refinement, both artistically and commercially, as in music. So in life, 🎵 I was like, that sounds great. I'm going to buy that. Next, I got the Carlos Santana John McLaughlin record. 🎶 😊 Love, devotion, surrender. 🎼 Morris picked it up at another record store on this tour. 🎵 There are two amazing guitarists that I love both of their solo works. So I'd like to see them work together. 🎶 😊 Next is a record I have not heard, but was apparently unavailable on official format until this reissue from Wawa. But Bernard Zolotol is like a classic new age. 🎵 Type of progressive electronics guy. A lot of Terry Riley style tape loops, rather than like. You know, harsh digital sequencers and synthesizer stuff. So I have a couple records from the sky. I never heard this one. It includes a bonus seven inch. There's also a song called Gliding through the Cosmophonic Dome. So it's probably great. Next up, I got. 🎶
英文-中文-腾格尔-天堂 Tangry with his song, heaven. de de de le de Absolute shock, but in a great way. That was awesome. That was awesome. What way to open a song that was awesome, awesome. I'd love to check out some more Mongolian throat singing stuff. That is correct, right, It is Mongolian. Let me know. I'd love to check out more. I think a lot of you want to check out the Who if you guys still want me to, I'd be more than happy to. de de de 蓝蓝的天空,清清的湖水啊。 That is incredible, that is incredible. That is incredible for those of you don't know what I'm saying right now, the way he can make it sound like he's finished a note, you know, he like lowers it so low you can't even hear the note anymore and then he brings it back and you can see his mouth still open the way it makes the way he can like finish a note but not finish it, I don't know how to explain that that is an incredible talent that is amazing. 哦哟这是我的家。 Tangry with his song. Heaven. 🎵absolute.sock but in a great way🎶. 🎵 Wow. That was awesome. That was awesome. What way to open a song. That was awesome, awesome. I'd love to check out some more Mongolian 🎶 folk singing stuff. That is correct, right, It is Mongolian. Let me know. I'd love to check out more. I think a lot of you want to check out the Who if you guys still want me to, I'd be more than happy to. 😊 🎵蓝蓝的天空。轻轻的呼声。你要。绿绿的草原。🎶 That is incredible. That is incredible. That is incredible for those of you don't know what I'm saying right now, the way he can make it sound like he's finished a note, you know, he like lowers it so low you can't even hear the note anymore and then he brings it back and you can see his mouth still open the way it makes the way he can like finish a note but not finish it, I don't know how to explain that, that is an incredible talent, that is amazing. 😡 🎵给我买什么?这是我的家。哎,嘿。🎶
日语-英语-苹果 And there's another big game coming to Mac this year, to tell you all about it, here's legendary game creator Kojima-san from Kojima Productions. はい、皆さんこんにちは。僕らが現在取り組んでいるマックのプロジェクトを本日ここで皆さんにご紹介できることをとても嬉しく思って。います。 僕自身、1994年に最初の Mac を購入して以来の Apple の大ファンです。 そして、僕とチームが手掛けた作品をマックでお届けすることが、長年の夢でもありましたマックでのゲーム体験は、ついに新しい時代に突入しました。 その時代に合わせて、デストランディングディレクターズカットの Mac 版のリリースが2023年年末に決定したことをここで発表させていただきます。 マック版デストランディングディレクターズカットでは、Apple の最新のテクノロジーを最大限に活かしたゲーム体験を皆さんにお届けしたいと思います。 メタル fx アップスケーリングによる高精度なグラフィックをはじめ、アップルシリコンの素晴らしいパフォーマンスやモダンなレンダリングパイプラインを兼ね備えたメタル3には今回とても驚かされました。 ぜひ多くの皆さんに、この革新的かつエクサイティングな新しいマックの環境に触れていただければと思っています。 このデストランディングディレクターズカットを皮切りに、今後の小島プロダクションタイトルについても Apple プラットフォームへの展開を積極的に行っていく予定です。 デストランディングディレクターズカットの先行予約は近日中に開始する予定です。ぜひ楽しみにお待ちください。それでは、ザインキュー。 And there's another big game coming to Mac this year to tell you all about it. Here's legendary game creator Kojima-san, from Kojima Productions. 🎵みなさんこんにちは、僕らが現在取り組んでいるマックのプロジェクトを本日ここで皆さんにご紹介できることをとても嬉しく思っています。🎶 僕自身、千九百九十四年に最初の mac を購入して以来の🎵アップルの大ファンです。そして、僕とチームが手掛けた作品を mac でお届けすることが、長年の夢でもありました mac でのゲーム体験は、ついに新しい時代に突入しました。🎶 その時代に合わせて、デストランディングディレクターズカットの🎵mac版のリリースが二千二十三年年末に決定したことをここで発表させていただきます。mac 版デストランディングディレクターズカットでは、apple の最新のテクノロジーを最大限に活かしたゲーム体験を皆さんにお届けしたいと思います。メタル fx アップスケーリングによる高精度なグラフィックをはじめ、アップルシリコンの素晴らしいパフォーマンスやモダンなレンダリングパイプラインを兼ね備えたメタルには今回とても驚かされました。ぜひ多くの皆さんに、この革新的かつエクサイティングな新しいマックの環境に触れていただければと思っています。このデストランディングディレクターズカットを皮切りに、今後の小島プロダクションタイトルについても、アップルプラットフォームへの展開を積極的に行っていく予定です。デストランディングディレクターズカットの先行予約は近日中に開始する予定です。是非楽しみにお待ちください。それでは、ザインキュー。🎶
中英-华语乐坛 问你什么想法,我是我对你的表达。问你。 什么看法?我的世界,我的复活。 都说华流才是顶流,而随着华语乐坛的崛起,的确有不少华语歌手真正做到了用作品和歌声征服国际舞台。那么本期视频就为小伙伴们探点了这样火遍全球的四首华语歌曲。话不多说,快来看看有没有你喜欢的吧。 de number four play我呸,由蔡依林演唱,发行于2014年,是一首中西合并,风格十分前卫的歌曲。在这首歌中,蔡依林可谓突破了自己以往的尺度,特别是现场表演,更是气场全开,完全就是女王的风范。 想要挣,他挣我赔,快点去相亲,也是要付我赔,快点去那里来,想要挣我赔,我赔,早赔更赔。 什么都喜欢什么都会。 number three,左手指月,左手指月,指指人心。这是一首暗含佛家禅意的歌曲,除了精妙的作词之外,歌曲超三个八度的高音也只有原唱萨顶顶能演绎出其中的精髓。而她的现场演唱,更是让老外都惊羡不已。 此人是你全部的社会信念。 我的家。 啊,好好的。 number two,光年之外,这是好莱坞大片太空旅客专程邀请段子琪为电影创作的主题曲,而段子琪显然也不负他们所望。这首光年之外,不仅与电影的主题十分契合,而且火爆全网,成为了2017年的年度十大金曲。果然,华语小天后的魅力,你真的可以永远相信。 为爱遥远在空间之外,若能守候未知,为你等待。我没想到,为你活得多么荒凉。 伤多了一小,没有你根本不想逃。 de number one浮夸,或许很多小伙伴不知道的是,原创作者写这首歌,其实一开始就是为了纪念哥哥张国荣,后来被陈奕迅演唱后,更是成为了一个经典浮夸式的演绎。据说在2014年的某颁奖盛典,因为伊森的现场太过浮夸,以至于主办方不得不将这一段给剪掉。 天使帝女马与人类流花吧,一生只想你惊讶,我旧事只为传唱,不怕重聚。 好了,这就是本期节目的全部内容了,喜欢的小伙伴别忘了点赞关注,我们下期见,拜拜。 🎵问你什么想法,我是我对你的表达。问你。什么看法?我的世界,我的复活。都说华流才是顶流,而随着华语乐坛的崛起,的确有不少华语歌手真正做到了用作品和歌声征服国际舞台。那么本期视频就为小伙伴们探点了这样火遍全球的四首华语歌曲。话不多说,快来看看有没有你喜欢的吧。😊🎶 number four play我呸,由蔡依林演唱,发行于2014年,是一首中西合并,风格十分前卫的歌曲。在这首歌中,蔡依林可谓突破了自己以往的尺度,特别是现场表演,更是气场全开,完全就是女王的风范。 🎼 number3,左手指月左手指月,指指人心。这是一首暗含佛家禅意的歌曲,除了精妙的作词之外,歌曲超三个八度的高音也只有原唱萨顶顶能演绎出其中的精髓。而她的现场演唱,更是让老外都惊🎵羡不已。此人是你全部的社会信念。😊啊,一生。😊🎶 number two,光年之外,这是好莱坞大片太空旅客专程邀请段子琪为电影创作的主题曲,而段子琪显然也不负他们所望。这首光年之外,不仅与电影的主题十分契合,而且火爆全网,成为了2017年的年度十大金曲。果然,华语小天后的魅力,你真的可以永远相信。 🎵为爱遥远在空间之外,若能守候未知,为你等待。我没想到,哎,我如同荒凉。number one浮夸,或许很多小伙伴不知道的是,原创作者写这首歌,其实一开始就是为了纪念哥哥张国荣,后来被陈奕迅演唱后,更是成为了一个经典浮夸式的演绎。据说在2014年的某颁奖盛典,因为伊森的现场🎶太过浮夸,以至于主办方不得不将这一段给剪掉。 🎵歇斯底里,马儿,眼泪流花罢,一生只想你惊讶,我旧事只为传唱,不怕重聚。好了,这就是本期节目的全部内容了,喜欢的小伙伴别忘了点赞关注我们,下期见,拜拜。🎶
中文-日语-网红歌翻唱 呼啦啦啦啦啦啦啦啦呼啦啦啦啦啦啦啦。 哈喽各位,这里是音乐萌太郎,我是小凡。几率死生命死之后,今天我们又有三首流行歌曲。 被日本看上了,到底被注入了怎样的灵魂,我们一起来听一下吧。东宝石的这首野狼disco,堪称今年最。 被洗脑的神曲前段时间不但风靡大学校园,就连陈伟霆也出了正宗的岗位教程。没想到转眼间,这首歌却被日语看上了,被软萌的罗丽依一唱,我竟然有。 在停裂暗循环的感觉。 夜叫ぼうか嘘が本当だ思いっきりして誰も忘れた君は一番だ知ってるから。 せえのこっちにりょうを描いてこっちに虹を描くいいね逆にこっちに虹を描いてこっちにりょうを描くすごい 哦,不要。 前段时间,由音雀视听书品赵方静演唱的古风电音盲咒,也凭借洗脑旋律在短时间内成功刷屏,这次更是背翻战神日语版走红网络。短短一周的时间,视频已经快要达到200万的播放了。 幻想が一粒の涙そんなの無理っての私だけじゃいき。 出らないあなたの言葉を思えば胸がギュッとなんだかずっと痛いや。 おお、女のない夜空以外。 听听听听。 还记得那首换装歌曲速吗?这次也被小姐姐翻唱成了日语版,不过对于这首歌还是有些争议。有网友表示,空灵的嗓音也许更适合这首歌的曲风。节目的最后,一起来听听这首日语版的歌曲吧。喜欢的小伙伴记得关注,我们下期见,拜拜。 連れ出されて星の中へ。 的从列。 🎵呼啦啦啦啦啦啦啦啦呼啦啦啦啦啦啦啦啦。😊hello,各位,这里是音乐萌太糖,我是小凡。几率死生命死之后,今天我们又有三首流行歌曲。🎶😊 被日本看上了,到底被注入了怎样的灵魂,我们一起来听一下吧。🎵东宝石的这首野狼disco,堪称今年最。😊被洗脑的神曲前段时间不但风靡大学校园,就连陈伟霆也出了正宗的岗位教程。没想到转眼间,这首歌却被日语看上了,被软萌的罗丽音一唱,我竟然有。😊在停恋爱循环的感觉。😊夜叫ぼうか嘘が本当か思いっきりして誰も忘れた君は一番だ知ってるから。せーのこっちにりょうを描いてこっちに虹を描くいいね逆にこっちに虹を描いてこっちにりょうを描くすごい!哦,不要。前段时间,由音雀视听书品赵方静演唱的古风电音盲咒,也凭借洗脑旋律在短时间内成功刷屏,这次更是背翻战场日语版走红网络。短短一周的时间,视频已经快要达到200万的播放了。😊幻想が一粒の涙そんなの無理っての私だけじゃいき。出らないあなたの言葉を思えば胸がギュッとなんだかずっと痛いや。女のない夜空以外。还记得那首换装歌曲速吗?这次也被小姐姐翻唱成了日语版,不过对于这首歌还是有些争议。有网友表示,空灵的嗓音也许更适合这首歌的曲风。节目的最后,一起来听听这首日语版的歌曲吧。喜欢的小伙伴记得关注,我们下期见,拜拜。😊連れ出されて星の中へ。的从容。🎶
""" def launch(): with gr.Blocks(theme=gr.themes.Soft()) as demo: # gr.Markdown(description) gr.HTML(html_content) with gr.Row(): with gr.Column(): audio_inputs = gr.Audio(label="Upload audio or use the microphone") with gr.Accordion("Configuration"): # task_inputs = gr.Radio(choices=["Speech Recognition", "Rich Text Transcription"], # value="Speech Recognition", label="Task") language_inputs = gr.Dropdown(choices=["auto", "zh", "en", "yue", "ja", "ko", "nospeech"], value="auto", label="Language") fn_button = gr.Button("Start", variant="primary") text_outputs = gr.Textbox(label="Results") gr.Examples(examples=audio_examples, inputs=[audio_inputs, language_inputs], examples_per_page=20) fn_button.click(model_inference, inputs=[audio_inputs, language_inputs], outputs=text_outputs) # with gr.Accordion("More examples"): # gr.HTML(centered_table_html) demo.launch() if __name__ == "__main__": # iface.launch() launch()