diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..a0640d14a76658aabe9b9d11333f7f9913069004 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +*.opus filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..21d0b898ff61470da684cc5e8f7d6efa648de8cf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv/ diff --git a/README.md b/README.md index 408d21ce23bf1bab6ef1083c4da9ec1b14e3d781..69ea1e9a52baef573b5ee9f3d7939270f248666b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ --- -title: Nijivoice Voice Actors -emoji: 🏆 +title: にじボイスのキャラと声優さんの対応表デモ +emoji: 🤔 colorFrom: yellow colorTo: pink sdk: gradio diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..1951979d552a01f678a2dc696e3ec16c83624672 --- /dev/null +++ b/app.py @@ -0,0 +1,224 @@ +# player.py +from __future__ import annotations + +from pathlib import Path +from typing import List, Optional + +import gradio as gr +import pandas as pd + +DATA_CSV = Path("data.csv") +SAMPLES_ROOT = Path("./samples") +AUDIO_EXTS = (".opus",) + +# 表示ヘッダー(Dataframe の headers と完全一致にする) +HEADERS = ["にじボイスでのキャラ名", "声優名", "自信"] # speaker_name / va / prob + + +# ─── 便利関数 ─── +def load_csv(csv_path: Path) -> pd.DataFrame: + df = pd.read_csv(csv_path, dtype=str, keep_default_na=False) + need_cols = ["speaker_name", "staff_id"] # va / prob は無くても OK + for c in need_cols: + if c not in df.columns: + raise ValueError(f"CSV に必須列 '{c}' がありません。") + return df.fillna("") + + +def tts_path_for(speaker: str, idx: int) -> Optional[Path]: + p = SAMPLES_ROOT / speaker / "tts" / f"{idx}.opus" + return p if p.exists() else None + + +def guess_numbers_for(speaker: str) -> List[str]: + gdir = SAMPLES_ROOT / speaker / "guess" + if not gdir.exists(): + return [] + nums = set() + for ext in AUDIO_EXTS: + for p in gdir.glob(f"*{ext}"): + stem = p.stem + if stem.isdigit(): + nums.add(int(stem)) + return [str(n) for n in sorted(nums)] + + +def guess_path_for(speaker: str, num: str) -> Optional[Path]: + gdir = SAMPLES_ROOT / speaker / "guess" + for ext in AUDIO_EXTS: + p = gdir / f"{num}{ext}" + if p.exists(): + return p + return None + + +def filter_df(df: pd.DataFrame, q: str) -> pd.DataFrame: + if not q: + return df + mask = df["speaker_name"].str.contains(q, case=False, na=False) + return df[mask] + + +def build_vndb_markdown(staff_id: str, va: str) -> str: + sid = (staff_id or "").strip() + va_ = (va or "").strip() + parts = ["## 予想声優"] + if va_ and not sid: + parts.append(f"**{va_}**") + elif va_ and sid: + parts.append(f"**[{va_}](https://vndb.org/{sid})**") + return " \n".join(parts) + + +# 表示用 DF に変換(日本語 3 列で揃える) +def to_display_df(df: pd.DataFrame) -> pd.DataFrame: + work = df.copy() + if "va" not in work.columns: + work["va"] = "" + if "prob" not in work.columns: + work["prob"] = "" + disp = work[["speaker_name", "va", "prob"]] + disp.columns = HEADERS + return disp + + +def on_tts_pick(speaker: str, idx: int | str): + try: + i = int(idx) + except Exception: + return None + p = tts_path_for(speaker, i) + return p if p else None + + +def on_guess_pick(speaker: str, num: str | int): + if num is None or num == "": + return None + p = guess_path_for(speaker, str(num)) + return p if p else None + + +md = """ +# にじボイスの声優予想 + +[にじボイス](https://nijivoice.com/) のキャラクター音声の声優をAIで予想しました。その結果を一覧表示し、音声を再生できるアプリです。 + +## 使い方 + +1. 表からキャラクター名を選択します +2. 左側に、にじボイスでの音声例が3つ表示されます +3. 右側に、予想された声優名が表示され、似た声の音声例をいくつか再生できます +4. 表の右上の検索ボックスで検索もできます + +## 注意 + +- この結果は、あくまで音声が似ている声優を機械的に予想したものであり、にじボイスがこれらの声優のデータを用いて学習しているか、または学習時に声優さんの許可を得ているかを示すものではありません +- 特に自信度が1.0より低い場合で、あまり似ていない場合や、より似ている声優さんがいる場合もあります +- なお、リンク先の声優情報内では複数の名義が掲載されている場合がありますが、これは何故か声がすごく似ているだけであって、同一人物であると主張するものではありません。 +""" + + +# ─── UI 構築 ─── +def build_demo(csv_path: Path): + # 1) 元 CSV 読み込み + df = load_csv(csv_path) + + # 2) クリック時に参照するメタ辞書(speaker_name は一意想定) + meta_by_speaker = { + str(row.get("speaker_name", "")).strip(): { + "staff_id": str(row.get("staff_id", "") or "").strip(), + "va": str(row.get("va", "") or "").strip(), + "prob": str(row.get("prob", "") or "").strip(), + } + for _, row in df.iterrows() + if str(row.get("speaker_name", "")).strip() + } + + # 3) 表示用 DF(日本語 3 列) + display_df = to_display_df(df) + + with gr.Blocks(title="にじボイスのキャラと声優さんの対応表デモ") as demo: + gr.Markdown(md) + + table = gr.Dataframe( + value=display_df, + show_row_numbers=True, + interactive=False, + show_search="search", + ) + + with gr.Row(equal_height=True): + with gr.Column(): + sel_name = gr.Textbox(label="にじボイスでのキャラ名", interactive=False) + tts_choice = gr.Radio(choices=[1, 2, 3], value=1, label="音声例") + tts_audio = gr.Audio(label="音声例", interactive=False) + with gr.Column(): + info_md = gr.Markdown(value="## 予想声優", label="声優情報") + guess_choice = gr.Radio(choices=[], label="音声例") + guess_audio = gr.Audio(label="GUESS", interactive=False) + + def on_row_select_local(evt: gr.SelectData): + """ + 表示テーブルの 1 列目(にじボイスでのキャラ名)から speaker を取り出し、 + meta_by_speaker から staff_id / va を取得して各 UI を更新。 + """ + if evt.row_value is None: + return ( + gr.update(), + gr.update(), + gr.update(), + gr.update(), + gr.update(), + gr.update(), + ) + + speaker = str(evt.row_value[0]).strip() # HEADERS[0] + meta = meta_by_speaker.get(speaker, {}) + staff_id = meta.get("staff_id", "") + va_value = meta.get("va", "") + + # 左(TTS) + tts_default = 1 + tts_file = tts_path_for(speaker, tts_default) + + # 右上(情報Markdown) + md = build_vndb_markdown(staff_id, va_value) + + # 右(guess) + choices = guess_numbers_for(speaker) + guess_default = choices[0] if choices else None + guess_file = ( + guess_path_for(speaker, guess_default) if guess_default else None + ) + + return ( + speaker, # Textbox + gr.Radio(choices=[1, 2, 3], value=tts_default), + (tts_file if tts_file else None), # 左 Audio + md, # 右上 Markdown + gr.Radio(choices=choices, value=guess_default), + (guess_file if guess_file else None), # 右 Audio + ) + + table.select( + on_row_select_local, + inputs=None, + outputs=[ + sel_name, + tts_choice, + tts_audio, + info_md, + guess_choice, + guess_audio, + ], + ) + + tts_choice.change(on_tts_pick, [sel_name, tts_choice], tts_audio) + guess_choice.change(on_guess_pick, [sel_name, guess_choice], guess_audio) + + return demo + + +if __name__ == "__main__": + demo = build_demo(DATA_CSV) + demo.launch() diff --git a/data.csv b/data.csv new file mode 100644 index 0000000000000000000000000000000000000000..ce51defacd18def717f97ce7e49e5f620f5dcab2 --- /dev/null +++ b/data.csv @@ -0,0 +1,125 @@ +speaker_name,va,prob,staff_id +イリヤ・カレント,水島 大宙,1.000000,s52 +イルミル,米島 希,1.000000,s281 +イレーネ・ド・アルメリア,杉山 里穂,1.000000,s24630 +グラディオール=クロムヴェイン,黒田 崇矢,1.000000,s170 +シャルロッテ,山岡 ゆり,1.000000,s11656 +シュネー・レオパーダ,川原 慶久,1.000000,s1351 +シルフェナ,手塚 りょうこ,1.000000,s646 +ジャナーフ,川原 慶久,1.000000,s1351 +セバス,大下 昌之,1.000000,s21974 +ソルシャ・ソーン,米澤 円,1.000000,s189 +タルト,大地 葉,1.000000,s10070 +ティエリオン・ヴァルディエル・グレイスフォード,赤木 文太,1.000000,s15605 +ティニー,永田 佳代,1.000000,s266 +ノエラ,種﨑 敦美,1.000000,s196 +ミミ,種﨑 敦美,1.000000,s196 +ミレア,鳴海 エリカ,1.000000,s112 +ユリウス・フォン・エステルハイム,緑川 光,1.000000,s73 +ララメイ・ミルフィ,本多 真梨子,1.000000,s5178 +リュシア・ナイツベル,春村 奈々,1.000000,s21975 +ルシェリカ・ルナモルテ,山本 亜衣,1.000000,s17464 +ヴィクター・D・アシュフォード,若本 規夫,1.000000,s8 +あずみ・ロゼッタ・野茨,野中 カオリ,1.000000,s106 +ぽの,岩﨑 春奈,1.000000,s878 +一之瀬_ひなこ,松山 紗香,1.000000,s904 +一葉_ツバキ,中村 麻未,1.000000,s980 +三浦_隼人,望月 英,1.000000,s8865 +加賀谷_忍丸,近藤 孝行,1.000000,s2121 +千草_朋香,中島 沙樹,1.000000,s44 +如月_要,近藤 孝行,1.000000,s2121 +新堂_慶介,川原 慶久,1.000000,s1351 +新田_千紘,小林 眞紀,1.000000,s279 +日向_ここあ,高田 初美,1.000000,s363 +春野_奏汰,阿部 敦,1.000000,s633 +月城_美蘭,又吉 愛,1.000000,s1646 +月島_千遥,桜木 章人,1.000000,s1643 +月詠_トワ,大橋 歩夕,1.000000,s1178 +朝凪_しずく,仙台 エリ,1.000000,s195 +桐生_智成,川原 慶久,1.000000,s1351 +森宮_千乃,仙台 エリ,1.000000,s195 +森野_颯太,阿部 敦,1.000000,s633 +椎名_結衣,あさみ ほとり,1.000000,s902 +橘_志穂,中島 沙樹,1.000000,s44 +水樹_澪,後藤 麻衣,1.000000,s469 +深沢_美咲,瑞沢 渓,1.000000,s28 +深海_結涼,高田 初美,1.000000,s363 +漆夜_蓮,柿原 徹也,1.000000,s80 +灯真,興津 和幸,1.000000,s85 +照月院_輝臣,大川 透,1.000000,s551 +碧海_凪,緑川 光,1.000000,s73 +神薙_瞳,眞田 朱音,1.000000,s610 +篝,大橋 歩夕,1.000000,s1178 +篠ノ井_志乃,田中 涼子,1.000000,s6 +篠崎_優也,平川 大輔,1.000000,s133 +結城_理央,小林 眞紀,1.000000,s279 +綾瀬_透花,田中 涼子,1.000000,s6 +綿貫_蒼空,松元 恵,1.000000,s882 +花村_穂ノ香,花澤 さくら,1.000000,s947 +花森_未来,永井 真衣,1.000000,s896 +苔村_まりも,深田 愛衣,1.000000,s607 +若草_ひかり,五十嵐 裕美,1.000000,s77 +蒼真_迅,諏訪部 順一,1.000000,s66 +藤堂_朱音,長妻 樹里,1.000000,s1197 +跳々,種﨑 敦美,1.000000,s196 +金城_夏海,生天目 仁美,1.000000,s270 +陽斗・エイデン・グリーンウッド,水島 大宙,1.000000,s52 +霧島_律,緑川 光,1.000000,s73 +青玲,山本 希望,1.000000,s1455 +鞍馬_勝男,三宅 淳一,1.000000,s640 +高坂_茉莉,米澤 円,1.000000,s189 +高宮_涼香,鈴木 みのり,1.000000,s10962 +鳳_環那,櫻井 浩美,1.000000,s449 +鴇ノ宮_環,田中 美幸,1.000000,s3698 +鴉羽_朱鷺子,佐倉 ゆき,1.000000,s839 +宝泉寺_ミリア,青木 瑠璃子,0.999999,s11831 +小夜,柏木 美優,0.999998,s1030 +オリバー・ジェームズ,小尾 元政,0.999996,s981 +セドリック・E・ウィットモア,井ノ上 奈々,0.999980,s1808 +リネット・ハミルトン,木村 千咲,0.999937,s29086 +冬月_初音,西連寺 亜希,0.999919,s14876 +焔_烈,逢坂 良太,0.999911,s248 +白天,来宮とおる,0.999743,s21154 +白熊_愛鈴,月読 梓,0.999389,s22687 +リリィ・アルト,水瀬 心春,0.999343,s12714 +李_昊天,寺島 拓篤,0.998052,s63 +海音_翠,夏吉 ゆうこ,0.997410,s23782 +久遠_透,三条 リカ,0.997020,s6914 +エリオル,空賀 花,0.996070,s15476 +白波瀬_和香,朋永 真季,0.994162,s284 +春日_ひまり,夏乃 うめ,0.993775,s26233 +有馬_慎一郎,西野 真人,0.992070,s1850 +天咲_りるな,首藤 志奈,0.988392,s20736 +天神屋敷_琥珀,田中 涼子,0.984846,s6 +アナスタシア,武田 華,0.980664,s3716 +久世_凛,阿佐ヶ谷方南,0.980521,s15952 +ヴィヴィアン,平野 有紗,0.978187,s4474 +ユノ・アーシェ,長谷川 育美,0.974695,s14378 +ベティ母さん,藤森 ゆき奈,0.972181,s280 +柴_颯真,高橋 伸也,0.954360,s1392 +野本_藍一郎,有村 祥,0.948856,s4191 +マーピン・ティンカー,泰 勇気,0.940754,s1124 +蘭華,仙台 エリ,0.935161,s195 +深景,立花 慎之介,0.934624,s55 +ルチカ,平野 有紗,0.922183,s4474 +エリカ・ヴァルトハイム,小林 眞紀,0.914899,s279 +ボルボン,徳本 英一郎,0.906141,s2124 +久咲_悠仁,柿原 徹也,0.904215,s80 +淵,善財 達也,0.884198,s19762 +ヴァルガン,北山 恭祐,0.826851,s5570 +燐灯,又吉 愛,0.822086,s1646 +高槻_リコ,木村 千咲,0.768582,s29086 +鴫野_叶,平山 縁,0.764985,s285 +サンタクロース,一条 和矢,0.758496,s256 +燻_秋雄,樹志 一考,0.685384,s27221 +淡島_澄,又吉 愛,0.671810,s1646 +猫田_夕眞,内田 雄馬,0.624937,s11606 +ラピス,山口 絵,0.613128,s809 +ナッポ,ミルノ 純,0.589037,s564 +藤崎_直人,竹本 英史,0.559996,s236 +ハオラン,吉野 一平,0.531722,s8073 +ラファエル・グリモワール,北野 大地,0.495931,s13394 +桃瀬_ひなた,飯沼 南実,0.444649,s36933 +守谷_こはね,夜長桜,0.392793,s18157 +ベン・カーター,真殿 光昭,0.322826,s887 +鴻ノ宮_清雅,,0.000000, diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/1.ogg" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/1.ogg" new file mode 100644 index 0000000000000000000000000000000000000000..d78612418a715c7a3a564d837e3961eb2a1c55bc --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/1.ogg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f2ed95f27f8676158d527c3f573cfb1be2c6c0b74ef9f6e86302f4a346477b +size 439671 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/1.opus" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a3bc57ae8899945b63f89f97409e49e815e69e04 --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e858d71a2f550a879fa99d400cee7981c52e8de329af95b6c3f994196b3f6039 +size 581923 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/2.ogg" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/2.ogg" new file mode 100644 index 0000000000000000000000000000000000000000..e4f36bf6be1a973d9c637e0040a2730994efee7c --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/2.ogg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ec1ad2cd9332afd40805bf64cf900c97e9dca9b685278f9a5e9114ce027337 +size 73909 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/2.opus" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..21e9ea8ed7b19840527cee7f42582b187445b972 --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c92dae9737576aa7a0186428db5bb0eb4243addd36988cdc1c0f11c297cb13d +size 94215 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/3.ogg" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/3.ogg" new file mode 100644 index 0000000000000000000000000000000000000000..5ea1e2d65e4b9244e827a38e17a967462d8997b5 --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/3.ogg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a93b2abea4ab23e86daf24406204bf5bd2071c753ba6546af5b8f913aab55de +size 640131 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/3.opus" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dd6edb8e7daca9273f1f33bfa16a5cda3814c25f --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a27c1e98ce5a8186af54dc19e0a12b1c069a366283aa4c341c6c7afb120ec8 +size 838436 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/4.ogg" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/4.ogg" new file mode 100644 index 0000000000000000000000000000000000000000..75404f3605cea8e43f838467f47b3615477b5252 --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/4.ogg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae62e01b2e6d3a1645cba92af6b980e0b411ec3652eaa06fa54a5b437f911038 +size 149656 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/4.opus" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d43f2e75ed59c0416c117a254f2eac55419801ef --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf97684a95bf282497d2cba9c41186963c4e0d3cd376287720b6519a7f2a23fe +size 192945 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/1.opus" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e143e6dfa0c8ad5483ec71b0f359dda8ae47807e --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea55efaae8b55cbf94c506d601aaddfa441c182f4d0d50a3d57d2d6c71c27548 +size 124599 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/1.wav" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/1.wav" new file mode 100644 index 0000000000000000000000000000000000000000..9df0ef07ebf5888d77d6275f3e92a42652c20741 --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/1.wav" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa05e3dc7757df793998518de568f0c0181dc40afa36e4568d569341cd55b861 +size 906906 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/2.opus" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5e9a0f07f035564960cc299971d9e796ebf864d2 --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f143f8da10e5d0593961c1446c65ae796a33e29291b12dd1ffbea4eadb6af9 +size 92865 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/2.wav" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/2.wav" new file mode 100644 index 0000000000000000000000000000000000000000..8dd689d99494d2f8187dd36dec2c1fd1b77d939f --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/2.wav" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b95a097838ce60b1a29fbedb781647694132c3af6dadc7e0573f8f1e62541a1 +size 663674 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/3.opus" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d2f469e8116b1b53852372d26fc17d5eba9b56c6 --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d592963ad8dbd2b9ac5e3adb3727909a71cee3b3ba731f51348d138bd32e7a9 +size 145831 diff --git "a/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/3.wav" "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/3.wav" new file mode 100644 index 0000000000000000000000000000000000000000..a8977437896cecc8b1cb06e6236896c8673bf2de --- /dev/null +++ "b/samples/\343\201\202\343\201\232\343\201\277\343\203\273\343\203\255\343\202\274\343\203\203\343\202\277\343\203\273\351\207\216\350\214\250/tts/3.wav" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c87e7312cdb3e412f672e94871975050669022a011b927d6ef4f624232b0e0b +size 1019546 diff --git "a/samples/\343\201\275\343\201\256/guess/1.opus" "b/samples/\343\201\275\343\201\256/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6979b65028c34dbd18161492a4f9cf7d36ba7ecd --- /dev/null +++ "b/samples/\343\201\275\343\201\256/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556ae84c8209ff61160314b69d415dcc83fce09984a1f15693b56a8d8984a327 +size 159186 diff --git "a/samples/\343\201\275\343\201\256/guess/2.opus" "b/samples/\343\201\275\343\201\256/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3b45bd600c4ebff0e2d7b224f6190fe26d01eea9 --- /dev/null +++ "b/samples/\343\201\275\343\201\256/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cb9f22011cc26cff622949f1ca8aaf88d6bddcac1de2366efd2cebbb407136 +size 70100 diff --git "a/samples/\343\201\275\343\201\256/guess/3.opus" "b/samples/\343\201\275\343\201\256/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..beb5e0a518f95b968ba3fa2bdd5358816cdb3b67 --- /dev/null +++ "b/samples/\343\201\275\343\201\256/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a142da93fe08593cb5d95efff92deab95fe10ea328d2930a95a9eb4496e1a418 +size 143021 diff --git "a/samples/\343\201\275\343\201\256/guess/4.opus" "b/samples/\343\201\275\343\201\256/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8483234a6df7a58544aba6be5452375e63162832 --- /dev/null +++ "b/samples/\343\201\275\343\201\256/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ae95ba2e29e47e0567c2a52572daf6f1b1af0688e5ad0837bc3c48b9fceb65 +size 81420 diff --git "a/samples/\343\201\275\343\201\256/guess/5.opus" "b/samples/\343\201\275\343\201\256/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2128458bf82819997243e1787842197b870cedf0 --- /dev/null +++ "b/samples/\343\201\275\343\201\256/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05dcc40b7dd48545f334b7bcefc01d60e41276e27494d0eec4a3dd830bf42c83 +size 58953 diff --git "a/samples/\343\201\275\343\201\256/tts/1.opus" "b/samples/\343\201\275\343\201\256/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cb9b797683c8f307ad39dbe75611628852e2f58c --- /dev/null +++ "b/samples/\343\201\275\343\201\256/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b7cdd3a4116ae2826493c88717b00296c48fd7f7614de989bb202ae3482fc3 +size 176646 diff --git "a/samples/\343\201\275\343\201\256/tts/2.opus" "b/samples/\343\201\275\343\201\256/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5e69175c42288b3c10836ff0658cf6e7b668cb9b --- /dev/null +++ "b/samples/\343\201\275\343\201\256/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb71d0155b0de6cd5917e8ad9f70efc1ae6078139f20452031a2010371e9129 +size 137044 diff --git "a/samples/\343\201\275\343\201\256/tts/3.opus" "b/samples/\343\201\275\343\201\256/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..71d708c5c52632a8f8e1bd236736ed83140a14ba --- /dev/null +++ "b/samples/\343\201\275\343\201\256/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64623db6d558d24405c99a6f3b5632aa6cdc5cbd92c3170f9fbda5ac166b582 +size 210358 diff --git "a/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/1.opus" "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..24b84e505b4742b27ec2a30e4946f27961e7f5cb --- /dev/null +++ "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd9a7042a4328eafadea96e54cf1cea1b37b8df2ac8eb99fc4e188847d39e9b +size 55695 diff --git "a/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/2.opus" "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3f9f5a6ecb613a924136c12912086b0bb68dbd2f --- /dev/null +++ "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dfc979350d50090aa1ebbf19953f440990b832b055e5db2d04b2be283a62bae +size 92531 diff --git "a/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/3.opus" "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..61468246df092ab41ac8d29b7dd87e9c1d40582b --- /dev/null +++ "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ed0c4af0d3934083ccf0c3a3b9a181a3a875a7d246e81d7a32d9cc07a5e3de +size 100731 diff --git "a/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/4.opus" "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..801c59dfef890a83da19bbb138be120f8509395d --- /dev/null +++ "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3badd01fa79850db6f0b7426903954532f8e163a5f8e4288fb085246cf069004 +size 73687 diff --git "a/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/1.opus" "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..64d8a34a2caa737fc45bd3275f444358a8bd70a4 --- /dev/null +++ "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81503389f1760c3a72cfe05e030c74ed48c3028c57ab618f0ab8acdca9c75c70 +size 123482 diff --git "a/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/2.opus" "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f056402e231c182dfc267052b4ccd31f1b698aa1 --- /dev/null +++ "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b6ec007683a41cf97ce57ba133c297e70db8e8540d221b1b3ef510d54961cc +size 101606 diff --git "a/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/3.opus" "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c26fdf8f6766eab7dfe535f37a128cab79889b07 --- /dev/null +++ "b/samples/\343\202\242\343\203\212\343\202\271\343\202\277\343\202\267\343\202\242/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01d7dc359193861bbefbe326b2a7951a303aa31dadba07819084947a129d9e0 +size 152658 diff --git "a/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/1.opus" "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..733c3541f54a8e8042565bacca410295d277245c --- /dev/null +++ "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:355b280b576572bb28bf349b86b5400b01cc78b8222a60d5bc4101e73ed2f72b +size 105053 diff --git "a/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/2.opus" "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..36fd89f4cdfdc2727d4a7b44e3c8beea27c079f7 --- /dev/null +++ "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d10719d1bd14c65c662559df8102ed2d97c3ab43cf4b1ee1a17e72ea03bbef +size 104587 diff --git "a/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/3.opus" "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cbf6ac4e5a25fb3664a135f5194c8ae18ca60109 --- /dev/null +++ "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d893bdfdce32d52be75255fa6ff4142e9c585525e1a5af6f01f4c0971ebef7 +size 142127 diff --git "a/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/4.opus" "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9734e90ffe6fa29ea28d97a869e871dd3c2733b5 --- /dev/null +++ "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676223b0eb9a8dd9dc4f4794e433f8ca4db162b4e1e5c07353009f3aa667b58c +size 63321 diff --git "a/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/1.opus" "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bc82debb81573856336c907abf0dcd519aeb461f --- /dev/null +++ "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516fd8abf28d2756cbc3c27247b37232565a5c42576814f8b4a04c2e2d53d10a +size 123614 diff --git "a/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/2.opus" "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0bf680f6a0fec686f202dd1f56b4a94be5a42ce9 --- /dev/null +++ "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e82a1bb88812e4b79ceb17c5272f6861aad57973fd03a4bfac92b78388904d8 +size 90839 diff --git "a/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/3.opus" "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..db5ad36c38b0f2302ead244d7213ebfb388ad501 --- /dev/null +++ "b/samples/\343\202\244\343\203\252\343\203\244\343\203\273\343\202\253\343\203\254\343\203\263\343\203\210/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a029e659067c8e40068746929f9aba2d15908ffa5b0ad2ee51b64641e0ed6b +size 141235 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/1.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..219602f5c118f0aa15d80acaa2dad9c5a944def3 --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4b24538664add3a9c465c9ab6f3e7987925708edc0eeda24b847ceb36d52f4 +size 83426 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/2.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b54816bdff462a11369ae79c44dcb28a6a5afcd6 --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3582720d1b91d2c858ff74c722dd6817802a8151caa348e210fca3de323c55 +size 78518 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/3.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..edf68151178d559ff8f5c0e380b8f7a83dc776d4 --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0513f2a7169d439d2227f5371ee46f91a2ef8cb7fe0c524abdf51e9081aa704 +size 83807 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/4.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..35acd9d9e284fdf3b6c86a5a5b81cc679053ecc4 --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298e9fbec65b21787ba731c4d01eaf019dd34c3e5fecd8befb8a3eb078938961 +size 103048 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/5.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b50784e64b3fe43a60818afa1ae609a755d48978 --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99776c2cba8f3556f04578b51375d6625edbabe4d3e43772a2ef40e9f0d6b833 +size 64362 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/1.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..20da641d29f4e8bfa93645a7cf26a62d2c8b7db3 --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95a8e7bb1bfabeb72530dbddbee08a48f186dbb8f1c19f5e313f93a53e00f6b +size 131596 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/2.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c8e6ec92e8cbc9eeaef462915ea9b448a373fbdf --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1edfe932a18f794de830f702bc1c1ea2e13ed52a641973533ce3edd425a538 +size 98081 diff --git "a/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/3.opus" "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9966192f6749290986df1992d59a6f264dbd3c1b --- /dev/null +++ "b/samples/\343\202\244\343\203\253\343\203\237\343\203\253/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222db99a367733f46cbcfe9eb32640a4854aeeb0219a7a871bff469cfff1530d +size 152932 diff --git "a/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/1.opus" "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8027f1d062b1fdb8cf41a5a63f1a5695e87e759c --- /dev/null +++ "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44728b39e14e89af1dc44e6cca108e286c00d33c87eaf008fb9eb8b3a6e31a4 +size 90420 diff --git "a/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/2.opus" "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c7a565f8326b461170ebfbdf909a2a8f2b84930a --- /dev/null +++ "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febefed760c70ff613b8d163b184fa0fe97e9e809135df0243a376189802ecff +size 56303 diff --git "a/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/3.opus" "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..552fc4b081c11af5aa2170a75d4a97fc0d454734 --- /dev/null +++ "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a50951d33bf1261bfc8f653773446c8e008fbdca56776d9e14f8ae9e094a660 +size 66071 diff --git "a/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/1.opus" "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e4b9328a9021854f4d471d6d5d4e79675e9b0c85 --- /dev/null +++ "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7d83cc77c2d16f906a61d7e0b8eaf9ee038b1e802e3af0d44afa5f8dec2b49 +size 124486 diff --git "a/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/2.opus" "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b0b947dfd5c8ea769b1b6a0896e55c5388d4cb5e --- /dev/null +++ "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e613b2ff07249cb691f08915fb51b37c7c893139fb069f917b7fcd82675b72f8 +size 95853 diff --git "a/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/3.opus" "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d9a107c057d397f19cf01ef18a5dfccc27516b9a --- /dev/null +++ "b/samples/\343\202\244\343\203\254\343\203\274\343\203\215\343\203\273\343\203\211\343\203\273\343\202\242\343\203\253\343\203\241\343\203\252\343\202\242/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835fb823a40866df1de83b7ff16d8d850e354720fe56539910ddead185414169 +size 146391 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/1.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dfe44dda5eb0495716e36fc67aeb424f3ecff220 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8850cc0463141d9923ce29355e0ca324cc0469737434209ef6e699d500128d +size 114354 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/2.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..426d117940e5ee831134e4073d81f193b33e0b5a --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b0193154e9df458dc9d7ceff8b175dd88cf078f1ebcd1d292593b050cf72cf +size 97798 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/3.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5283b03deb709db998c2a89a0e26f7e0ffa21711 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3f649623200f7caffacfc36662ed23e9eab18ff2b8697541c4f2e99bd00784 +size 85318 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/4.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c62edf3f021a8dab5784cfd4902c12813b97ef9c --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb59c0c5a1334db822013351d30062663635f592e99179d25b34597d4c327d6 +size 124587 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/5.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fd7ca973666a0dd0b7e6f9d09ff48537d8d709b1 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f2518ef53a5f8c276f524da0425d6bea33ca88f013676ddcecbaca94b5eccc +size 99450 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/1.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..550eceb58989c89eb985f1c659734b1732ae68ff --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487718b18146bf2e11a12ebc6d0a343fd1bff852555faaf0a3693aff2f21cc79 +size 129651 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/2.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fede53645a0f7cf55402237a0cbc12afb8f55981 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b32880d209f1bfaf352ef2c890244e5e1a5551e5b30514a6336cf8b39e834fb8 +size 99801 diff --git "a/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/3.opus" "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f67f0fec141ccf7ced4498ac59e234cc9e9cd222 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\252\343\203\253/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8e406bbc3a7ac754e24e49b8ab8422e1f690fd27d28228b25ef72d24af2fef +size 158179 diff --git "a/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/1.opus" "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..59f207617b6df31e316844b4f0b239227e0e0c10 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef2f15d36fbdbccdaa06e466f3c982b17105ac93ffba8f5c23d74495d858bd8 +size 50813 diff --git "a/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/2.opus" "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..386314a373870376e12596af49ea466bad3e5c62 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aebdf03a38bfe71a5b314710d51d3d57c8909db2bd462542234b5f2667926898 +size 21605 diff --git "a/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/3.opus" "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f9ebc9824a1e8052a7560a36dcdd9cd2088a34be --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e0d3d43a4036f165a915cab7d3d656248978dc7a125db91c567a2552484d73e +size 77737 diff --git "a/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/1.opus" "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..918893926bd0dbdb4919c59bff7ad7fc40c83554 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bd989fdb7da65f51a75ce35b74670b737f804c1ab29cf29e11ed924b279708 +size 142603 diff --git "a/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/2.opus" "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9f25420d54d9e0cad0e937b2206c0220ca735c21 --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36021cfe4d85330e7efd57989540795568559b91ab5e4dc135b5654d3406b58 +size 105174 diff --git "a/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/3.opus" "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3d32dd7e5d1395af85f43a3ec13660f06d8a1efb --- /dev/null +++ "b/samples/\343\202\250\343\203\252\343\202\253\343\203\273\343\203\264\343\202\241\343\203\253\343\203\210\343\203\217\343\202\244\343\203\240/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058ddbc295cf43fa03ee5522b4129b2fd13413e50dfe9a12021c58651c64396f +size 157279 diff --git "a/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/1.opus" "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1864fc320159e1c0c661546aca0435c8bba919f6 --- /dev/null +++ "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7fe28b2850c438b26335739c3afa7d3c0584b393675feda7596548ec670faef +size 84617 diff --git "a/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/2.opus" "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9bb496d4d8bb62d0ccacbadcf2bc6dff4fdced87 --- /dev/null +++ "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe12f12b173cd38ede93cc9fb8b59bde177240a725da3621601d9a022409f42 +size 121728 diff --git "a/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/3.opus" "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ee03c198003c5b594314b8e41d20d1f89f1e61a0 --- /dev/null +++ "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dc87ef76e0997b35d359f185aeba6b71cb68877c87c448b069a7d5f29b2bcb +size 66810 diff --git "a/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/4.opus" "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2052812e6cdfa68df7d067c700d608d9968318b5 --- /dev/null +++ "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4198a722108cbe6dacbb1c844365e579a4b168d0a72d9ad99b2d13151ac6017 +size 76399 diff --git "a/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/1.opus" "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3a1c5eca1298470cadb888080b2820cece0ef99e --- /dev/null +++ "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908e20728e8d77058960d7174576b7a642d137c3447741f9b4609d63fae29520 +size 136075 diff --git "a/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/2.opus" "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f5d0e43661032c7099e142aa8b82a18f919bd437 --- /dev/null +++ "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcb490bdfa5a237ee37852e78ce7d829d0116004dd7044be2394c2d724f27bb +size 103014 diff --git "a/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/3.opus" "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d6dfe7ecc0bcf232949d3b480349cb9fce6b3dbe --- /dev/null +++ "b/samples/\343\202\252\343\203\252\343\203\220\343\203\274\343\203\273\343\202\270\343\202\247\343\203\274\343\203\240\343\202\272/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ebd6b0eca7ab18fac2b3fa714619ed831855b2c570f1add476e104e7fe72e5 +size 153884 diff --git "a/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/1.opus" "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2620de92a0b0cc31778512a737f692306bec78c3 --- /dev/null +++ "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9fd7d6a12060b55b9c9a36e966a2ad83c5be0988e621c5a29c7fe7c8da0ded9 +size 88250 diff --git "a/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/2.opus" "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..96f2daa6f0b0d51abf6221d9f200e099c569ad80 --- /dev/null +++ "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03c45d26cb67072af54480a553adc5ceabd8936c15b21e1bdbdb03fcc637c34d +size 212705 diff --git "a/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/3.opus" "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6049ca4b1b483d631dffccefa6216780ca25a22f --- /dev/null +++ "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aced9267e761e42a5b7b1d2a5ebd53358bfa377b9a923837de5aed558e94b454 +size 106815 diff --git "a/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/1.opus" "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a0d3735ca6bf4201c4eb609b32531973025e50c4 --- /dev/null +++ "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59706c0387eaf83a890118b5d7f40f8fe1bc44b9a6149f523b3017e20436350 +size 185789 diff --git "a/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/2.opus" "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8c9b6ee4353b10b568223984e06f2c9640867ff8 --- /dev/null +++ "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a764f758fcea7eddc82df5905832fcaad8c5fa4af2da007d51586d8a9ecd05b0 +size 135495 diff --git "a/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/3.opus" "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..275ef8486e2d141b99bcb8716f4387bcb626e350 --- /dev/null +++ "b/samples/\343\202\260\343\203\251\343\203\207\343\202\243\343\202\252\343\203\274\343\203\253\357\274\235\343\202\257\343\203\255\343\203\240\343\203\264\343\202\247\343\202\244\343\203\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655d31e021ff8b7f04d78662ac1b9e3b9f5e7f69e1992d333ff0018faa597f91 +size 199317 diff --git "a/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/1.opus" "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..02a1d7e6815b9e4f15c1d130d8c86a4c73542fe4 --- /dev/null +++ "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d796bd6e2f0c4b91435ec1ba8e9e7ba758701c53236fa85c8f806f11540a24 +size 101943 diff --git "a/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/2.opus" "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e6533d2261bf36f7021b392ee14136ef662436d2 --- /dev/null +++ "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5721b833bed98221d1000c77bb211a6c2dd563ca9c21ef341a83846141850ca9 +size 152890 diff --git "a/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/3.opus" "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ea4c76175009a3c79ee883fca5fefc2e4fca49cf --- /dev/null +++ "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1dc9fc49676a8e043ebde2eab51d7e333f61e5f52a0b38902dc643a663dd919 +size 100022 diff --git "a/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/4.opus" "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..acac32813a59a46dc7b8bc2718c5861a75e29d62 --- /dev/null +++ "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46581e6a0d2bb7bc4b95a15809d964bf74cb8225634e9f7157bd8f76d21da369 +size 84793 diff --git "a/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/1.opus" "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e29d26d4eed1d1764b0dd79826d3727fa0e0378f --- /dev/null +++ "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d27d6437bfee6dd480d7c6386bfa85f88d17b1983989fe039030dbd932db853d +size 157986 diff --git "a/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/2.opus" "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f9026b2b8f73efb9e7d8254ca82e3919e8303c73 --- /dev/null +++ "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0c0a19418edfb29d8a9785916fdb930f1e79af932c65a8306c546c1730d1c0 +size 118475 diff --git "a/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/3.opus" "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d3dd135931341f4e82feea0830e3cf8985390f55 --- /dev/null +++ "b/samples/\343\202\265\343\203\263\343\202\277\343\202\257\343\203\255\343\203\274\343\202\271/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2377d6285af02eb57cfa5f2de652f6718c4c4b8863cd480926f4a80fe2699bd2 +size 183524 diff --git "a/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/1.opus" "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..406be9cb7aa7cf2c7105513cb5faae76d011f4bc --- /dev/null +++ "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd47e1c4073ac1188e6d0ce55d27a43f526633bd82c0fbe756760f49dc5c669 +size 136103 diff --git "a/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/2.opus" "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9011d83e6f89d5c452ef0bb6e1c2042b2a67a55a --- /dev/null +++ "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:661a79563be646e0981b12f47470289ec8364de3fce6c34b9e043d1715baea83 +size 103398 diff --git "a/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/3.opus" "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bbf3762da0ff5dd3bef9951140d36aad9993b295 --- /dev/null +++ "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a22fb6d4e15d3a8eaff68f3cdfd80abbb78dadb724f34ca41d0fac0d09577f0 +size 115716 diff --git "a/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/4.opus" "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a37c8cc5c87ad3e304d11a6755d38bdc4995fa7a --- /dev/null +++ "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c33973ea6970e7afa4d7cdac6914e963510d40be788fdc20e8f02ef28234565 +size 93908 diff --git "a/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/1.opus" "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..18f9ffe0dbf952753c52e8d38190fc840985bc35 --- /dev/null +++ "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3eb5d8580380ff9b0e2f5cceb86cad75b9b8496da04bd90e92351ebc61a920a +size 158631 diff --git "a/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/2.opus" "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dc9d69097ca94d780cc327a2bf8ec79d774a088d --- /dev/null +++ "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:739d7b3acc953b3016aedf4ade31146b7c3cacdc31314a4b2f49b9f513f8c575 +size 114335 diff --git "a/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/3.opus" "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1918d714bc76c28e67ad84959d148e14e484a5cb --- /dev/null +++ "b/samples/\343\202\267\343\203\243\343\203\253\343\203\255\343\203\203\343\203\206/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc6024ef027cee61d88ab12c511d7e68212fd75788d08eefd93f9d14f0ed345 +size 183125 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/1.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5ab6b113dc05c54db9ce5b52620a263279f7f6d3 --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78838b7e9d1b3d89286b14a9292c2f3e42722981d19be4b51a44021d417e63e5 +size 181571 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/2.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b546de50b09273cc18dfed39115432e2b8ab6484 --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8c1363989c2e68f97813fdce0937ddbfbbd7feafd9f5b96a90b6fcc7779ed1 +size 196141 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/3.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c632d380d3c98278291158cf958bcfbccc7b9c5f --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9273c84806794aaa2a1f6f07a32903cf83a6d7b8b0207b6c8c034613ac044299 +size 210230 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/4.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..483aa78703489017271bebf1785e68a9bd32776f --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42c86d0c6e6472a3adec9c2a26c5bd86676df54d9ca47d234dd47003c48975f +size 113135 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/5.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ebb51635f92ae0ceb63c45abc2d81972c1ca7a42 --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993274473be026e1b4e54cfa2795483e0b43adea6c81b298857026f4d533bcf9 +size 209169 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/1.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b8b02a504276305eb8d881481047e7151757d3ff --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7245d2addd72fccb707af9c117f5793122e85087ef5f3ffb634d72646594ca73 +size 153076 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/2.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9dfd305628d96199eed952b58109cc8564545ba4 --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0655b8af1935edb74a5cca63149f889eb81667a69319b3b5edb25431e397d8e +size 114654 diff --git "a/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/3.opus" "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..da28cd256fff8017594259591207f1f34910b7ac --- /dev/null +++ "b/samples/\343\202\267\343\203\245\343\203\215\343\203\274\343\203\273\343\203\254\343\202\252\343\203\221\343\203\274\343\203\200/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56877ad2b6c9e9c67b94f6a99e1f057396d5c5bbb20727f0e7951c02cf9de2b +size 173794 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/1.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f2a09acbba461faf132d3741da3031fcf621011d --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db9d212d85a9036d0e766c81d4e92baa9c99970a307d38fb5e46922693ffe5c +size 119716 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/2.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..17448d9272b4b163c11d9347ba45abc331666830 --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaa6a3eb51580a16ca74eb1136aa542a844ca5be06cfd8b0dc072079e148189f +size 86154 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/3.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2079bc8a5b9e801d02e4fe0ed6c5ce4ddbb86090 --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ee733229d0e6b8fe46b5bf2d7ec0668c75e0a38d8a849c5b738f9db0c0ca81 +size 75168 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/4.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..93181f5dd61405fd639ac02793471113bbe3eac8 --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c907f47d4f1ef22a8fe9367749ef1b0c2170475aa30aa4b46bbc677f34ccfd8d +size 54278 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/5.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8ac823b62d8829cc1a69ccfd6f57b47883d1840a --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d886fa5f0e6381bc089b0c533c055b4efccee885894a19e52b58ed6372bb33d6 +size 137324 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/6.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/6.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ddd186544bc0debe50ea39075b8c9e5425e0b948 --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/guess/6.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c1fd78640b5e0a22f89eef58923b4ebaa8fc3af96773598c8f6b92cdddcce8f +size 76726 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/1.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..78b560e38c4a6c5c97aebc2e71bb0e18d0c32622 --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0cc4d707163723b34d3f204af7d394d4941274acfa7aaf7335c0ee75990eec1 +size 146158 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/2.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0fb02064fddfa72faf081465ffba261c575b07f9 --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2d772c046cffd2f4eb23cb48e5e674746df6ac062d82cfc9092017e3e1617d +size 107880 diff --git "a/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/3.opus" "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..994f71b13ad3d4ab832ae9c33947c97fc4ca7fc9 --- /dev/null +++ "b/samples/\343\202\267\343\203\253\343\203\225\343\202\247\343\203\212/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc878b41d501276fd2a089a5f6f21660e3548f506ef6fe7854bbfbfb20523c9 +size 167358 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/1.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b7bc16164e501d21207a6f3f483bfcecf3ab4d39 --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a69786c0997b90ef7fc52166bb7532f119c6f8f23de654e871bca8cc7392fc +size 176541 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/2.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ba50f9814b818bf01972744b64edd02b3141bdcc --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb078d8ccb29aef26171e87d2224a2881edd9f78bad7d2d0afc4d28fc9bb691 +size 232656 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/3.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b7aafb79d74a6ce0a280c8e5b9eb7e5187c92be0 --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382a7bbf116d8343022eb0d113a81f976a16d8e5c619f3de8994cd60384337fb +size 264814 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/4.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3c4331b8d64a6d5cec9cb56aa970cd6b3a8158c1 --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c435c9a6a9facbeff31bf0a1b95bacacb370b87b0136c4dfdfa6dce11b84d4ff +size 139821 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/5.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b55a1f17cf11fefbb13087b69659a34288ec321c --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8033d51931b973c3c3b526d4505f6531a2f277b6e1ba99802135dc9f1f870c40 +size 146168 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/1.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1889a75acdbb24e74eb2aa436fec64acdd7e4fbe --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86a97c79eb2ef6d5a64de71276dbf526d297212bfda9a0a6935dc842eae1899 +size 153849 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/2.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6aea0e28d6e9adaa6f18dda6a99ea65b482d3ca7 --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86722345df779ed2766308362d131886b428ccc4e9ce1a99a6a75be35169419f +size 113360 diff --git "a/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/3.opus" "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..22d9cce81d9744d78604769057b5ab72b0ddf69c --- /dev/null +++ "b/samples/\343\202\270\343\203\243\343\203\212\343\203\274\343\203\225/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e95c4d2bfe6b97865b6264940244febf44ffb65592e311a5b5b447bc22678b2a +size 173342 diff --git "a/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/1.opus" "b/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..60deb7d2e7df18e91436fc9768181270117ae54c --- /dev/null +++ "b/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbbcf5d1bf1bc2a13ead17c1b493cc9224d948f056ca85bdf43fc1aec711b76 +size 125147 diff --git "a/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/2.opus" "b/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d38e4f54c5b65d309156c3cc421da28c52fb663d --- /dev/null +++ "b/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fdbd5447e0cb1e0f9d4e04581add04cc602378edd1bc52506a9674a75e5edae +size 94784 diff --git "a/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/3.opus" "b/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..931307bf2bc0ba05f709b49727572e0096e7c55c --- /dev/null +++ "b/samples/\343\202\273\343\203\211\343\203\252\343\203\203\343\202\257\343\203\273E\343\203\273\343\202\246\343\202\243\343\203\203\343\203\210\343\203\242\343\202\242/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46d36f61b5aca7796d760aeafd9e03e66ec877978e378af18c281052cecf78a +size 141321 diff --git "a/samples/\343\202\273\343\203\220\343\202\271/guess/1.opus" "b/samples/\343\202\273\343\203\220\343\202\271/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1b41f3a4e54257f812f69fb8d4bd233e6e1c10b9 --- /dev/null +++ "b/samples/\343\202\273\343\203\220\343\202\271/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9080885ea1527a74674b13dcbe10481bbf80133d6e7ec823ca3114d1c4f8f19 +size 128239 diff --git "a/samples/\343\202\273\343\203\220\343\202\271/guess/2.opus" "b/samples/\343\202\273\343\203\220\343\202\271/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a7112d4a12c3e3f45e29d1ee3e671482bd2b83f6 --- /dev/null +++ "b/samples/\343\202\273\343\203\220\343\202\271/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78840072cf7e35d3ffa06f38f3560f3f2c222626ac0089950972822708ae9e15 +size 104008 diff --git "a/samples/\343\202\273\343\203\220\343\202\271/guess/3.opus" "b/samples/\343\202\273\343\203\220\343\202\271/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..582ebe95b2f31c3b3893b9056e99a654a6de1cfb --- /dev/null +++ "b/samples/\343\202\273\343\203\220\343\202\271/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868e6cbc4e2c3b0abe43f5ded54008a66593af7a89a20b9bf320d016da893322 +size 133198 diff --git "a/samples/\343\202\273\343\203\220\343\202\271/guess/4.opus" "b/samples/\343\202\273\343\203\220\343\202\271/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6ce8a97ef97e2cddcd2fc9b0669c820cb06f34c2 --- /dev/null +++ "b/samples/\343\202\273\343\203\220\343\202\271/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469527e17ce7044f945148f5e7cb8482cfbe2b41a9352c64e0789a6d5dad1dff +size 95516 diff --git "a/samples/\343\202\273\343\203\220\343\202\271/tts/1.opus" "b/samples/\343\202\273\343\203\220\343\202\271/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f788989e384963d5c12b251ebaa001155f5fdbdf --- /dev/null +++ "b/samples/\343\202\273\343\203\220\343\202\271/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b9ca49ca0d4d9c5f47e67cbf745a54b5e7463e9469680417082ef799cfc050 +size 139522 diff --git "a/samples/\343\202\273\343\203\220\343\202\271/tts/2.opus" "b/samples/\343\202\273\343\203\220\343\202\271/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..224255d2c7b2c18b9439a711fc8d6784dd07fd55 --- /dev/null +++ "b/samples/\343\202\273\343\203\220\343\202\271/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e07700ff5b9ba8608696795abf97b2bc320c5e02efe428b8cc4c0c42ee025d +size 103180 diff --git "a/samples/\343\202\273\343\203\220\343\202\271/tts/3.opus" "b/samples/\343\202\273\343\203\220\343\202\271/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..88afedd05745facab7c5ec7f5ee5e38c95930294 --- /dev/null +++ "b/samples/\343\202\273\343\203\220\343\202\271/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2620c65cba73010be9ad1ab3468a89c829955067618ab6a913100e61b8239b +size 155905 diff --git "a/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/1.opus" "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b1bd363853892948a8cea1b1230048e998a39e3f --- /dev/null +++ "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f19389ee73c5c37ffb0ede1301d989d6d6437528eded6bbc2e11c6f3399de22 +size 93526 diff --git "a/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/2.opus" "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e04181abce32887df683018efc3d90b599653cd4 --- /dev/null +++ "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388c1968185f93dd0e9e2df9eb6ede73408d2ab305fa687eb30c3e4a1218cdb0 +size 98176 diff --git "a/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/3.opus" "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c8190eac995b15469a7c84bd56a2f87dd0d2add4 --- /dev/null +++ "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83da05fbe445bdddb73111fe7434fcbd7a0680c9430d18dc1d73beab17928ca8 +size 96144 diff --git "a/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/4.opus" "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1cdef7d7b0ad8c9a462be403aa4bce9b198b9671 --- /dev/null +++ "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51906d024c0ad879ced7b43f3e8ab94334bb9a1c34d9b46221a9bacb28e24ebd +size 108500 diff --git "a/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/1.opus" "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..22efc77bb4d0ef5d2c03011280c268680a715666 --- /dev/null +++ "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9079ab74999aea4853fe9fab4ffe91024f4c26f1e8d6aed69c453854a0a45aeb +size 143061 diff --git "a/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/2.opus" "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..57f3418776ba59ab1342baa067aba27a1cd17c62 --- /dev/null +++ "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f954364d10270116b913181df2149c6142568cbf61a86bbe7f39499b570560 +size 105852 diff --git "a/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/3.opus" "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e5dadb0186d4dd41e99ef31e00dc53894ef8862f --- /dev/null +++ "b/samples/\343\202\275\343\203\253\343\202\267\343\203\243\343\203\273\343\202\275\343\203\274\343\203\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d987213217494ea2ec30a7e3da64d2bc8656f054ecf6da559d111ab7c9e3065 +size 162924 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/guess/1.opus" "b/samples/\343\202\277\343\203\253\343\203\210/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a85833217567bba3202505be5e870456887802da --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80106062dee4d89326e2197fae6d5c31c3245490577f48532b106803ff21c74b +size 92416 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/guess/2.opus" "b/samples/\343\202\277\343\203\253\343\203\210/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f4bb7fc1dece281380c2837a34704f70e99f17dc --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b414e0ba7274ed09140db2a34e112c921c3c75a5a8bb4aab838b1c4faccb74ae +size 95471 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/guess/3.opus" "b/samples/\343\202\277\343\203\253\343\203\210/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9e21b996d35529bb4adb556a4bc9a98d4c45d36a --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ac165308f184234a601c320beb06292f75e5e9258293a41dcb58ef624edf0e +size 105315 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/guess/4.opus" "b/samples/\343\202\277\343\203\253\343\203\210/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1e74dabbe5bff19776bec06963addbd01db449f9 --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064004da9dc8bf935912bebd02430882143499895ef72b1b4598b91aa5eae4d4 +size 56670 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/guess/5.opus" "b/samples/\343\202\277\343\203\253\343\203\210/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c9ec811a37ddf1c1b5300e8c171a8f9d989f180e --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad213bb9d14ab7db3d15d793d48509c96af70a31f113588476ccfca5fdfd217b +size 108524 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/tts/1.opus" "b/samples/\343\202\277\343\203\253\343\203\210/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1c9fc61ec6f060e0424d6d45326aeed09817c378 --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b899e2b08348d99bbe64648e8547c84887f3955bf2880609703bb7412abbed0 +size 132401 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/tts/2.opus" "b/samples/\343\202\277\343\203\253\343\203\210/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..12264eeb239b498c1a531d6de8423bae7bef3f5e --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963257320450918cc71c718b92c75b8874984e83591f06534b38eccafc51c942 +size 97303 diff --git "a/samples/\343\202\277\343\203\253\343\203\210/tts/3.opus" "b/samples/\343\202\277\343\203\253\343\203\210/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c06542848e4d4560ef593e262e8e28679684c95a --- /dev/null +++ "b/samples/\343\202\277\343\203\253\343\203\210/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7a7c87ac0b07bfdf8c6156f2a88757a69245a987da0c4baeece2e1404baae0 +size 148205 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/1.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..361445fba1ee69f893de5ce1490a2eadb7cb6a17 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1664be58b199cbd7cdecdb6fe16a3da2701fba09b55aaabf0279f8b2252fb7a +size 109831 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/2.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1dba6372ffa130cf45b491218d0d51cedea4e9a7 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a470422c88841f4af1a7c218ff4c47eb9b68e347f56bfaa156012ad5a0b5d9a +size 138000 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/3.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..72a86e8c5234f44b21d4928f80ab63a62e0910c7 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5341ffeaa864749c8e516abd8e365c64de6353773f686f245dec8a2c64f17a63 +size 100576 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/4.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3cf7b0e742839618cb6e21a77324bc4786d63a35 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fe6c3d1ab9d9d4323c8e2d595fd1589cd4800d0d95024c93c31222923e2fe1 +size 175552 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/5.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2af5bce6c074ab48c106b01c3bfa34c6519406a1 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2ad85983766e5bcdeb2e6f14be0d4813d40309506e8f297bdbb94d92be6e97 +size 95356 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/1.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f96f135034fa499adcb726831de2ebb5d54a7bf3 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c4f4cc09e3eee828b64458ec553030f949d4b5dc466aae9cfd5409a2f956f7 +size 128430 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/2.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..54205214d714655a81f6ad5b0b426fa308bd3f56 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5676b863414a3811298236f68ae4fe3a401a30aec1ab118668c12031d19ad66 +size 95881 diff --git "a/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/3.opus" "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..818a602a351473dced559c8a4ba3ec5bea27d79d --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\202\250\343\203\252\343\202\252\343\203\263\343\203\273\343\203\264\343\202\241\343\203\253\343\203\207\343\202\243\343\202\250\343\203\253\343\203\273\343\202\260\343\203\254\343\202\244\343\202\271\343\203\225\343\202\251\343\203\274\343\203\211/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9896e436bca1a9287cbe7c328ad4e910542d94725335694c031dff4a8cf64c5 +size 154578 diff --git "a/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/1.opus" "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3aa9b9a1f386a9559fce0f7137edb5bebc2de5ad --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7988d3cf3a8548d10474dbf6775bafaee490cc731a8bd4db55034550dd853c8d +size 55479 diff --git "a/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/2.opus" "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..18750df83b1648fc31556e4199931f5b494c5c40 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5bb9a363044c39fbec6dd9e4d45d11dfbddba465591479289353a004e344bb +size 82306 diff --git "a/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/3.opus" "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..91a90abab08e6af14ce15d760c131471d46b9517 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0990d949801d89c8ad1eccb1226c1e5e59d8d3012b9e5a84e1a7d075b4f480 +size 40563 diff --git "a/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/1.opus" "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c8b801e090ab4fa6a76edf39ae8b531700e66d4c --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5219059774ccec26127fb1aa489b530b5eee24241bc16446404864ac002330f1 +size 155014 diff --git "a/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/2.opus" "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8fa329ac1e7649ba8b1f932d153a3cf4ba8a7658 --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1eb069312cadc8340506f3188d240157a17487b45788cff93980c0b777508a +size 119078 diff --git "a/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/3.opus" "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bcd539fa8da0e4c1eba1d88a297864dfe64cf3de --- /dev/null +++ "b/samples/\343\203\206\343\202\243\343\203\213\343\203\274/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1490ab13d144bf52ee23b4dddc6641a1b32dbf9eaaec54c9aa71e0170a7ab00e +size 177846 diff --git "a/samples/\343\203\212\343\203\203\343\203\235/guess/1.opus" "b/samples/\343\203\212\343\203\203\343\203\235/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0aa6a0e08dce5287dda76bf2ecb2c6590ec9b3e4 --- /dev/null +++ "b/samples/\343\203\212\343\203\203\343\203\235/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e877e9af4fcd25e79fcb81e494cc4c754bd6d5f30e4b07494dea6165676006 +size 61312 diff --git "a/samples/\343\203\212\343\203\203\343\203\235/guess/2.opus" "b/samples/\343\203\212\343\203\203\343\203\235/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a84fdec4f0912f2f2f262b6eb9b1eac3c28433eb --- /dev/null +++ "b/samples/\343\203\212\343\203\203\343\203\235/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ddd7669ade2b051bcf3ba0a9bdaf820b6e5f46e2e64f3064edfbaa398277d77 +size 144815 diff --git "a/samples/\343\203\212\343\203\203\343\203\235/guess/3.opus" "b/samples/\343\203\212\343\203\203\343\203\235/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..be04cf12b87ea129da0affdb60d3a5a09dcf0b8a --- /dev/null +++ "b/samples/\343\203\212\343\203\203\343\203\235/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf681e6e3d0d620d2c326a56992d3ddf70c760d40481d0b17d68901c4ba37dc +size 42046 diff --git "a/samples/\343\203\212\343\203\203\343\203\235/tts/1.opus" "b/samples/\343\203\212\343\203\203\343\203\235/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8180f83368a7f045ff4898c9e747a16518c923d1 --- /dev/null +++ "b/samples/\343\203\212\343\203\203\343\203\235/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaa11d5a5bfae979a418d5a2560c9078c620be4ae0215827740649f49ea3db48 +size 121240 diff --git "a/samples/\343\203\212\343\203\203\343\203\235/tts/2.opus" "b/samples/\343\203\212\343\203\203\343\203\235/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2e264d7fde0107533eac9bca7d2c0cbc76a963bd --- /dev/null +++ "b/samples/\343\203\212\343\203\203\343\203\235/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961c1fe7908415580805596309d9875451395a90b74ab2ec6c3ad6c023c36b6c +size 95583 diff --git "a/samples/\343\203\212\343\203\203\343\203\235/tts/3.opus" "b/samples/\343\203\212\343\203\203\343\203\235/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c19e4c0ccb2589b4f04e8bd424ad20d29c9ef6c0 --- /dev/null +++ "b/samples/\343\203\212\343\203\203\343\203\235/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f42a1a76c8abe7d14ea3216f9bc904a55f8a857ae9a388d8eb3cd73ec6d3131 +size 147222 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/guess/1.opus" "b/samples/\343\203\216\343\202\250\343\203\251/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..62b358ce7370e3a8ab3ec0a5d38d22fdb550fe35 --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1118b6e2963fc17bbaf3fc1eb84d73be1161f8254073395153c2b67d4086a +size 109305 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/guess/2.opus" "b/samples/\343\203\216\343\202\250\343\203\251/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1a91ad63392331d2be60c96247a64742ecdc0777 --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c11c9e4038463fdeb6f3fb4c1ce19f38b30199c89b341aaeab70ab182c3fb57 +size 86077 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/guess/3.opus" "b/samples/\343\203\216\343\202\250\343\203\251/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f3b08e7bdf7870adca4ecf23787f298b855d5d6c --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf98042d017172f7bcb34a23bf36f971c83ad7112a6358dc698cf5d256c5d84a +size 129652 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/guess/4.opus" "b/samples/\343\203\216\343\202\250\343\203\251/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7300c950537b2a377606b2176aa5a7948f633cbb --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa1775305fedc154ca6be762cfd7d099b9cc698bda041fcd4a2ffe61520bfc4 +size 54576 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/guess/5.opus" "b/samples/\343\203\216\343\202\250\343\203\251/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..17ce363384a5a147d0829f810e12b71838238c20 --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0608d0dcb3d18d0b61c00e96879c3bd7215ff3309cae29eef99e0b212504bc09 +size 61905 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/tts/1.opus" "b/samples/\343\203\216\343\202\250\343\203\251/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1f1929c81057d91903f371d9ec9a91f0f06d7ce6 --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b574b9b6dc4c9ae3cca32560dd764226509e37fbf302428b7a1ff4662dacce +size 147594 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/tts/2.opus" "b/samples/\343\203\216\343\202\250\343\203\251/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4d3a4454910697da0b4621b9cf9224e372170e28 --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefde6021dd29aa704bbfa6c27c66d037401f970c096d5011d79fa799d907fee +size 112635 diff --git "a/samples/\343\203\216\343\202\250\343\203\251/tts/3.opus" "b/samples/\343\203\216\343\202\250\343\203\251/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e331fd503310f53eb2573fe671e43f45ee1271f3 --- /dev/null +++ "b/samples/\343\203\216\343\202\250\343\203\251/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2743ab80ab83c56aa420e70109c35ffcdf5183f243c588e483eab2f02065ac +size 169660 diff --git "a/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/1.opus" "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..39935ed708efd303566f57b4711482f02d0d4a5a --- /dev/null +++ "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e30fb2d45a8b8de003e23197392899d0f99d934d2a9d39714396db3eb38074 +size 80591 diff --git "a/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/2.opus" "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..85686090ba851ff7d3e762b7fe9564144b743c63 --- /dev/null +++ "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa0e0b59689ad6a0d84d446284d1289b6e29eea38349ba7459424cf109cf90a +size 78295 diff --git "a/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/3.opus" "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..612f0bca05b657760ce77c3e80eb6cf24478a09f --- /dev/null +++ "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f35d23b301e6e91608e379012b4dc81e7e53ed990c853c4ad901ab1535c613 +size 93957 diff --git "a/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/1.opus" "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..da0e7db70b2d690d27b57559c04932a75f21146f --- /dev/null +++ "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ed012efc8b98af66c59f32179df9dfd8b441af50c44609b7d943ff8b1f12df +size 113835 diff --git "a/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/2.opus" "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d66080ce12f507cf71db99d1cab94df392e77399 --- /dev/null +++ "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e64e3aa3656b91def8a764c8e75a7678d6d046ec3538e8f99955327a0ebed4c +size 85142 diff --git "a/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/3.opus" "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..489b387377171c7829d82627f2e37638f5db6888 --- /dev/null +++ "b/samples/\343\203\217\343\202\252\343\203\251\343\203\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70cd83e416a473ea147825eb0f9ebdaff32781cb26feb2aa8b2cd7d93aa3722 +size 123411 diff --git "a/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/1.opus" "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..50672402e3853571b5f92bb47d381964d75bf370 --- /dev/null +++ "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a44e0a598d15d3f0e524967e0cb9c994337f71e86fa4f3ee16f8f69d87cd572 +size 59083 diff --git "a/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/2.opus" "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..28b0a5fbaa3581c8d15a71f30a82622252fb7c0e --- /dev/null +++ "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05b3eb182ecb80e260fb97722aac13691686c55245a3da14741de9b3e4e4cf0 +size 142685 diff --git "a/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/3.opus" "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..92f595d58ed5df0be0099666cb69da5d3ac95a63 --- /dev/null +++ "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026f4cb43d80006879b386d817fa624fa6076557028f1240b7473552b9e55172 +size 118385 diff --git "a/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/1.opus" "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0a821e323dd7dc8c5ec0b9379214d92d429fbc0b --- /dev/null +++ "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15839bf3eff4cbdfff9c65a078d5fbaca0fdb1fb2a5f7c402652eb579547bdc3 +size 129110 diff --git "a/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/2.opus" "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b2b1aa1094e104dac36558409b8b156decbcb2f8 --- /dev/null +++ "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fb59eec414c29ada4a4f04f9b40c3d13c8ed525078715ed6302df9d527e8b3 +size 95910 diff --git "a/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/3.opus" "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a4ac385279b4a82b2cc2a67a7b7c85d1582ba316 --- /dev/null +++ "b/samples/\343\203\231\343\203\206\343\202\243\346\257\215\343\201\225\343\202\223/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccee6c20da73e5ded648f2d1aa12673f7fecbb13288b2a1d0280d4c580b3e8c1 +size 143605 diff --git "a/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/1.opus" "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2f9d850e2483c8457b3a3801618e7a987705a263 --- /dev/null +++ "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f73238be9779c25e92841105df36d77914d861c52e9f2ffcd7d5b410b798f59 +size 115739 diff --git "a/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/2.opus" "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ddfa9c3de4f5ce4e25df13dde2658edf93eb6d0b --- /dev/null +++ "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e9e7a46eff37397dac017fc1473cc1d304797d1f189ada0fa02fb0c0a0a391 +size 45493 diff --git "a/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/3.opus" "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4b23c6e59dea25709b3186a22c6c202bfe5628fd --- /dev/null +++ "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61822a15124d72b4cef0e79a7afcacc6e1d2a537f825a9932b0451ccf6f1f6b4 +size 70792 diff --git "a/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/1.opus" "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bea1d924e7b52a16903c91be1ac7c22d2e7dd2d7 --- /dev/null +++ "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f160640c3a72581f96bf33c30462bf8d210c9b7071acf7dc53b9f9918ac9a1 +size 136452 diff --git "a/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/2.opus" "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b6c6a19f22247e176acc5527d3aad864ae7d5c41 --- /dev/null +++ "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8691631338bff2a80c867a855fc41dfe24eae0e63b674b9510a14f391b98abb3 +size 101796 diff --git "a/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/3.opus" "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a1b447ed0a34fd7645fd98105c14f774decf43e5 --- /dev/null +++ "b/samples/\343\203\231\343\203\263\343\203\273\343\202\253\343\203\274\343\202\277\343\203\274/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16515f08051d3a61f15d4269d015ef03c5d70457e3ca1572246f0f2fdbb095f8 +size 153884 diff --git "a/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/1.opus" "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7c0749f53c0ec1b5a5fc3104b1da4557a576134f --- /dev/null +++ "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb09bd174dd01eb5a1950716788dadef2ca81ba05868b3b1d2fe1e5aeed27bf +size 169699 diff --git "a/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/2.opus" "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e4860e2ed29f51a459874aad8a0a24c99c2e4e43 --- /dev/null +++ "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d628c58219773a73f9ed76f428bca2faa094b7ef204fac1ecdc71bf5fd4e44be +size 128194 diff --git "a/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/3.opus" "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9972f8d36d414e52586bae7d30a9208525f78914 --- /dev/null +++ "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd4889aa0e5680a1cc8df6d16192c230b8d5eb29512b90817726fefb69348e5 +size 126935 diff --git "a/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/4.opus" "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..aeb047a037dc87aca3533c1140aec39f3858bc6b --- /dev/null +++ "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e4bb3cde32893796ef40cb9234fc060f09ee58246c46d013ff17dd10fb39a5 +size 62639 diff --git "a/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/1.opus" "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5ea95e666f882b0587cb2250532e3a7b3463c5aa --- /dev/null +++ "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0ed05bf69119c0dbc32448dd4ffd9b9e61e2d99b66c5f5a6ea0f3fd8bf38f3 +size 141655 diff --git "a/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/2.opus" "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0acadc1555ad2261e80f5c5efbe6642fb94d9f97 --- /dev/null +++ "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:628f806534bfec3aeb24dc9ba6fdf26f2b11c0e8a496e001f0475ce3b64c8b72 +size 102193 diff --git "a/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/3.opus" "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1b4676c7efec906f3639d3702f10e020a3e8d4bd --- /dev/null +++ "b/samples/\343\203\234\343\203\253\343\203\234\343\203\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75de32cb8b1e674e6cf26e2abaf3597ea8b546b704ec423ae92b744d940a10e +size 154239 diff --git "a/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/1.opus" "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..81af6033e8dc12440a764058aba64bf73d47624d --- /dev/null +++ "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21996fc254d753a2f0ff5e120bd24131d4105956b33a04b0d00e4ce3ddd7053 +size 87745 diff --git "a/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/2.opus" "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0bac58b09a2220054094070e662b616ebf24bf91 --- /dev/null +++ "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047519b0dd9d65992f1dac545daed7d07bd6c3a596252264c1589cb54801be49 +size 39637 diff --git "a/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/3.opus" "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..40fcd040b14afba14c067f4f50e3bead6d4db1b3 --- /dev/null +++ "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961f0f66b8504f7799bcb24f9f6e7881f644717b6a384d7cc53d5866ba7c2633 +size 65121 diff --git "a/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/1.opus" "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8ae311fed7a20724901283ca9316891b87210f88 --- /dev/null +++ "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8957cf2aaeaea0d4f05e132b4852890ac33bb2ab99afe84d792907bf7637ff +size 160926 diff --git "a/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/2.opus" "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cc54606f2f6f1d357f1c7e669e846fb120135e81 --- /dev/null +++ "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c74eab6ed6606c6e92e219ae4e26890678b69272de6e288d88c64e56fa8a75f +size 124050 diff --git "a/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/3.opus" "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6e53b2ea0ebf7cbf6f77c849141f93166cabf256 --- /dev/null +++ "b/samples/\343\203\236\343\203\274\343\203\224\343\203\263\343\203\273\343\203\206\343\202\243\343\203\263\343\202\253\343\203\274/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8f67d4a94fdd98ae0074cf9be4376742e5e40cce542fae33868bbfe7c734a5 +size 182745 diff --git "a/samples/\343\203\237\343\203\237/guess/1.opus" "b/samples/\343\203\237\343\203\237/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9d5438238b91452e97d742799e3a1127b38c23da --- /dev/null +++ "b/samples/\343\203\237\343\203\237/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac6f466489d1032b7c82ffa7a9005927f407fd6894e54df534ad702bf743b0d +size 83634 diff --git "a/samples/\343\203\237\343\203\237/guess/2.opus" "b/samples/\343\203\237\343\203\237/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5b93d346707f1c05bc8dcbf76dcd8ac07bd6ef91 --- /dev/null +++ "b/samples/\343\203\237\343\203\237/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced600626efcc04e08c8a45c5e40ca6e18ede8c2f56bc0061c48228254f3ca5a +size 84601 diff --git "a/samples/\343\203\237\343\203\237/guess/3.opus" "b/samples/\343\203\237\343\203\237/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..23579a6d2102e86ee9b3f8125623738556ab8aec --- /dev/null +++ "b/samples/\343\203\237\343\203\237/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b01039dde441e135228ab34da620ba03df0bfe661e6639b14b19418de47ee3b +size 79209 diff --git "a/samples/\343\203\237\343\203\237/tts/1.opus" "b/samples/\343\203\237\343\203\237/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..82981e9f02aa4159aab90a8466e99ec897766f18 --- /dev/null +++ "b/samples/\343\203\237\343\203\237/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35c1cc1f8255a8c6eb786c0e2d61dab49794440a274c732db24d452e8e47117 +size 162086 diff --git "a/samples/\343\203\237\343\203\237/tts/2.opus" "b/samples/\343\203\237\343\203\237/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f1c8d59429d0bbb0eca2811351d648f19515a5f9 --- /dev/null +++ "b/samples/\343\203\237\343\203\237/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819fcc81b48abdfdc0c1e459bd3e93449be0aadbbb780955f05594eab0cd192a +size 127812 diff --git "a/samples/\343\203\237\343\203\237/tts/3.opus" "b/samples/\343\203\237\343\203\237/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d3ccd3905d43249ebeac9533da0eb0ebdcf6bc8c --- /dev/null +++ "b/samples/\343\203\237\343\203\237/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fde7d729d8c3de05015297718a270862276a0c8db8cf87a6100b1c591390a6 +size 190473 diff --git "a/samples/\343\203\237\343\203\254\343\202\242/guess/1.opus" "b/samples/\343\203\237\343\203\254\343\202\242/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..54a63901c4f534878fef3aead207577f748b1f1b --- /dev/null +++ "b/samples/\343\203\237\343\203\254\343\202\242/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c562cd0321ed0a3810ea78b1a745fe39206c6aad3f606fe277f6c3bc19cefe9 +size 95719 diff --git "a/samples/\343\203\237\343\203\254\343\202\242/guess/2.opus" "b/samples/\343\203\237\343\203\254\343\202\242/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..749f02597cdbbcccda1aca5c5ec25d45cbd205fa --- /dev/null +++ "b/samples/\343\203\237\343\203\254\343\202\242/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa3608f87595617ca2a7eb3a293ce4a0cd237dd17b6bd6c370d6e0f24c645cd +size 84984 diff --git "a/samples/\343\203\237\343\203\254\343\202\242/guess/3.opus" "b/samples/\343\203\237\343\203\254\343\202\242/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0ba160e76236783de735cbb079ccd8d1fccab27b --- /dev/null +++ "b/samples/\343\203\237\343\203\254\343\202\242/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36209a823184099b8c921b13959ceabdb570282ab88b2078dc6c50cd4fe17af +size 64344 diff --git "a/samples/\343\203\237\343\203\254\343\202\242/guess/4.opus" "b/samples/\343\203\237\343\203\254\343\202\242/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cce8545dccfe100443b1ea9dec8798f711a9711f --- /dev/null +++ "b/samples/\343\203\237\343\203\254\343\202\242/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ee363329bbe2e8e61bd8dcb7ba455ad4a4752a178f407dbe302117c3de1f7e +size 108771 diff --git "a/samples/\343\203\237\343\203\254\343\202\242/tts/1.opus" "b/samples/\343\203\237\343\203\254\343\202\242/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..98901f8591ec31a3eebcb6634ed583e9b8bec54d --- /dev/null +++ "b/samples/\343\203\237\343\203\254\343\202\242/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0bae9ac29acefe663751b3ca5ea6c3a78a542b84c143949410dc9cc529a16ad +size 148036 diff --git "a/samples/\343\203\237\343\203\254\343\202\242/tts/2.opus" "b/samples/\343\203\237\343\203\254\343\202\242/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0970d877b9021abd89bf8fb52c0ef9aa021fd204 --- /dev/null +++ "b/samples/\343\203\237\343\203\254\343\202\242/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1957e1537283547cfe99054488373e419a3d46105d5f92ad5a4cabfa5cb6a450 +size 111855 diff --git "a/samples/\343\203\237\343\203\254\343\202\242/tts/3.opus" "b/samples/\343\203\237\343\203\254\343\202\242/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e99403477e08cb7a93681a2d7a969641ad6ce557 --- /dev/null +++ "b/samples/\343\203\237\343\203\254\343\202\242/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a304baae765ca086c755d37acd9f8c15253c0263aa02273cb9770afd86786a5e +size 172183 diff --git "a/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/1.opus" "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..44713e6d12c82214602ec0fe773aae80617af184 --- /dev/null +++ "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208eea996e85cadb80c52dfbcbd7699c6f5af60ea2adc1827c3e07bc206a41f2 +size 59833 diff --git "a/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/2.opus" "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7a0e1b05b9926fd29d515b341edbe80e96f5bedf --- /dev/null +++ "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c21b47feed49a4a118db5096e934c93a147d1282616b681fbb23f2cb47b6be4 +size 74482 diff --git "a/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/3.opus" "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..68f619bdb5cfef9a20b7e78126500f37ccbe6a10 --- /dev/null +++ "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ac2662ab3a032048a8b458bb46b588eeca036b91336785292659017ebe5083 +size 103882 diff --git "a/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/4.opus" "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7a5af93cf555874cecded9f1b211799c8de4dc3e --- /dev/null +++ "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b78e681cbe6fb3936774460a7bd9177a44fda994c85fd9e35f6828dd9aa0fe5 +size 77580 diff --git "a/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/1.opus" "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a70be58700bfc7cc0068184b1648d75d4335a496 --- /dev/null +++ "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784621291996fb38c50767ed3ce0f41545552660463773d44c7db0a19bf61d0e +size 136751 diff --git "a/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/2.opus" "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..79cab32d2d03fedb321f66184b46f57fd4446059 --- /dev/null +++ "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc36ae67583deca30076395504324c7b29d4d62eb7835c43844d1078ab4d369 +size 102365 diff --git "a/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/3.opus" "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..74c606465df9fd9c6b1de4cf10e961b1f831b6df --- /dev/null +++ "b/samples/\343\203\246\343\203\216\343\203\273\343\202\242\343\203\274\343\202\267\343\202\247/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffae0b403bb05f36088e0607acf44a6855a40df788a8cc358442d6aeec30e5a +size 158548 diff --git "a/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/1.opus" "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c2c85e1982afb389fd640b5d4ef180f54f6a1e86 --- /dev/null +++ "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad79d27e9b754e38d29ada4730be9cd8e1593716128c5fcaa508e0fc47b849f +size 114907 diff --git "a/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/2.opus" "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..12b76ecbed9652ef2c6f69cbd452790f3836fc9a --- /dev/null +++ "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9556a18a745ff5700c6b9626f244b899be5fb555bcdf753a895d1f5b9ed5fa5c +size 189076 diff --git "a/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/3.opus" "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9fc71183188024f377ab170c288d91c7eb5e5862 --- /dev/null +++ "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59f64efea590ed56ce6acfe25d1110402363b0151013a03e410058bddbda7c6 +size 122170 diff --git "a/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/1.opus" "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2a151c1b73e3c1412597fc0a765149f93914e742 --- /dev/null +++ "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9cfe8dcae17578e0ae6c3c04b93cd9d03f7857d2944ee54ecf2110ae88932e +size 150197 diff --git "a/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/2.opus" "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1f65fcd84f6720b9865d2a43baea0f0d59d5a434 --- /dev/null +++ "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24bb83319f2ae84de7f426f16c22eb96348dffe35d4f21b659066e84720ffd7 +size 107497 diff --git "a/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/3.opus" "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4099bd49e83e71146c0c8023c44db13b2907504c --- /dev/null +++ "b/samples/\343\203\246\343\203\252\343\202\246\343\202\271\343\203\273\343\203\225\343\202\251\343\203\263\343\203\273\343\202\250\343\202\271\343\203\206\343\203\253\343\203\217\343\202\244\343\203\240/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a345843ada219ed94cc1c44d9c1f2c0dd8cd06d8ab5fb7edc7487e01ccd14eca +size 163340 diff --git "a/samples/\343\203\251\343\203\224\343\202\271/guess/1.opus" "b/samples/\343\203\251\343\203\224\343\202\271/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a9ec0e07a13d746bef46882f304805323ceab29e --- /dev/null +++ "b/samples/\343\203\251\343\203\224\343\202\271/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e614ac914f43ea4b283dbca0afe9f0ad0d92651667c2929978dbc9b2747d564f +size 85398 diff --git "a/samples/\343\203\251\343\203\224\343\202\271/guess/2.opus" "b/samples/\343\203\251\343\203\224\343\202\271/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5999c6f16cd48f056f0e61e693d68a67ca980633 --- /dev/null +++ "b/samples/\343\203\251\343\203\224\343\202\271/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188f7d3ecbdf7b80b89784cffe160a9d43c1451754eaa46a386b19ebd1db94f0 +size 185267 diff --git "a/samples/\343\203\251\343\203\224\343\202\271/guess/3.opus" "b/samples/\343\203\251\343\203\224\343\202\271/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b989043eda365a3b9fd5fa1088e7fe8637e7ef5b --- /dev/null +++ "b/samples/\343\203\251\343\203\224\343\202\271/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1b24a9d6b2a05e885c520d1b9df01440310d966c20ec2ebdb5b1b7f8c89ae1 +size 87758 diff --git "a/samples/\343\203\251\343\203\224\343\202\271/tts/1.opus" "b/samples/\343\203\251\343\203\224\343\202\271/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8daca68ede87d95a949eb373b14eee05e6187cf2 --- /dev/null +++ "b/samples/\343\203\251\343\203\224\343\202\271/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dbc570b91fe641a903a8ac64e4f7de89d3b29304cb2af1c4c6f0f9c4737c9b4 +size 183413 diff --git "a/samples/\343\203\251\343\203\224\343\202\271/tts/2.opus" "b/samples/\343\203\251\343\203\224\343\202\271/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c5d9a670e713a4d69d49badd4d562eebe76804a9 --- /dev/null +++ "b/samples/\343\203\251\343\203\224\343\202\271/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a147c2be2dfa38173fa8609ddf87b6b6ae05c6fed848d37a4f404c0259a1689 +size 147231 diff --git "a/samples/\343\203\251\343\203\224\343\202\271/tts/3.opus" "b/samples/\343\203\251\343\203\224\343\202\271/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3af9a92844c72643ffdcbac842853a6d5a9b89e6 --- /dev/null +++ "b/samples/\343\203\251\343\203\224\343\202\271/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068a959f21e8e808d8a49a0bab6850082e41294ef158be5ae0157ba7d5fe5d14 +size 230891 diff --git "a/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/1.opus" "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9163cd9517944cfe5046f5475a2b9ba004dc5769 --- /dev/null +++ "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e17e3117f2c038283c4d223fb058aa8d1043f19ebe33d8e90e0f791d87d8bc +size 164841 diff --git "a/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/2.opus" "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6e0e7fe39f5be48fd23b7fc10901d1a3639c2a1a --- /dev/null +++ "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99b5975c96d0a77d61ac09a115c994cbeb11c4c75f4b2d522770e140e29795a +size 126218 diff --git "a/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/3.opus" "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..60dda76566230e4619a5739f9c562e6023889014 --- /dev/null +++ "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b915d64f705b1c0adb00e5a6dfe3348451e3043db1f2eabe425b998d24d568 +size 167206 diff --git "a/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/4.opus" "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..65153755148f689ac7c1f5eae6ff1417840dbced --- /dev/null +++ "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35446470b52c2dad39d78f931038cedb1f3aee638db765a2c098c0595d7583cd +size 110570 diff --git "a/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/1.opus" "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9360ed443ef8b348df81e1eb7635879b9a6bafd5 --- /dev/null +++ "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc7161c83e03f44fab776454210141c4aef545582f2e9f607222748303aa247 +size 150359 diff --git "a/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/2.opus" "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..97d238bba2dcc3410ea6979ad1e1cd15858eb25f --- /dev/null +++ "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cdad4c554199a89a3167d7dc111e957a3d0c8b484d7dccf8f3e8ce4433b340 +size 113356 diff --git "a/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/3.opus" "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..227a69af91be61c2a94bcf115c151999d488e0a3 --- /dev/null +++ "b/samples/\343\203\251\343\203\225\343\202\241\343\202\250\343\203\253\343\203\273\343\202\260\343\203\252\343\203\242\343\203\257\343\203\274\343\203\253/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdbede40fff6caddb683078f1f685f0db610bc179145622866da9883d330f7b7 +size 170312 diff --git "a/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/1.opus" "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4f4ccfb20dd935d0242b1c04a23a54c8d72331b8 --- /dev/null +++ "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7feba5bb0f473323fc31113dc1a57cd82a97f12cad28b3613cc8c70c4afcff6 +size 117627 diff --git "a/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/2.opus" "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..333a72265fcbbc7a9edb4614ba03a2ef38239a3d --- /dev/null +++ "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057fe6e2c3109aab8c8438b0ade68a88dd3844c31acd86fb4e6b202093c3ace5 +size 106705 diff --git "a/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/3.opus" "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6fddfaa556f742f75c5ec9084bd12ce826ff356f --- /dev/null +++ "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78995201de303f193b0c5cdd12697c71873c3743dd05260945d4e8262cf9a24b +size 94902 diff --git "a/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/4.opus" "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..660fd87c1dda61f1ca75de820c14105cdb9395d4 --- /dev/null +++ "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5b4bc1daf580bf53b3075fa3b55f0b57a97bb800d123ba335ceb09e0266612 +size 123285 diff --git "a/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/1.opus" "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c76374b992f5091384ed23956d97b3964b5c0878 --- /dev/null +++ "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bb5d8c8b28e650107b2e01e768dbfeb7efe126255785e4b921a4db38137f0cd +size 147482 diff --git "a/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/2.opus" "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..06c243c62aabc1722118c95a83da38593a671aa3 --- /dev/null +++ "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85a4bdab262d7938c39621b445dcb35bf0a17dfecd175bec3cf18477171bdf1 +size 112192 diff --git "a/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/3.opus" "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..85459872c00efa4d71b7f33c93a95b3a42737414 --- /dev/null +++ "b/samples/\343\203\251\343\203\251\343\203\241\343\202\244\343\203\273\343\203\237\343\203\253\343\203\225\343\202\243/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e533101eaa3b3c086f08bc62350774173d1becde4c2837b3b43542874a9a9db7 +size 173320 diff --git "a/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/1.opus" "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ba099475bf1114129df44112b39153aa729841a1 --- /dev/null +++ "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7d6440294d35ea06c760033e6495d179a37fe43a05f6b43a27be45dd70a3386 +size 115252 diff --git "a/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/2.opus" "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1bb69d2337cff5ef6d70f1e309dc8dca0bfa5af6 --- /dev/null +++ "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff4883362648e278d2b4c1d11c3301d71975617353a621c74cf4eebc6a5e7aa +size 113661 diff --git "a/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/3.opus" "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5889efe827e8020e21a6dc4882e2563522c0a5b3 --- /dev/null +++ "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283174bf6bf1690a4aa591eb7c24cec832af90c22f5f8a580596e263e1bec9c7 +size 128605 diff --git "a/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/1.opus" "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a1537e313fd4158b8555f0075a3307b81047e663 --- /dev/null +++ "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b32715ec4b0b8c5ef5730cc054821432fb3c6f8267d771c48d351054a85bb +size 143051 diff --git "a/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/2.opus" "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e5e3c29ab7c08d6cbfc964f5333a27f1704bf01d --- /dev/null +++ "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1573090886429132bb0f75b13eaa1ba568d12aef99e9c2c11bab173b9eb9df5 +size 108946 diff --git "a/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/3.opus" "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b67a97f67e14db2d41696fcf7c61b3c33d5449ee --- /dev/null +++ "b/samples/\343\203\252\343\203\215\343\203\203\343\203\210\343\203\273\343\203\217\343\203\237\343\203\253\343\203\210\343\203\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3afa7d51aed26c72cdbe493e57a13ff74b895c428329376ad64a9e5aabe5ff50 +size 170119 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/1.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..27b65be7225eab9e327fb2474a23a95669e3a003 --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0839a827a1eb9678b6f0acce45bec15a2345656841e349e690b5061ed6c54a +size 156632 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/2.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d53cf0eac2c8d1dc6886eb82fb2db1c272c2d414 --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33958151920ca6569207f61babff8a15dc2e16c94a77958de1ef29902784718d +size 107378 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/3.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6505a42224e49561a6cc61ffa7ee1471c393dc12 --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622a76bfc04e0034f89a166218253efe1a78108dec2eef87e16047e101ede363 +size 97834 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/4.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..75e9d821648afdcc4a4fbae1976b6097294bf776 --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26a6da40fd739b9594818d7e9c2ac994d6168802147b5da70148ff6b9a540de +size 87731 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/5.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4e31a550c3a2db3c13ae073e40bf2938ff03c142 --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23821d70390464d51fd491b17799a5e937a6bc66e6a4778ff003fd5ff54df260 +size 46196 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/1.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fa8bb16c0ca51e6304d7c93302463bc4fd0add09 --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d7b79429a286a117d8c4791948e6589ebb40e9ba0e1bbb3710d9a40ac9f899 +size 123609 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/2.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b953263d882baf3df815de89900dbe57eb53f034 --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0ad2ed8d009e4baa3ff12c45c934dac0e1aff82f831a1c3f14f668669e34cb +size 94546 diff --git "a/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/3.opus" "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fe04d3da594a4db86ac475eec77079f21f9759dd --- /dev/null +++ "b/samples/\343\203\252\343\203\245\343\202\267\343\202\242\343\203\273\343\203\212\343\202\244\343\203\204\343\203\231\343\203\253/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:935148d419a910842c973625aaa8920f22ee8834683e191885fbf9a3019e83d6 +size 144026 diff --git "a/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/1.opus" "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..42e8f20facd5f325a6a9339a47034157a8717f97 --- /dev/null +++ "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef76dcdba5d6f353f755cd0f807b62649241a588b0a94c37a48c864c4c60f32e +size 105129 diff --git "a/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/2.opus" "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7ec660a7cbc169d7b62243aa74e56409ce7d1fdb --- /dev/null +++ "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18635934267652f4e7315a2549f4962aeef37c7475ee2e29a04572848d33ea59 +size 89660 diff --git "a/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/3.opus" "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4b0027861e5c6380076a3dbb6233cffd80d09fe0 --- /dev/null +++ "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d514369c876428f718ce246db1cfedb8d227bcf99fc648f3baf1823e09d1ae46 +size 110529 diff --git "a/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/1.opus" "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4970e1a141ecd9a08baedd1e9ad3d8d38cebbe7c --- /dev/null +++ "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4305c9f48618842d6f0a9cb3cc9c2b930239ff9d9eeb373333c01bdcc3fa8ae3 +size 122854 diff --git "a/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/2.opus" "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..79021e96b32f7099f011ef7faeb1db6a38761729 --- /dev/null +++ "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58d58c1880c6dd6b3957b58fe9bd54a77107a0a70065df7e25fbdf8ea4a8b28 +size 93013 diff --git "a/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/3.opus" "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..41c977970e6d2cb0495f7b94ce962b371b27f4dd --- /dev/null +++ "b/samples/\343\203\252\343\203\252\343\202\243\343\203\273\343\202\242\343\203\253\343\203\210/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e813b83e2d6d9fa17f9f55ef48cf3043cd05d8e4d284968b5f8cdbca7e48e57 +size 147344 diff --git "a/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/1.opus" "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..babf8eb5ed9cd08121d25b039dc6c1337d989927 --- /dev/null +++ "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9564c26dd27ef50e1a01c2d010107a9330b1bdc33f60a4727c9358ec75ffc75 +size 55185 diff --git "a/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/2.opus" "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..14c050b6eee8aff3a80d092d079dc52be61f18aa --- /dev/null +++ "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691bc4fb08139c7b360fb8a71111fc00cd28834bfcd1183eb45b3f147195960d +size 71318 diff --git "a/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/3.opus" "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..07065860e08400efe25d033421eed11efb0475a2 --- /dev/null +++ "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7447f9df7fa12e393a9cd8a97e3759765f5646616be4881d6b063bd82ea900e0 +size 69828 diff --git "a/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/4.opus" "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..52730f9b914a6abe33a664a3759bc6569cfff359 --- /dev/null +++ "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a374bca277616157b362b1535405d413c3a174f6cfe31fdc553582b8b9c9900a +size 92684 diff --git "a/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/1.opus" "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cb26451acfc9b68936b53dcf3cb750c497e5f9a0 --- /dev/null +++ "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae21c8b10f3d2b81561de65906e26618c1d2dedaa7b32bc77b55d17fe52203de +size 123198 diff --git "a/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/2.opus" "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a39c7d2243b2641aba8330c4eb4e2cb19b22a930 --- /dev/null +++ "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b7731df2bc2bce51a6bdb14d6544fa1fb1931708a2d28c7c7bba6efa9f149c +size 107283 diff --git "a/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/3.opus" "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..061bab750603f76426206d0a7ea8861b3b2165eb --- /dev/null +++ "b/samples/\343\203\253\343\202\267\343\202\247\343\203\252\343\202\253\343\203\273\343\203\253\343\203\212\343\203\242\343\203\253\343\203\206/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88868ff877d32c99b201641057722937dd6a9040c4a9e33e4b2246d1f80cb7f3 +size 149873 diff --git "a/samples/\343\203\253\343\203\201\343\202\253/guess/1.opus" "b/samples/\343\203\253\343\203\201\343\202\253/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..438ca5fe48c9cfec7f1e228b0d1faf8bf84c5523 --- /dev/null +++ "b/samples/\343\203\253\343\203\201\343\202\253/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f1e3aca116ade2d70f1409e4de28965e5a66e644018066b40ff1ec3fc6464d +size 140955 diff --git "a/samples/\343\203\253\343\203\201\343\202\253/guess/2.opus" "b/samples/\343\203\253\343\203\201\343\202\253/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7f301fded620b11b308bbf87c17bef8d329594d4 --- /dev/null +++ "b/samples/\343\203\253\343\203\201\343\202\253/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f1bdb8faf572ecb062d31007738dcb02049209682f912f5cb4838987f010ac +size 195998 diff --git "a/samples/\343\203\253\343\203\201\343\202\253/guess/3.opus" "b/samples/\343\203\253\343\203\201\343\202\253/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f98402a826e1bd5fc7c5d4ba69a2c1bbf1b5d2d9 --- /dev/null +++ "b/samples/\343\203\253\343\203\201\343\202\253/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0c411134286f89ef66b6b49ab91d5ed734e7ea87574da6236d1a9bcd838426 +size 74740 diff --git "a/samples/\343\203\253\343\203\201\343\202\253/guess/4.opus" "b/samples/\343\203\253\343\203\201\343\202\253/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ccbb8d0a8a407a0987408b8d3fd3c687ded1cc2d --- /dev/null +++ "b/samples/\343\203\253\343\203\201\343\202\253/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240d23dd4717426bddd884b98e86149404c03d6f0ca9b1e4387f3668e453caad +size 145059 diff --git "a/samples/\343\203\253\343\203\201\343\202\253/tts/1.opus" "b/samples/\343\203\253\343\203\201\343\202\253/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4489485183ec3881771cc1f435e8a61e10c99dd2 --- /dev/null +++ "b/samples/\343\203\253\343\203\201\343\202\253/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fdb8609c39dcd40c34355b0ef0c7bd8d4ec3758f75889241bb005df0b6bc34 +size 133504 diff --git "a/samples/\343\203\253\343\203\201\343\202\253/tts/2.opus" "b/samples/\343\203\253\343\203\201\343\202\253/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..20d10483ab98d1b4e9eddff0c3ea030581b9d45b --- /dev/null +++ "b/samples/\343\203\253\343\203\201\343\202\253/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def7e71851dee1204e63ba0a4b0e24c5854b9e32583b2f95beb35ad18c815f17 +size 100147 diff --git "a/samples/\343\203\253\343\203\201\343\202\253/tts/3.opus" "b/samples/\343\203\253\343\203\201\343\202\253/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..23d92f07f9c70cae36d06be457f61a764ca5ce05 --- /dev/null +++ "b/samples/\343\203\253\343\203\201\343\202\253/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bcc2663d9f7f96f3d31d37b610b6c5d6745196364068ed10e80313593aba5d3 +size 149671 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/1.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ee44d0be552f1dca40b10092a0b2d9afa4968bfd --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe17a34bdcb23cdc2137670d57d2bb18e0c84d9bc55e716c6157eede64f9bfa0 +size 124042 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/2.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..412c912345e0d27d5562514f6039978c76191fcf --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02907769ef0cb70ea09992d797862726ea2db76391821cc6f1af62a7297843e +size 167147 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/3.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..eb08f901c09e951189482a67a9cf268b602e9376 --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ad4447857619f95874521d2c382cf75ed00d037c6d208f1d53f5ca67ecc0148 +size 42650 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/4.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ae7433d148cb7b62dc89852dde9669755f8c1ceb --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724417620d436f645adbc4b443e3999270f90450248ddacb8b012732190e44e3 +size 197178 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/5.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9856c6707f1ca07f8a95d5490675cd96975c7499 --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7227a7c7ba5004558ec3607b9c227ac94ca44f3e9d1bb703b312c1a0e5fbeb4b +size 89968 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/1.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..78d60c37fdc073b61f0e2a34785fe28e3e92e64c --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d471a8b5ae18a4bec7ae3746e0d4fa28883822e9b0ada62a99deb4c0cca27a88 +size 152592 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/2.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..323fdb1ac7ddb1a7e9277077cc493d0ccb6af2ab --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f34911064ed5de0cfb08f4042eca51aa835a2c8908ffe8b7dbd220d2011b0d +size 114363 diff --git "a/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/3.opus" "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..12942adeb24565b8b37c58ddb58db648c4c9527f --- /dev/null +++ "b/samples/\343\203\264\343\202\241\343\203\253\343\202\254\343\203\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8959654288e599fd879d6fedfac499df66aa182607881f58fc70562b4c902088 +size 179156 diff --git "a/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/1.opus" "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9b556b53021c4b997017021c2234a224591da6c3 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03a4062637b94dee3f19ebf61612244100f72b7e7e4a1be741e9ec5c322e263 +size 86813 diff --git "a/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/2.opus" "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..14e68b713cc5c1ed451ce7068ac4eff6df153f42 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b8a8cb7d2c993cba8ccc5c8d43d99c25ab832589db148127eddf688c207061 +size 45167 diff --git "a/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/3.opus" "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b76d523c61f3463e243594c41cfbe0ed20108d02 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e60b0330a9470878789e3583adad255e95a819b9dcbeb3a3d6012a3c6d6e9f +size 85078 diff --git "a/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/4.opus" "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ea4f15f3e2386ce1c9f861273fc8a3d6c80006a1 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c7702762a2a1bd66d719ec04c9f9bde311e3addfd993c2de657c2692585eae +size 50800 diff --git "a/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/1.opus" "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f9a0e77f167a3311f4f5f8d788f55b6c6dd0297d --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a60530c64bc7faac9409b488dabe57d8d8e80e683085893e621e415dfeb5f2 +size 146507 diff --git "a/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/2.opus" "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a6a576c489d48c1a0db6741bf732f76b5170ccce --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3d2e60480b3877d5648512cd1b45cb7b1c6566640ad615779aade4be6bfdd2 +size 108000 diff --git "a/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/3.opus" "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c850b47aa82628f1c9b84c630b9e6cf6de79b7be --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\202\257\343\202\277\343\203\274\343\203\273D\343\203\273\343\202\242\343\202\267\343\203\245\343\203\225\343\202\251\343\203\274\343\203\211/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4ab3a99850a8bc1a12466c3592c5d67c5b30669d25e8ef8868cff237fb16a7 +size 161666 diff --git "a/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/1.opus" "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0f764aa7f026e875afff6d710b030e3993537a2d --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd5a1185791a434683bfd84defd604e279f3468b51393ab7c07a296a331c49f +size 102463 diff --git "a/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/2.opus" "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f210e87080fefefadd1b9390250d2ade88bc3f51 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a77a071609f8c4c15cdf414dacfb05787aded6839911a79c984e66a5002a407e +size 131448 diff --git "a/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/3.opus" "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..29419a3d54d87d03e1ac157b0f9778f8422c2738 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb74f2542e69a8d49a9cdfd78a5fc44de9938dace121a10f15403ec137e45af +size 71327 diff --git "a/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/1.opus" "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..33347a1ef72aa5933dd0d009c1319888c30b36d9 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447474f4c4ac1a3a3207af47c3981562faf12bfa42fc07bacdd53c0329240806 +size 135310 diff --git "a/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/2.opus" "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ee98def0d902c42bc9e3775c4e513691ff45c661 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3ea450d2acd9a82ad98cc6d4dd8d810c186c3603c1eca6965513c4d9e02b3f +size 102175 diff --git "a/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/3.opus" "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3714de8216d12efa13d761fa72e006fc2743ea05 --- /dev/null +++ "b/samples/\343\203\264\343\202\243\343\203\264\343\202\243\343\202\242\343\203\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbda46df36adc50c5c4691ff01ff42d51673b1440c511a3a8ce563ae991f0313 +size 158103 diff --git "a/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/1.opus" "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a5824813ddbcc6baa79665ec455d79557c919ea3 --- /dev/null +++ "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0a93e7274447caa122d7985941286ade7a2bdcc5d944b0e325bc18409cbc87 +size 100389 diff --git "a/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/2.opus" "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2850d255122d0976638f58a98e3a18b17dbe11d9 --- /dev/null +++ "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a58ac7850891ed05f1035f1e70f2945a843522cdd4192db68b1516f659c201 +size 84328 diff --git "a/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/3.opus" "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7bc80f45c42e6264222ec85905d33de7b2692273 --- /dev/null +++ "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fe25acb79dd944559d1f887ac1cd3d435a3853cc92dae9e5ee96773ecef926 +size 95163 diff --git "a/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/4.opus" "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..05a31d12c1e43a318cc659f843b08ef38178dc53 --- /dev/null +++ "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b885a475ad18377136dcedaabec191e06bad9b4ed9e3e0d9d21316b46fa69e7 +size 80822 diff --git "a/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/1.opus" "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b4743c1afe973b32bbe5da32840265ad19a5f372 --- /dev/null +++ "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33d1a0ef43bffcbca19c144b86eeaeae03f112bd3de3afbb73f8111967430f91 +size 146273 diff --git "a/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/2.opus" "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..52cff8e6cd22364af1748f898e799775754ebaea --- /dev/null +++ "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7255709d915929cc6b7a201295dcbd4cf2843f1ae142a706abdf4f30c4f579dd +size 111419 diff --git "a/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/3.opus" "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0217883ee8328e2ba1d5837827d03ce3566350ce --- /dev/null +++ "b/samples/\344\270\200\344\271\213\347\200\254_\343\201\262\343\201\252\343\201\223/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e4bcaa3dfc8256ab7a4f7ac49e74a5eec0bc9c40d168cdd2eee20aa1c1cb4d +size 169669 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/1.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..693e34452d7e12f56120952ece0e1e74aa40bd83 --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c296a59a30d4424c20e48fd59094f8a4f96d33532fe9419eabb8ad0faeb0cda3 +size 129789 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/2.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0ed3614806d5605207e4b13e4a7accfb16da0ec6 --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d82cbef9da5e3118a774287ef4551a48495b712dbf78bb791d56c85c3260e43 +size 151746 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/3.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..44afb5cdd386cbc9e97f5f6929333053f3bb6493 --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b762fc8d40011323846a666f1db6003aad70a1bf21f1e67ef10c8cb21858d33 +size 84469 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/4.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cafb61afee1b67fbb732e762dd2c0596b2ec0ced --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0080a1e8dccfc221cabd31401895e8616e8649807f271694bfb913fbe80dd2a4 +size 135668 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/5.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..249dea83533bb9c86d7dbfe91509ed64cd99dbb0 --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c060f7bec389cb8d7c19f5861e84cb400976e3056053048695e866c86d0888 +size 97648 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/1.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a9062c380542ecc0c577945feb170c391ee24a4c --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35766979564ec8b5e7a2eace2e2162d252fc86c2acaab812691c64eb8fb7334a +size 163555 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/2.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5afbb2906497a970e2145b3fd2cd788ece21f06b --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7de58025829eba03340596a60b6e3a3705b166fd3b00532bc3bc4a26d517423 +size 123311 diff --git "a/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/3.opus" "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..53b32052580bb699764fd7b23dbac9871e05d9ce --- /dev/null +++ "b/samples/\344\270\200\350\221\211_\343\203\204\343\203\220\343\202\255/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbda61bb888f1944c6251dd88be75ce9ce139ecc740bee5f2384ec99e5347767 +size 183160 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/1.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c712b705cb9e0e386cbc479433f2cbbbb3684c77 --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb589efb61d679302e5c45215116ed5278c7268f12e524ddf0eae1f8d01a9145 +size 102073 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/2.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..62c9e2ba7baaf8c15e2c0ad424af6a5a32d4fee2 --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3090173e58d9bf63564ede54ebc6335df2a58d814a24c606f806e882499ff4 +size 123290 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/3.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..af1b4faea58b24c86d0adbdf6bc599b7dc0c2d51 --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc1169095eebff0e567c54eb03b82af7030523b92d2c512b9f162b171b0450c +size 114485 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/4.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a481d2f4b7fb5c08380989a04cbb23236698107e --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fda3921d016307bb04443817bdf558a16647bfe35c5c8093f6994c240dfb524 +size 116565 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/5.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2bb1782cb17f0b4b5cd1cd75aeb379bc56d9fa61 --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e769f4f8433f815641bd77d1c97d50724ba6de422d97509df4c239efb5cd6f +size 103908 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/1.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..edea19484655ec1788f9149b55f5fb7d05652207 --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2ac3e76b1e04283c148f6c985e9731bf173851081034c83f001c0587448d29 +size 140458 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/2.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b812f781d025ee46714f189009ca2f61d1f63f5b --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220e267e84a8307dcb440a18d6063691d4e66c37af0a5a6ce0617c6af43c2640 +size 103712 diff --git "a/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/3.opus" "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2b6ec47f7ab426f9c27fcb159fdac0d5851d7c7f --- /dev/null +++ "b/samples/\344\270\211\346\265\246_\351\232\274\344\272\272/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90aeabebcaf271222204614be25e19c03782852b5527ce20a11b4c72306c817 +size 159281 diff --git "a/samples/\344\271\205\344\270\226_\345\207\233/guess/1.opus" "b/samples/\344\271\205\344\270\226_\345\207\233/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7062c95ec78142e9e8abad19fdac3b3425c3dfc0 --- /dev/null +++ "b/samples/\344\271\205\344\270\226_\345\207\233/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455671daca02cb228f409deab6ffddeb4eb9b8273b064422ecfe778b752e7e41 +size 58688 diff --git "a/samples/\344\271\205\344\270\226_\345\207\233/guess/2.opus" "b/samples/\344\271\205\344\270\226_\345\207\233/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..61eb29e469dcd150ae200934473c0a171d06c525 --- /dev/null +++ "b/samples/\344\271\205\344\270\226_\345\207\233/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3523030f03e43722825212d9c7c693b24cb3a3a9dc4f7a5d47d4bc4452fd9ff5 +size 82133 diff --git "a/samples/\344\271\205\344\270\226_\345\207\233/guess/3.opus" "b/samples/\344\271\205\344\270\226_\345\207\233/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..90bc62cdcb3c1c3c66712fe35868b9f8da4f584e --- /dev/null +++ "b/samples/\344\271\205\344\270\226_\345\207\233/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179f2a5681da0205945d854d95c89924ac0f7788f2ab187d82f88954dd1b9e1e +size 133097 diff --git "a/samples/\344\271\205\344\270\226_\345\207\233/tts/1.opus" "b/samples/\344\271\205\344\270\226_\345\207\233/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1567430a57be5fd3da13a32cd72080b3c1884cbf --- /dev/null +++ "b/samples/\344\271\205\344\270\226_\345\207\233/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35d00b4687d4cc4c461f0e0610c8aa733cfbb112f7e2a01726935e3829d3fbb +size 110569 diff --git "a/samples/\344\271\205\344\270\226_\345\207\233/tts/2.opus" "b/samples/\344\271\205\344\270\226_\345\207\233/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ec4a62e905dc92865a71e5075088d123e2265e07 --- /dev/null +++ "b/samples/\344\271\205\344\270\226_\345\207\233/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11aab3db1815f01f46a8c0dc028351c47387b7cb680c83eb434c3182ee0c4faa +size 87414 diff --git "a/samples/\344\271\205\344\270\226_\345\207\233/tts/3.opus" "b/samples/\344\271\205\344\270\226_\345\207\233/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..62514674c5ba0a91b02be78a99aa171cba3eeef5 --- /dev/null +++ "b/samples/\344\271\205\344\270\226_\345\207\233/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7987d8e1bfd1f486f10d00e6055d20f5b64cc7889eb808b3aacc73dc2245ba7e +size 134670 diff --git "a/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/1.opus" "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b65a265098e517e52b6c76d6d236a0c02cf1933e --- /dev/null +++ "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6187d11fae23a5c559c77bb4abb3b38b06936d29f28181bd8def8461ccc443c +size 109883 diff --git "a/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/2.opus" "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..167f50aa1aa9b15b53ada79649ba0d50028a6322 --- /dev/null +++ "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa65acb3d6396e489c60159fbcc93a27060ee7afe191bc4934295b2c83aed5d +size 89481 diff --git "a/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/3.opus" "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..172e79379dc6f1856e010e221b9376e1d78238c3 --- /dev/null +++ "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2352416238d9c5c7390beb0d33481cc101380a658ad29d7dacd57d82c7a6f216 +size 47210 diff --git "a/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/1.opus" "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a05be32fcf668317768ee28101a42698a4d9009d --- /dev/null +++ "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4e9170e95463322e841028c27259b82db1f3ed352b7dbef2e256b968987880 +size 151887 diff --git "a/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/2.opus" "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ea689886c71e4348cd24403ae6e73b006ca1ed7a --- /dev/null +++ "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82dca4eccbcd5de1553d5ffc3a9d090cbd0344ccf4d2082e59aab0a1ba5a2a5c +size 115189 diff --git "a/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/3.opus" "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c5438332ddbec16e240822dfacf5b6dcc8e77bca --- /dev/null +++ "b/samples/\344\271\205\345\222\262_\346\202\240\344\273\201/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13542ea26154ab4443f81aea7f4c3e9fb84a6a456ef4577e91806aff2ee98ea +size 168049 diff --git "a/samples/\344\271\205\351\201\240_\351\200\217/guess/1.opus" "b/samples/\344\271\205\351\201\240_\351\200\217/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..44f2dc0787f24ab1672b0920f4fe7eed6605a120 --- /dev/null +++ "b/samples/\344\271\205\351\201\240_\351\200\217/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f9712edb488cbedf4a0c84caf363416e790e91dc4b59ce4b66139aca5cb422 +size 29993 diff --git "a/samples/\344\271\205\351\201\240_\351\200\217/guess/2.opus" "b/samples/\344\271\205\351\201\240_\351\200\217/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e5d7d1031d4cc08c7f9fab88769bbdf14e2b44c7 --- /dev/null +++ "b/samples/\344\271\205\351\201\240_\351\200\217/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:089a679f96a69d339edf43acfa279112701a72bb88ca0ad7009c31083e08e023 +size 124914 diff --git "a/samples/\344\271\205\351\201\240_\351\200\217/guess/3.opus" "b/samples/\344\271\205\351\201\240_\351\200\217/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..527f7fa04b09b992677511c5a1fb45fdaf6d4dbd --- /dev/null +++ "b/samples/\344\271\205\351\201\240_\351\200\217/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc35ba186e161d3bdb977f87065f2757931932f804005cc296e91612ee2cd43f +size 102228 diff --git "a/samples/\344\271\205\351\201\240_\351\200\217/tts/1.opus" "b/samples/\344\271\205\351\201\240_\351\200\217/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a55256fa43019e125c75fb76ee97622b547c06c8 --- /dev/null +++ "b/samples/\344\271\205\351\201\240_\351\200\217/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:500c3914e7e13069dfb327462f7dc532462783c9ff00456a0bd787db9fd60e31 +size 118448 diff --git "a/samples/\344\271\205\351\201\240_\351\200\217/tts/2.opus" "b/samples/\344\271\205\351\201\240_\351\200\217/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3dc65845a02cc691a05d16d3924d02f9e54c9914 --- /dev/null +++ "b/samples/\344\271\205\351\201\240_\351\200\217/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f356cb100fa2a9e9d780932f64c5fbac9e415448927bac5a15f2430ab906a2 +size 92878 diff --git "a/samples/\344\271\205\351\201\240_\351\200\217/tts/3.opus" "b/samples/\344\271\205\351\201\240_\351\200\217/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8a1c1940129021928dea4dd6bd2c9691cf50a4b2 --- /dev/null +++ "b/samples/\344\271\205\351\201\240_\351\200\217/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b844847e9e9dbdc769a42fe8bd620e635cb6d5f33c49a80c14370c0cd42d9a9f +size 146439 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/1.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c667efff4108f6c7197fd09697ee7c4b50f75922 --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e044c727c54745ca02a3151492937cff1dcb398d21c4fbc0994ad39c5d155bac +size 58664 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/2.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f1427ecc604df4880ce7fa7676739833257c9f9a --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cb2589d6e30400a511590e6999435ea337fe66ea627bae81ed46133eead467 +size 93559 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/3.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a6e63b9ffc7996ddfb2fc12504014139c85dc244 --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d27f32dab11fb7be7d3d725b224cabc1c995190b4c3f793683f0412321d33e +size 109385 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/4.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..abe9179e3bc0c045f367ba2b33a14f5845bac554 --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5814b898af465d95e515285b14d12ff2ffdd1cc74a6d33eda2099fbe9771aa1e +size 42434 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/5.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7a90dd794099191a0fd0e4d69fb34f95c24c0f3b --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fe1ecb528cbbce5987832a38e913ceb1db55ec4c49c57cb9a595f03d833e084 +size 89769 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/1.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b419f7e16cccd8df6318688d16e355a8a0a31fdf --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d458ff7568eeeb02c57799c98a4e9254ebc78e814d5d1c6b633d889b4e20383 +size 145648 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/2.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8e39573a9fcb3c25b257027242620458292d372d --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2343939a23735f020b1cafcf7a30f5f276ae1aac6432d3f2c5cf2d193118aaf +size 115224 diff --git "a/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/3.opus" "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d86966c035533904a420f3f39f2bd715c26396da --- /dev/null +++ "b/samples/\345\206\254\346\234\210_\345\210\235\351\237\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43c32d606c596f3bc11c427a72364535be5b91a0a8083fc1a5a6d4d78115fc9 +size 181345 diff --git "a/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/1.opus" "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ef2f37cfdafd1ce1529e8c7e76641d8410b0fc60 --- /dev/null +++ "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8fdbc7190e8c049c0e9dbb1455b39410511d07f5d942af7d1fc5fdde9ad9a6 +size 134962 diff --git "a/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/2.opus" "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..169e90f209a2ff13b16e629271d7b6354f769313 --- /dev/null +++ "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d3c12a4d0e3db53f69b9b48d404a935663dacab326eae96bbea33ecd102c45 +size 93669 diff --git "a/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/3.opus" "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..da2b25a2722ddc87d9dab69b1816ba847c2c0a2b --- /dev/null +++ "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b729520dc1f0f20f2fec666ad7859d3b82c352ec95d3057ade9f82aef7600405 +size 72618 diff --git "a/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/1.opus" "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6c0fe4f3c853da3e56895b5aa82db817873cda8e --- /dev/null +++ "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3bcc50c9b3e8b49007d0ab195f326f14232b78c0d1d18f565e2277b970519d +size 132182 diff --git "a/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/2.opus" "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..89be1c542c371bb2560a1cbe36f08cd882f052a7 --- /dev/null +++ "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5c88331b8c04d026f76bc47eee1929d9600be7363a47db9a678559929a4347 +size 95587 diff --git "a/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/3.opus" "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..88307301f566fafcc2816dd06cdaeabf4ffbbad4 --- /dev/null +++ "b/samples/\345\212\240\350\263\200\350\260\267_\345\277\215\344\270\270/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259d5ee00d2c5b1a98c105280d3d173cfdaa495a6dda69ba4ff6742111bb5ea1 +size 145544 diff --git "a/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/1.opus" "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fb11a8657e31b1c36e32ad046867df6ec6f589a9 --- /dev/null +++ "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1077dcdd96b6e8a702a779151bf9de661c2f44663540305b3853db07cf34bfa8 +size 98574 diff --git "a/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/2.opus" "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c25d1fc0bb233bbbcd859ab9e2534b0e94d261ac --- /dev/null +++ "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60677a283e7df56b222885e5a625cc0d0bbcceb6596713e2fc340e759515a12a +size 93904 diff --git "a/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/3.opus" "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..22a459d455809b4d9bbe49a92e9094400e9cc241 --- /dev/null +++ "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c631200ce4a5b584d9614bf5258d1bd3187e3ce57bc98461b7467d45977537 +size 86024 diff --git "a/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/4.opus" "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b3a4df27a3157509af8e38264d1dd2ee0f8c983c --- /dev/null +++ "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c0353a7e8fc3d569b6c032f91fd5d5e010a81a90ab164caa757c61e3c92d03 +size 100711 diff --git "a/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/1.opus" "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..12ddae2163de598f50588b3bb67782424e88e2b3 --- /dev/null +++ "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf47fddeb80861cbe9fd7fad18f5931315facd86a3945bcd89c82eb76b897c94 +size 138692 diff --git "a/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/2.opus" "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5260ed9af81253d7adede9dce8ce437e6abf8540 --- /dev/null +++ "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67ae75f0be3e8a78c4f79f651964ed1c9ce839a839d0eeae6cd99481795e9cd +size 102576 diff --git "a/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/3.opus" "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ef830f11c8b9a9dfa298f47a8eca4cf2109cfb52 --- /dev/null +++ "b/samples/\345\215\203\350\215\211_\346\234\213\351\246\231/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e352b06b8e2d49ce4c0002ed9e182c7041b89d4db5ccf6cd4ef26a12b663cf0 +size 158443 diff --git "a/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/1.opus" "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7cd33279a56977829c2586892d5cb7252b561e6f --- /dev/null +++ "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c00899d506fc537791da52f590b980459c191255d4e96e150337b0afeb5cbe +size 77410 diff --git "a/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/2.opus" "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0883fc0c5fd7f821ad28ba6f132c306ea571c725 --- /dev/null +++ "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddbeff702110522401a10f80b12f2feb96c4c4032de6cb616a61f6216dac989e +size 53900 diff --git "a/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/3.opus" "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..674a04a97e158f47f0f66a4adf274e711914876b --- /dev/null +++ "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fa5998f5b4536dd20d9becf4abac6890e8f9801d392a6953ca06b655523e7a +size 63231 diff --git "a/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/1.opus" "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..07da4e1e7314b366f60f90a9009e1f4476158b03 --- /dev/null +++ "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08026a474546ec096e4894787a38656978d096c69d38fadadb2d56065d982711 +size 137870 diff --git "a/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/2.opus" "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..29d5e6d5a6eb77d1a774e51f115bec476e8f4324 --- /dev/null +++ "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ffb2ff38c0af20662629d453fdceb24127994ffd15f082244c9ba3a802d0e6 +size 106600 diff --git "a/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/3.opus" "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1bffa40ecc569d647b00ffca63be5ecd83276031 --- /dev/null +++ "b/samples/\345\244\251\345\222\262_\343\202\212\343\202\213\343\201\252/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81aab9dd3c65ec4efe723e0e903bfa2293a3d07417cab674f808b4f9e52ef1bb +size 164146 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/1.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2ac4721d6bd893a330f1f1d840b576ba4ea5be1e --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6078e112746ada1f644ceece195e1abafa431e61a5abccd75ed51730efefc2ce +size 71617 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/2.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..df8c39dac97bd6ee7eaf844262b9c5682f4a99cd --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f6b598e95842de3c4845772ab596c74957b215152e0ba87641823bd7f001cd +size 94107 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/3.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ee1accb8da0ee361a55032e378d5dc82a8d1cbee --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe4435c489bd46a7a9df85b837e4fb4bdfc7fc59be9002116d4c7a4896eac33 +size 72626 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/4.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f405a6c791682c7fa8807f65da525a149a395524 --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55aaf1b774c7e3b1c6eb8e532276ec6e8a4a37b9bb164c7f59dc34518e2545d +size 53714 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/5.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cde97b7d373ec63b4da2123ee28bbe011c6654a8 --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c4088f7ebbe1d623ae66160b2ce504f999aba318ec0595f9beea31850e8a42 +size 99741 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/1.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..96e499a8d2c3fb16a2de1c80015e2f2a6ceb8e2d --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985e7a65f9af72a92fe847553cb103ee8e22ca4bf004844eaf6a02b0b2d8aca4 +size 135381 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/2.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7442cc2f54c0dd8827308fd6c47627de8d2784d3 --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f18a4c9765a2f521c3787ce93f24d1a18781bfc7732c0484ac043906ef0459 +size 103924 diff --git "a/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/3.opus" "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ac482d673ca045910f4e50678ac4bbdce576fa9a --- /dev/null +++ "b/samples/\345\244\251\347\245\236\345\261\213\346\225\267_\347\220\245\347\217\200/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2576a004b882e72e4e9e7bdec46205d8e7f96c7d908aecad4187b3f796eb0f2 +size 165421 diff --git "a/samples/\345\246\202\346\234\210_\350\246\201/guess/1.opus" "b/samples/\345\246\202\346\234\210_\350\246\201/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..32ce770e570a160ec240e12b8f8869a3d71ed8e7 --- /dev/null +++ "b/samples/\345\246\202\346\234\210_\350\246\201/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9a0a666a7d4044614a5559c8902d843f2559f1dd21a43bb842dacb8176a5e9 +size 143827 diff --git "a/samples/\345\246\202\346\234\210_\350\246\201/guess/2.opus" "b/samples/\345\246\202\346\234\210_\350\246\201/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..feff11c8f443e6eb0769f1300634157c476af470 --- /dev/null +++ "b/samples/\345\246\202\346\234\210_\350\246\201/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e91ba4427c69e0878c1b2b729f4232ecea01089546ee924a5a89a74732ff561 +size 79085 diff --git "a/samples/\345\246\202\346\234\210_\350\246\201/guess/3.opus" "b/samples/\345\246\202\346\234\210_\350\246\201/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4fbbd54a8a81e960d25b34d799bf2fdd2eaee9ff --- /dev/null +++ "b/samples/\345\246\202\346\234\210_\350\246\201/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd6205ee6b7d415ee900cdd7c6c10ecd02b35e993d05329b9744eba1c75f83b +size 117343 diff --git "a/samples/\345\246\202\346\234\210_\350\246\201/guess/4.opus" "b/samples/\345\246\202\346\234\210_\350\246\201/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..907f1d62e4c5df2a4923625f55ee44f3d87548fe --- /dev/null +++ "b/samples/\345\246\202\346\234\210_\350\246\201/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f2c99cc554107f2beb30b37d368798ca43978617d96d9360830280d91ef951 +size 114282 diff --git "a/samples/\345\246\202\346\234\210_\350\246\201/tts/1.opus" "b/samples/\345\246\202\346\234\210_\350\246\201/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a590f90126517f894ff4afd35aa1621016b624e5 --- /dev/null +++ "b/samples/\345\246\202\346\234\210_\350\246\201/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037f7f8c6b5890e2757d6436704b57f4c4f251b629c1da1fff83ec592148b1a5 +size 138353 diff --git "a/samples/\345\246\202\346\234\210_\350\246\201/tts/2.opus" "b/samples/\345\246\202\346\234\210_\350\246\201/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..efdbbbb641f3cfc2f7e5ac5a174bb5dac751e9f4 --- /dev/null +++ "b/samples/\345\246\202\346\234\210_\350\246\201/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29accb3edccb075e76df9a2860c3ed554c9c35b74b4027d9017ec9d424df076a +size 100324 diff --git "a/samples/\345\246\202\346\234\210_\350\246\201/tts/3.opus" "b/samples/\345\246\202\346\234\210_\350\246\201/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6552d84c5d566f91d72f8a0ca9a915f5e5db71b3 --- /dev/null +++ "b/samples/\345\246\202\346\234\210_\350\246\201/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc578582cf8039a14aa7335a183bb9e9007dce14929e2872995dbfd2934724e +size 156200 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/1.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3f1fba0dd3188c4158c5f896a4e59d6b77e57883 --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbcd6d51b66a3e8a0157714d2f3d2327c53691265cb8ceaf40c88d0f10caa9e +size 50979 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/2.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bfedab85ddd11186ed95ab6927409e5edbd12881 --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093920d9c30ead20850c76cba9cddef80304b2f370f95243e874a780dbb33746 +size 75504 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/3.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9b8144004dc3f0202ae13f9b2a5ab7fbef5931a9 --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10225300075f6166cbb520fc44670dfe2e4985e026068b3f6240328a8cd51e6a +size 172172 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/4.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..424e5880d2817cef8704c5ae2e394d8b921cabb2 --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17769b230a9a2ff4f78632508b8f0ebc4f25e5377c2f50343aa1fc272be6a4e9 +size 125747 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/5.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..238c3e51d135e000e2176b340010026e258ef135 --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfa8784ab9b961666c1d88a993f333f61cffff08baf1f7f27c6db0e90a7a4fd +size 143638 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/1.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ab7ea12b75ed2ae5e989017180d8711eaa019513 --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d7482bd2dc8eeee22d7dd6f5a32f1ee7fcdbdcdda4c8b5bd167cbaada2643c +size 154726 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/2.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..19e5ceded9cb815ed6b3a4368f68806ed549273e --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c25d20e037ac9ecac382e987682141750c2d42e718051f3051edff197518aed +size 119334 diff --git "a/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/3.opus" "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..47c56a6c8d51a1d42dc15c323216ef39393c838c --- /dev/null +++ "b/samples/\345\256\210\350\260\267_\343\201\223\343\201\257\343\201\255/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e06934ca10ffb99774175e4de909bfc4a0446c0e5881dcba5d24467135b6377b +size 192064 diff --git "a/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/1.opus" "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8d51b4a21706803513fec97797b5f0d065cedd42 --- /dev/null +++ "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15dc6d28d70096ff3a6531c12e8c709478e851d71d4a7be5cf5dcda7ca324260 +size 109035 diff --git "a/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/2.opus" "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9e3fdf1f1cd1b39fc22dcd44faa1049ebda357be --- /dev/null +++ "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4570691471291968bcbc2fc919c3f69b0295926eac65cf463c11c5ed27d947d2 +size 118590 diff --git "a/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/3.opus" "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0c49125e6178d05b558f4796e262fe537b423c6e --- /dev/null +++ "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ef5c7bf0db98141ddaf527c7b2e6543f05b74e80f87c8b5e2ca9c460686266 +size 88993 diff --git "a/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/4.opus" "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..58fc662357faadb1805e59017f0dcb0ed7d5c93a --- /dev/null +++ "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f52eb3dbdd520aa857f5769c638ccbd8b194b43268033058c45c9112c5657d +size 105188 diff --git "a/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/1.opus" "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ba413800117f10adf9dc5b73a622dee4f2ddaded --- /dev/null +++ "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88233ac127372f65558a720c5dee92ecf787f1b6490fe169334d310afb19a0b9 +size 126468 diff --git "a/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/2.opus" "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..baac1c9729fdcb05d6dfff6a0e859b20f2b803e3 --- /dev/null +++ "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec62cfbbb8f0da90982988fa5c5e1ae0c66a3fbddcb7537ca136cd2a8a73dbcd +size 97776 diff --git "a/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/3.opus" "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ddfa5b3ea9e911cac0b755a3a6fd08477122211d --- /dev/null +++ "b/samples/\345\256\235\346\263\211\345\257\272_\343\203\237\343\203\252\343\202\242/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d237cf72060e3b2ec3a5566bfd4e6a12a2a36a614c82a08c9f1f05b1b06812f3 +size 147983 diff --git "a/samples/\345\260\217\345\244\234/guess/1.opus" "b/samples/\345\260\217\345\244\234/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bba631816f28c733db0fe545f5eb5d8074e0ccf4 --- /dev/null +++ "b/samples/\345\260\217\345\244\234/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea269e8a3b2f40916d7d2e0c627e84e4389c88d35a2433e9f1c6ba2b6cba585 +size 66521 diff --git "a/samples/\345\260\217\345\244\234/guess/2.opus" "b/samples/\345\260\217\345\244\234/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..39c565872f533b56eea35e63539b594b7c967894 --- /dev/null +++ "b/samples/\345\260\217\345\244\234/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854f45cd5eed53d4318192cd22636beaca01017da6ef6ccca32ee6bde7578d47 +size 119702 diff --git "a/samples/\345\260\217\345\244\234/guess/3.opus" "b/samples/\345\260\217\345\244\234/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..354b507ddc9447df2ef1a276be33f0ef41600f87 --- /dev/null +++ "b/samples/\345\260\217\345\244\234/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd17deaa6d474cae3acfee8920a0e0eddcf19bbbbb68ac39995a89a567cfc4c7 +size 76495 diff --git "a/samples/\345\260\217\345\244\234/guess/4.opus" "b/samples/\345\260\217\345\244\234/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6ca27bc59c6e8cdbdd10fbdb16e4d356d534e083 --- /dev/null +++ "b/samples/\345\260\217\345\244\234/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7e535eb8e69c5525f60ef2ae1b96a44f65a069f95863b61942ddc3531254d4 +size 108103 diff --git "a/samples/\345\260\217\345\244\234/tts/1.opus" "b/samples/\345\260\217\345\244\234/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..43f8c830559f371ef4614194c19d55ae2b34e164 --- /dev/null +++ "b/samples/\345\260\217\345\244\234/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3021508544bcc2b917838a871337ea08c9d88dfd0a0be01b951ac4234b02e789 +size 139825 diff --git "a/samples/\345\260\217\345\244\234/tts/2.opus" "b/samples/\345\260\217\345\244\234/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7bf9a2ab1aa1056b23c1974865987804bae393eb --- /dev/null +++ "b/samples/\345\260\217\345\244\234/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1019b65d5a38e450d9347642d6bbc5e939c44c14ca045c01d6fbeb764bd1d653 +size 102960 diff --git "a/samples/\345\260\217\345\244\234/tts/3.opus" "b/samples/\345\260\217\345\244\234/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ce66ba3d0cf3117bc47f775f7ec0162baebaf894 --- /dev/null +++ "b/samples/\345\260\217\345\244\234/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04b91bb32215570ee813e33deeae51121dbbc2194f43cd588661673d8d6a90d +size 158304 diff --git "a/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/1.opus" "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..570939f61cab597553a46cd3313b09b0b55c0855 --- /dev/null +++ "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6cdcc36cbbf152a05ee3926d304893866855450c64c8633412f8896915de79 +size 109376 diff --git "a/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/2.opus" "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b50eb5befd651f62edc8b3ef3044ad715ee0307f --- /dev/null +++ "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10797ee882348297a49fb55495640ca6ae37cb1775264e382202d3dc75b69031 +size 131333 diff --git "a/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/3.opus" "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..25218e1b99f9fcb1349ab1973a042c380b517763 --- /dev/null +++ "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e6f7e2ce96b9972043ec3a50bdde2b9c075d54549d7f1a068d26cc5820b7e8 +size 167461 diff --git "a/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/1.opus" "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f9cbf482a376c50704b945cf87f047893b7cc9b5 --- /dev/null +++ "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1661475bdfbd6415c29cbe7e1e1f9e4767550dfe89b17dc33be958ddb910cb7 +size 128285 diff --git "a/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/2.opus" "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2e43cf0563501798013662ec4a8308a8cc86531c --- /dev/null +++ "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee438592bd98bf0e54dac107225fa4cb82dac1b4bb4f48bbdaa231b9a3d7eca +size 90305 diff --git "a/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/3.opus" "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5330509bf6d4a4e384e4247ffc688026a53be311 --- /dev/null +++ "b/samples/\346\226\260\345\240\202_\346\205\266\344\273\213/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb0d662eba5469d6476822298dd6d6fd10dfd32c180970bff8f79d06d8e1d33b +size 146554 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/1.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3c6c455f916a38bf40f04a568572432360f36970 --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6caea9d4fa035fb1b1f85f85437bc08843ae8647e36457bdcfc502343a36c19 +size 156652 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/2.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..16741110ce115f7773624465db0ca28bd06f3865 --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ecbd036368526ab1a587dd0686a57221a42dbee0df3926b20de9f3d851a18f +size 146276 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/3.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dd468b99ab151c1b24fe3c97015889e53c90e586 --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7769b1f9c219843dc32558f5c9dbb4adc4f5f593960df420ce94c77f6392cde0 +size 123169 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/4.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0a5de54fb5a29c8df44256f4bbabfee8ff305c9a --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952bf63bf9d6b81b8b725c03f0f86f9bd6e9073c129649911d751939524cbb5b +size 98836 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/5.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..32a379c6a50f302b2a64a4b7b20da66c9b3eca93 --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d685766c5610be68341225bd0e12915aa16901a9f2678c829e8e197008263c +size 156982 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/1.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..875b883eb9c812bdc9573ee7f8f8e91d589a7182 --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fcbbd684e99f6b67752f881978acd93eaf0f29797905b4bd0945da62d14bcd1 +size 130747 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/2.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e09aa4589451f752746379eaa85f146261e4c6e9 --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7ba865f9a3a7e25e68dbda720754c6fcd16b09882e19d95ff71f797c9bb38e0 +size 99423 diff --git "a/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/3.opus" "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e2bd88865d16ced15fc2d48d2e8ea478cfb0f20c --- /dev/null +++ "b/samples/\346\226\260\347\224\260_\345\215\203\347\264\230/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f0165810d399123ae51ee7eeba8a5f1b79fc2775d253395cc7d7586b79f6a61 +size 156955 diff --git "a/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/1.opus" "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ce081bee7da6da0a31eee7026a189229630fad36 --- /dev/null +++ "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01935b5cf44f0c24fc93bff6ba2b30e56f1553617f17e32af4415090ad51ad73 +size 63551 diff --git "a/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/2.opus" "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..09cb73d7e08992f86dc3dd8aafc31b9a54f8f921 --- /dev/null +++ "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7e07bc8865b075d77be028ab7dcfc312006f2f526d8fcada5f4e2f9e6cc12e +size 63898 diff --git "a/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/3.opus" "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fdf1723bcd785adacaf8889ccf18d79fbae793f6 --- /dev/null +++ "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07aedf528134eea0b10178bdf750aa4f4a0856bf7e8acc6ebcb33b7a54d2163e +size 115670 diff --git "a/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/4.opus" "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..37209f1072ce95055fcb2092cccbbe1baccbd41a --- /dev/null +++ "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916b5fe92d8acb3c00beb08b26afd885df0a31136a8dd35c27b9e4f36d3dcce7 +size 60781 diff --git "a/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/1.opus" "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..99f219db5576da4111744df643bb1ab0e74521b0 --- /dev/null +++ "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad503833166484fa973b93790c920ff7949cd0e1a1bc8b9bde80f7f73a86046d +size 129075 diff --git "a/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/2.opus" "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..326c3e19ea380ad09e164fcf3104ed1b19cf03ba --- /dev/null +++ "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85aebe551ef9303d82502caa09ff7177694f5a1403665c4d47f85b4692429100 +size 95385 diff --git "a/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/3.opus" "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0e61c0b989f4d52280f8be55d40ff68017c94775 --- /dev/null +++ "b/samples/\346\227\245\345\220\221_\343\201\223\343\201\223\343\201\202/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996c44debcebeca8a55d49197f3c3a9aa7d561a00076cdf103f6ddf722f15b1a +size 142625 diff --git "a/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/1.opus" "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..422aa0fcbe957780d2b6f6e28f36809de268ff7b --- /dev/null +++ "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4c1849f102917e1ebcba5262e894f485ce28c3ee93db2640ab802f6e773105 +size 130771 diff --git "a/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/2.opus" "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d38a57b481fda5bffa7c66e7439a6a2f70133fac --- /dev/null +++ "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118e5a541ce2ca482fd37a99e5e8f24f3dab531427f7d5eeb904d4f27342d948 +size 121040 diff --git "a/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/3.opus" "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2dd8cb4c3bd5df4f5f68d9a3d56034b1474ab1ff --- /dev/null +++ "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92537e4f269d506ed9eae2cb75bd9918440edb1410be51f1cb4cd5fb5d9c917 +size 87389 diff --git "a/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/4.opus" "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..43d6ffef07158a6739997faef00641824054f327 --- /dev/null +++ "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a68e1f60e587d5484dbedb2a43ce1c11cc9371e3dfe26d72c5d7b9b29d9a014 +size 147653 diff --git "a/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/1.opus" "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..953b6c762c895f6d6bb2a1e406ea1fd454f6428c --- /dev/null +++ "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab15bae9f0a2cd296f8359a9dcbec94ab0909a8b894745dfe01942f3fa2c29e +size 143594 diff --git "a/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/2.opus" "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a0a9f1ddafc9a4d265275833c5be08b040dbe0c9 --- /dev/null +++ "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e975b190bcb7a87a14ed6264652a0771af3437cd947dc43f2be98a7e3458981 +size 112995 diff --git "a/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/3.opus" "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e57907c8c92d1f02682a31cf8a3673acab932412 --- /dev/null +++ "b/samples/\346\230\245\346\227\245_\343\201\262\343\201\276\343\202\212/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33b8490fb0f905417dabd8cdacf76903b857c245244a034be87d290fb3ff39e +size 171688 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/1.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a43e762cb8b67818e8dfd5ec4a52c04d38f4cbb1 --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6241a9fb8f7a463a84ed718dccf22b2cc62c5ec94464a0433df4e38c9f9850 +size 79122 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/2.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d2682b843e15b8f7e2ea86ce3ab9f483d9d9092a --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d6eb352b9b87c80c0eb42fe4e97dc4900846209479f077392327490c99ea17 +size 84808 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/3.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3d0c7cbeb4b69a2af3b1c39ee1c2ea991195fac5 --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c5de3df510dd7f6d2160cb0fc00c57f54e42afc703bad429931cd91750e4b4 +size 82993 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/4.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8364183cf21e94bbfa47e92e3886fcb699123667 --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f447e179f2186f5eef6e9dee8b1140883ce588208d4f664ffbd29f16e2b4214 +size 91130 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/5.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5d17823b9bdd33816a4269c77e2bbd2f0ad9de12 --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e1495d1f72a905a90a58a744fb243e50a932df96bc4b6bb13d3001fb425122 +size 65355 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/1.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..99b13fd32f525102d4d8b325b8a7a9c34edfdb99 --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5209d18833fe53f783f469c37a11296623b7a3ad5f2dcf7eb4753f3ad34ddf03 +size 120371 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/2.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d1591f6ddca67e7041d7fffe1227e5edf5064444 --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8d5f14bc473cce06457752144e32b51bb2c655bfc9156dbda611aec9a4cbe51 +size 88678 diff --git "a/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/3.opus" "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e19b0cad2e1479153049773f733763ca3b83de7c --- /dev/null +++ "b/samples/\346\230\245\351\207\216_\345\245\217\346\261\260/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703ddaca0d23505a66c806c6f54bbbdbc95272cccf4ed974b606a8d37645083d +size 132650 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/1.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e6b2bc09a3a9e190b8c7f487b926fb9fe2a222d6 --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815df065d284b33a1ec09e97a39bdf66680ec44e35171984e47b5fa1a1732bb9 +size 168602 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/2.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..320cd73af7e8d98e345cfde8405f080dc8cab904 --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c65e9cf5a252997b4bb213d472d149d126c3b35f839cc2fcadd65436649a1a +size 150385 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/3.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ae12d7688f24cfab23599a0b835a85fbeea3809e --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf1ab5e9b22a3429837660c1797a747f26d9fa580c53c4871069ecca1c319d7 +size 206248 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/4.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..be0eb40f63014577e0c0b441ccf0c983b312be03 --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c644d75296ae65d220b7cb523825fc05bb21bb760813d32b1d2daf7a23928cff +size 126642 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/5.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9c06009d0348b4cb46a6a22426ab877030e3b203 --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e60711e2189c2208ab002a804a4c3690fa75736daa71660ee3cb96393a505dc +size 108419 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/1.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..48e3e56444b724349437584b65ef53885cec2710 --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81f466a126892d71698431dfdb457d0a24461c9b99b448b3e7d4148fa020d6f +size 145208 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/2.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a0c3f24bc51653ac67068b70943f497e94207d56 --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfdf5dfe373b7982f42798411e859a2e6a2aee8d634c3340495b47ea209b7bc1 +size 112968 diff --git "a/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/3.opus" "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c194372f75c189c7f076dfd463c092eb5ab7760d --- /dev/null +++ "b/samples/\346\234\210\345\237\216_\347\276\216\350\230\255/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a950e1a65aec8fef87dde27c2f9d907d5a105fea4fcea740a6f02b9a6905a55c +size 172483 diff --git "a/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/1.opus" "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a43903b2b8216baa10d902d3163484431f12f376 --- /dev/null +++ "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655bd01c80230292d5ed64a9365007cb092a8a1c5079bfe9f4cbe7404e5b214e +size 71628 diff --git "a/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/2.opus" "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..16689a837904ff6cb0ce2e068828832680c8fdf7 --- /dev/null +++ "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c6ee2efb0796d942344281bea52baf2ee266e2445be7d8d185f1433a5aedc7 +size 53375 diff --git "a/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/3.opus" "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ca65b855ef53f6802763a596471148c818ae7fb6 --- /dev/null +++ "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea3745db5a87c8d70b5d9de3bdeb2a0c465b18778d50047c921513d7eafecdc +size 86446 diff --git "a/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/1.opus" "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..04ff7f8d49c7cab1c48cb323fabd7e2be7c57f67 --- /dev/null +++ "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5bdf6c5fc8626f76c39ab5dacb076ab4939ac63f7d1e3b2d6f87fc230b6d3e0 +size 159097 diff --git "a/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/2.opus" "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6bd9f458a8f54f76cf441ab5434984310ec4cda8 --- /dev/null +++ "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65cee745c9e454c2fa46b62fc9dcf352ca4deb32999f04c7ba8a5bc2a4def50 +size 115637 diff --git "a/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/3.opus" "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5bf6b4a6163a81f53efc07b7d08587032350f707 --- /dev/null +++ "b/samples/\346\234\210\345\263\266_\345\215\203\351\201\245/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a800ceafb8c940e18474f8ce52c51c8bdc4478143a9e2232140aa247b81a948a +size 175992 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/1.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9202b89472112150447efbb5dd9012dc6e0bf073 --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498b5abe952232f05e3a3fff1dc1d5c8a3bb1a6b48a821059e6047e054a02a21 +size 185915 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/2.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..45bb5e3b23b745e6601737c48a61f8bf2f37c36a --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff0ba123ae3e99505fbb52e77675634020d1a712e1113f75c8c10356de526ef5 +size 140438 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/3.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7ec05e0ed5d7a003888d0d3390cbb424ac2a7533 --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43b4e55d8feb7abd6623d9104b94c5da49e558273f96dd14088609737ffb156 +size 102036 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/4.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a4d15e67e3233be4b4d67608d519a51ee6450f7d --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f619450b29db448ba03d9381a7115e64f7ff1edc1ceb49b6716e6ba92868b6f8 +size 78451 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/5.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8a541b817d6ffd5b5f0f99097386df0ac962e986 --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03f1ee1f89f640af4050b5020679366cede4b1f3de0b4876a75b15728a6afbd +size 189927 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/1.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..860055962c32f1086397eb39d0e774b4dc790d1e --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ccafd683f51c19cda7e079a0cdd74d046a50be0af7f2110d1ec000ac5128e73 +size 135574 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/2.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a2ad8e6f56bfbe0af71eb876ec4b7cc235dbe1fb --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9e899f002d08c4c5e63f6f63871374d760f02c3b74a1aff1c4a0c720ba0c04 +size 102671 diff --git "a/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/3.opus" "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7bb3ea34bb9f5e53809fd5bb39698f604f2ff641 --- /dev/null +++ "b/samples/\346\234\210\350\251\240_\343\203\210\343\203\257/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375877151a02afd1159082a4ec5555eb1833797144eb74aa83c29a03da04854b +size 149198 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/1.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8f73886b7f9c16b9af7a0681efe884cb47a5a71a --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ac11bd9ae2685b3556f08a899284fea33e9214d5c12ac31f176b3e27299636 +size 78937 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/2.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..01485c6e72512088c7131f45e2380754da7fc271 --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61de88418e19a02a4e15269ecb01e3b94e3e9f99f404c32ed1893884e7956e4b +size 144371 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/3.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..329e1fdb0d9436c6ee2b9d7253d583dc525bc679 --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da1b2ebc545e47579a74c1cd0a46f0fdb30371140eb7bc58caf7daa4f13f2930 +size 114894 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/4.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1111d662bdd1094fbce1e18919c05abc1f1349d7 --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c8bb8c033a9fe37bedaebb15deb8a69fc4f0f6c8791e67b944f62ee49281a4 +size 41567 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/5.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3852dace7fad338a2efdd5dcef3f774d8fba1e22 --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5870e754e314745d8f49868f3b218b923fdba4dba2fadc2027d6043216f79bf9 +size 61097 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/1.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e62a89a1180dfe896e724a41854d50f07ca3dab4 --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f244be874696079bd97aa25b3ee7058e7f00af278f66fc4d730a9a739285fad6 +size 126279 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/2.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dfb04d6c2020bf11394b93a57dc3b9c60049e484 --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:557e817a0c984573324a3c6998567e207fc60c256abe8b1f4d5da3db45936e0e +size 92633 diff --git "a/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/3.opus" "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ec90ba3feb885a4ea7cb199bcb97f4c1400d393a --- /dev/null +++ "b/samples/\346\234\211\351\246\254_\346\205\216\344\270\200\351\203\216/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e29bd59d5a48a2ca1ed7dc0edd63d50a739f4e4ce08d451fd42b186a7b5d3c +size 142316 diff --git "a/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/1.opus" "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..995a6117e1192dd26757f9c116031e702c84265e --- /dev/null +++ "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09f6605099c067940e28638c780e6a0af649f3eecf962f1446af80142c6e5ca +size 78469 diff --git "a/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/2.opus" "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..25067d95942114e77bd1930b6576129c64847fa0 --- /dev/null +++ "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de63af143bed63959586fcddefacea3dfa110c3b9811563090594911c35d9073 +size 150906 diff --git "a/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/3.opus" "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cb25eb5b11648c2e5cf408c981b41c56d0c7f01a --- /dev/null +++ "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09561ce61c2bfca9e2bdcff2fc1bc3f605b4a22937fa17884b95f4ce089c0811 +size 116082 diff --git "a/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/4.opus" "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ed07b89af34ff42b07e686e4e4089be07e99283b --- /dev/null +++ "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5f946197a337328b3919ba1008b96fdf3a4d7b852279f7d63465599c7db7a0 +size 86632 diff --git "a/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/1.opus" "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5bab4a1aeb1d6a46819901176c4f61b65420ade9 --- /dev/null +++ "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc7ea60a52ba9279fc96cea0fa304337d16b668b2ef837ed21dd3467f7f5a1f +size 138787 diff --git "a/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/2.opus" "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..13ada48185a510f37a8781d34ae5fbf4502bab7a --- /dev/null +++ "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737a714d4e316669dda4f8de1004170df676e9b0c829bc4c78edb6325cdaa091 +size 105550 diff --git "a/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/3.opus" "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6cb5d1197eae20bba1bc7f85c7ad79fc4f1f6e31 --- /dev/null +++ "b/samples/\346\234\235\345\207\252_\343\201\227\343\201\232\343\201\217/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc9a0192f1d09b86eed9f1d75c7de82f7a145b34013189f7c941078b0d807f15 +size 165454 diff --git "a/samples/\346\235\216_\346\230\212\345\244\251/guess/1.opus" "b/samples/\346\235\216_\346\230\212\345\244\251/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..64ee5fe51aec8121ea097c5ea50e43a716aff9ea --- /dev/null +++ "b/samples/\346\235\216_\346\230\212\345\244\251/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73dbd640e6df719717fb164194ffe662776f112fe2e7999aff4054ca3adc15d2 +size 30067 diff --git "a/samples/\346\235\216_\346\230\212\345\244\251/guess/2.opus" "b/samples/\346\235\216_\346\230\212\345\244\251/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4139a0a3b03fa84ee7cc50fded8fa80529825088 --- /dev/null +++ "b/samples/\346\235\216_\346\230\212\345\244\251/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4216de83714a1b56982ff75b4636c358ead8bbaac99d7c1033ba7173396d958 +size 60227 diff --git "a/samples/\346\235\216_\346\230\212\345\244\251/guess/3.opus" "b/samples/\346\235\216_\346\230\212\345\244\251/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6d19bdcf56b1e3f1c1257198d5db198387269b0d --- /dev/null +++ "b/samples/\346\235\216_\346\230\212\345\244\251/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d0cdc06b8587303c025491345152243d77fb67b250947bda9197c578cef81b +size 124594 diff --git "a/samples/\346\235\216_\346\230\212\345\244\251/tts/1.opus" "b/samples/\346\235\216_\346\230\212\345\244\251/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a18751a65d802978bfc8fd70da6b501f60ebd13e --- /dev/null +++ "b/samples/\346\235\216_\346\230\212\345\244\251/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c57dc08be83adb0244fdde60a81e81e1f5be84c677e0247cca9dd47a88d6ab9e +size 133791 diff --git "a/samples/\346\235\216_\346\230\212\345\244\251/tts/2.opus" "b/samples/\346\235\216_\346\230\212\345\244\251/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2eb4e1ba3547e464c1e699c4a260bbec47bd8084 --- /dev/null +++ "b/samples/\346\235\216_\346\230\212\345\244\251/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829ce287b0520c71ee470eaf4590b65fe69711e0eff0264b98f032810e582d6f +size 97882 diff --git "a/samples/\346\235\216_\346\230\212\345\244\251/tts/3.opus" "b/samples/\346\235\216_\346\230\212\345\244\251/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..43b333982c6c892873e9cbfffaffd1ec3c11deb4 --- /dev/null +++ "b/samples/\346\235\216_\346\230\212\345\244\251/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d237d3966ff1e3f9b602e85b0112f20a10cfea3d0baf63109c7aa3da746a6617 +size 152615 diff --git "a/samples/\346\237\264_\351\242\257\347\234\237/guess/1.opus" "b/samples/\346\237\264_\351\242\257\347\234\237/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..47b1c666d64e0a6e6388829cda464028ea649799 --- /dev/null +++ "b/samples/\346\237\264_\351\242\257\347\234\237/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa262a1bfb4e17536802445778e5ec15dd6c54f04483057756b75e1016fa5d11 +size 74693 diff --git "a/samples/\346\237\264_\351\242\257\347\234\237/guess/2.opus" "b/samples/\346\237\264_\351\242\257\347\234\237/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2e09a1cfe293da9cdfadc4533323f4880b5046b0 --- /dev/null +++ "b/samples/\346\237\264_\351\242\257\347\234\237/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acfa7837dcb4459df0eccca8fb9692f530d46252dc8cd7c583bb550004238308 +size 18852 diff --git "a/samples/\346\237\264_\351\242\257\347\234\237/guess/3.opus" "b/samples/\346\237\264_\351\242\257\347\234\237/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..36ef6d56e4d90234d236345c4845444ced024709 --- /dev/null +++ "b/samples/\346\237\264_\351\242\257\347\234\237/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c465c46bc8ddd29b69ca20e250ebff60ba39b8c045c354d78f586692a099d2fc +size 66600 diff --git "a/samples/\346\237\264_\351\242\257\347\234\237/tts/1.opus" "b/samples/\346\237\264_\351\242\257\347\234\237/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0386ab78eeb2830099b8531a2ebfcdf2ce01f6c0 --- /dev/null +++ "b/samples/\346\237\264_\351\242\257\347\234\237/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3111a840b1b80c81c878f9fde470e0fbd5a72db31f0a489644f3c2b933047bbd +size 137307 diff --git "a/samples/\346\237\264_\351\242\257\347\234\237/tts/2.opus" "b/samples/\346\237\264_\351\242\257\347\234\237/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5f0ef74a0cc1f0c1f570aa90a20de9d7adb99b30 --- /dev/null +++ "b/samples/\346\237\264_\351\242\257\347\234\237/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f39fd4aafd84545b1d77457ad4165a8cd54061b4f5ac67dd99cf3b899b5bb8 +size 103148 diff --git "a/samples/\346\237\264_\351\242\257\347\234\237/tts/3.opus" "b/samples/\346\237\264_\351\242\257\347\234\237/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..66c3ff91c4c4987affaaf32a78442d7268b5819e --- /dev/null +++ "b/samples/\346\237\264_\351\242\257\347\234\237/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1befccf4de4b782dd70830cdb8de5a5c13e235268563cbf4bc91ce7fda995242 +size 159551 diff --git "a/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/1.opus" "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..906e30087a1c853e5838e7befc66550f0e861d0b --- /dev/null +++ "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d74330cf8d7980c7095502a218df3c3967509c6337f028906943e351b6dab9b +size 74223 diff --git "a/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/2.opus" "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8b14c9608e237c097ed13d71abfbc546d660c771 --- /dev/null +++ "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a0ce5bd2b8e9f1be8ab407d606816efd4612784d1eb00b4ca5c566d9057784 +size 43518 diff --git "a/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/3.opus" "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4c5a2a215cc51b6d470cee48b188086115a8e088 --- /dev/null +++ "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7e0717602875065829584caeefd56f738d3b24bb62a9913bbcfe7ed9700470 +size 32188 diff --git "a/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/4.opus" "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a25bf62a7963328a5487b191d2ca392902afc55a --- /dev/null +++ "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e6acba502398f33a67ab1c8c0ae1c0c1fdeab51ec7154a8d678d0b5a6f620f +size 45511 diff --git "a/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/1.opus" "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fc3d66db248d5d98e343698a542175b112d99c8d --- /dev/null +++ "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bdc9b2cb6f2a64a1d8e91c811e1d8d6a3e927611c7ecaa4a54058ede4b35f75 +size 128894 diff --git "a/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/2.opus" "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4767d783bfa7177175699a11fbec3e0730955ada --- /dev/null +++ "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81473dd0cd5e1f67fb1bc8fff8482a913207051c2cca1aeeba47e3cea5a019eb +size 96976 diff --git "a/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/3.opus" "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..916a74443fe03f5a57d93a9c77d7384a482323af --- /dev/null +++ "b/samples/\346\241\203\347\200\254_\343\201\262\343\201\252\343\201\237/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12934e0fc08b702da4fa88bf2f157e4510b4a62fdc24269e957e9d19c82062e +size 151578 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/1.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..05b04ac5fc639f3469d18825b35788688c891e9d --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f057db9454999034124734ddf70e9ed54d2a0b74d0edb31a8e74a0d45ee1ee22 +size 191248 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/2.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c009d890fb43888efd439af8af0f62e47a43b126 --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2f28691a9f8d735e25a02dbea3f2b24283270e805cd65e15189aacc49d4071 +size 173948 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/3.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e4058e2b68ec4a8e2959d8b5398d1494b52d0c29 --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc36091e7e6c04aeca5fdf2d86365b503fa693132c441e6d12776b2cbaecc4b6 +size 176541 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/4.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8d47ce965ba1a20ef1dd4ece610648abc4f925e4 --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d519122c8b32fc6371adbe1dd55aadcaa25b15dfbefefa3a37f01cdf5b4362 +size 129005 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/5.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4ee1a4c36550b7697479f28db5a75121ed823b47 --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85131d546768e865eeca2c4c7850aaa5101e0fde8f14305bd186957c449f89b6 +size 209169 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/1.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..76d9356e195be6da869a98eff04794d27b1c29cc --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a88f15b2ec3042371fb43dbdcc14985a52214361f0e6582bd179b1cbce250179 +size 160344 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/2.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6a325928c020e7cd8027cd372d7cea7b30590d53 --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7433ad5d2e1075dcf336f3d36914e19dc2f8e3375a6edd9659df7b83094f5117 +size 116925 diff --git "a/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/3.opus" "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..21ea91d954807653b2ce3eff3ed18d6c924013f1 --- /dev/null +++ "b/samples/\346\241\220\347\224\237_\346\231\272\346\210\220/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37850cae7b938f80cc5984e8502020ca5bc2a178093876e88afbc41568c9a618 +size 179406 diff --git "a/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/1.opus" "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b7d471aac38036f076216af4c9742733200502d2 --- /dev/null +++ "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f49f332a3cdf2f46114e9e9282de2a8de118abbb587a8e9664d6f55fcd88c75 +size 78469 diff --git "a/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/2.opus" "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f221a6f17a10bcb34ed55af84058e9a514b11d8d --- /dev/null +++ "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a03891f2da6848d0501cfdff644c7a379e8fbccd2d0c35b100ddb92da48446 +size 156874 diff --git "a/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/3.opus" "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..14ce3359393d86a790cf59102c3117ea1365605c --- /dev/null +++ "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f6ba8dc5661fc16a8e476420f8a8cf8ce160a66140ed1cda964588ff08c997 +size 101721 diff --git "a/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/4.opus" "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..de718e6d42515f9c17f80c0af8d708d4bd21ed2f --- /dev/null +++ "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2afa6f721a37a39b4973dd9cd37cf22f081ab97f7b1033ab5421d343d9a61c +size 219967 diff --git "a/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/1.opus" "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c44e55970e6b4d2bd661feccd2ff84398abd2a17 --- /dev/null +++ "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638bad8137a20d32628fe49cc213e2d98b47c3a8b95cfce3d5f6496a428ae00a +size 136474 diff --git "a/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/2.opus" "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..37c9e51bf7952971cbebc263f252f62cdbe46163 --- /dev/null +++ "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4802bd479c8773622a9fdad8caf644f0068459dc91867bc97bf79f2fe9b97ae8 +size 106379 diff --git "a/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/3.opus" "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fe1d8ece383ef25a1bd4981c0f3e5680addad416 --- /dev/null +++ "b/samples/\346\243\256\345\256\256_\345\215\203\344\271\203/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de918ba7f56047b727706dcfadb62c69484e468a00986799d3c32ea43d5ec06 +size 163615 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/1.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c13e87524cd58007219cc325ffa3f09f9b58ae2a --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66564bd7aeb4b4d364b8d788f4fb5b9755da84e2d05d99245b070cf400c4b66b +size 109741 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/2.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..60444eb0a803040e776b71cfa33bb04d60733c9f --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81797576fece6e5f44c030f87fba4434ca0150eae14acc444d2356fb2f086366 +size 73024 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/3.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d879028bc9233be88ca1db57a40af3a050e20564 --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dacffd69b3335d0791865904dd88c6c452b6e741e35b46a7469e52d96883a5b +size 89590 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/4.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8eb8dca7d68e1f200ab07ea3c68e726521ce8113 --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e864e36d3f5e8a4b2fb493b680617e35fad0fc90b84ecaa6df8dc9a6f29257e +size 74942 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/5.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3698cc98beb5823b044f69dd1a439a6a28a93227 --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ba4191685b88f921e598fec3e9b8f226dae3b823c96e8c3c2d8eb28aaa5f1b +size 98361 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/1.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3258caaf153717c3e59efab7422de892c3cce04e --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3274e614d32db3c5a59e9b393136304939c544cf5292a50055896d36de2ec84 +size 132098 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/2.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b72a29bee6c738074957c1181b8fe2d27e705a29 --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea338d882166959a7bdbb402484de6ff02d6993295b89d9c5dc27459df7e8e46 +size 93855 diff --git "a/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/3.opus" "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1d76d37c2c9d94e784ea82eb16e4f1e15edb738b --- /dev/null +++ "b/samples/\346\243\256\351\207\216_\351\242\257\345\244\252/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa74c258bb929a1f42c7a4960bee444757753052000b7124dcb96ca57bbb9f2 +size 142837 diff --git "a/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/1.opus" "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e329f4be1469854205831531cb09b233d2a3b424 --- /dev/null +++ "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e183e3f97831f22ca12a7bae45d86adece146846a1c41941f4374fade282ee +size 170608 diff --git "a/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/2.opus" "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a386dfda568b917a30ced07285451964ce58ed80 --- /dev/null +++ "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1e3d0eefc6c287e0a00891ce769d8517f8aed2212c2b4cb0440048abae3953 +size 155253 diff --git "a/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/3.opus" "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8003a9c0a9f9a58698f7d551432eecf4c811e464 --- /dev/null +++ "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebd30238dd257af933e4c9c4601a06e44b9554e326890bfabc3cb51c27a78fd1 +size 135719 diff --git "a/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/4.opus" "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..24791dd3fd14f278b0992978f9843b3e5930e9f9 --- /dev/null +++ "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbab62ef6cb00436a744ce337f4c96a0598d04e2537fdd5a74e0e4a0dc7b86b8 +size 138281 diff --git "a/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/1.opus" "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..865f9a4792ff7bcda74f546b8f48ba3be10ca498 --- /dev/null +++ "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c00d3f6e5a2aaa98655ddc6898da461ad26031cac2c7bb36b2519fc5300f34 +size 123382 diff --git "a/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/2.opus" "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..44867e5a6773ba2b98d7d17a964b35cd12e5e53f --- /dev/null +++ "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f256d6f404cd0b8923cce16f84a54ac45acb30598ad617180ed5781bccdb924 +size 96192 diff --git "a/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/3.opus" "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f61cab8958fd2854a290c629fe07a678e710fef7 --- /dev/null +++ "b/samples/\346\244\216\345\220\215_\347\265\220\350\241\243/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69b8df70661b6c2d927105a6337da6e288839ca0e44a7d7f04cfc4b4bf5e32d +size 143932 diff --git "a/samples/\346\251\230_\345\277\227\347\251\202/guess/1.opus" "b/samples/\346\251\230_\345\277\227\347\251\202/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e1d2eba5eb71869e4d08f0f0a03c8c4ff0ad2dd1 --- /dev/null +++ "b/samples/\346\251\230_\345\277\227\347\251\202/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bb548012ec7ffff15b8ead53844e5b98e44321c34c1a153ed49d6cd7b2567b5 +size 58430 diff --git "a/samples/\346\251\230_\345\277\227\347\251\202/guess/2.opus" "b/samples/\346\251\230_\345\277\227\347\251\202/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..df3e57d383f31571df89ea8275a05490f85dfde0 --- /dev/null +++ "b/samples/\346\251\230_\345\277\227\347\251\202/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae692fc3207fccdc0a818f3d9c92cb93ec8f9fabff26ebbe3cf9863a0c62ceda +size 80661 diff --git "a/samples/\346\251\230_\345\277\227\347\251\202/guess/3.opus" "b/samples/\346\251\230_\345\277\227\347\251\202/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8d15b54e8b8cb4f27586fb951a315aa531ff0c9d --- /dev/null +++ "b/samples/\346\251\230_\345\277\227\347\251\202/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb4b9dc2c10326db73072bc0ad14b8929d91c107c5f3463d09b86cd879aaf94 +size 88595 diff --git "a/samples/\346\251\230_\345\277\227\347\251\202/tts/1.opus" "b/samples/\346\251\230_\345\277\227\347\251\202/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4ac5b648cd835f71692928c390b9282c4ce1e496 --- /dev/null +++ "b/samples/\346\251\230_\345\277\227\347\251\202/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0fec167714fc97672a04428d1eced7a88856914166e091bfc8e9b97cec89a2d +size 129306 diff --git "a/samples/\346\251\230_\345\277\227\347\251\202/tts/2.opus" "b/samples/\346\251\230_\345\277\227\347\251\202/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..46ce1565a5601bad446a4bb873f16a59df546e7b --- /dev/null +++ "b/samples/\346\251\230_\345\277\227\347\251\202/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49d4f3c8bc02a142242b436904fe2612c04889d485c889971475365afecefa1 +size 97638 diff --git "a/samples/\346\251\230_\345\277\227\347\251\202/tts/3.opus" "b/samples/\346\251\230_\345\277\227\347\251\202/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..44dafeb302954bd3a5d17f4e118c74212879e830 --- /dev/null +++ "b/samples/\346\251\230_\345\277\227\347\251\202/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc43a8f4ba84dd6e1b055b7d6b7e881dfa308df0e8df962a01e42137844b91c +size 148370 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/guess/1.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0e12e1dbfae9f4f807cd840738ee4e732c5f0b65 --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b3910dd6bfc2543ca8e7bae468fc47cfd7e090dbd59994cbf07e25724b3d06 +size 115968 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/guess/2.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4cb1f52a76d8d9c5cb685d19b35753da8c244df7 --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1929ed6b2d424dd25fb83b0f4868454829ddb3f310b68797fc5f203590576ab +size 103211 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/guess/3.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cb35589cef1c2153865de9fbd70362c3e10c9554 --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db3ba44070a5dac11801dbdab090ec61b4f8e9ed8aab5056c68263077c2abe0 +size 115617 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/guess/4.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..98a7a75f3e47d4418fd5e488f7d533afbb53c0c0 --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00396e7df381ee9b4f32bd2c208e9e5d3557df8674847fc59b588565d75f3bb +size 71912 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/guess/5.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b24891eb358e857bc48bbe0afebb1c371433b5f7 --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30abc14593b9e2d841fa0a1c9f72ff2dd228c68f0d6cf75c3762412c86d4eb54 +size 44550 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/tts/1.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..34dae3968d17c04264222e38cae3b8a8fc873498 --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466f0ff6c1b8efbdbede2ae004af07887562141325761772a2906d5286204528 +size 149822 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/tts/2.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..55f67ea04c6fceb8d6b0581ca80f1bc265e0cc8b --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e33aae19bfd997b8be695c1c9ce5590c35b556c65d641e05f64d95076b1020 +size 113773 diff --git "a/samples/\346\260\264\346\250\271_\346\276\252/tts/3.opus" "b/samples/\346\260\264\346\250\271_\346\276\252/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..29da2f2d609f7903034b50a2975d8a656bd60c21 --- /dev/null +++ "b/samples/\346\260\264\346\250\271_\346\276\252/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4454a02372e5b1df9263498730ad8f6cf38e8feda2dffc124dc8d5c1d299d1b3 +size 169913 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/guess/1.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b133aadddba05fc31a904e6cf4863644621196e7 --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf720dc0c882627ca984cca951de995e18bb31cb0184f19f475f4bef82f1231 +size 58195 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/guess/2.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2c42800ec7c87c9399515e92bfd41d9bb18df8e9 --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb39980495177dc7393943e48fe7ebdb2266170bd1908a6ccbe3c7bff3c000ad +size 77774 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/guess/3.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e0bed7f96a72e67aec7966ee649c2dfdcd41c450 --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab07f8e9b33cdd437c6af67a0d8706342b7c054c2f4d47772b5223d240e4014c +size 65310 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/guess/4.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..82989d4823dee41e65fc1d8b98c3b201657b831d --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9354d3405d6a7e54c3dfc99c3a3a07ece701476132ece309787c1dd64987a8b1 +size 55163 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/guess/5.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..deceb3d8a5316f8b373fa02cee1336c664a66e93 --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23cd0c36086295ef6d1e444f183c4de59b859b699fc1fcc9a9dd9820e5d18a4b +size 54024 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/tts/1.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..23c135057a4dc25b9725ac664e74011068fae329 --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ecd519c189171d4ad9bb5c80d74a1d61688014c998fd8c70672b385d6f7539 +size 124996 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/tts/2.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bc5482aa8f3c05e03b8d359c5bb4af0ecd7c0ea2 --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f5efc2c3da0478efa316f684b24836d4b906534b7479b319a6415cdea788eb +size 95564 diff --git "a/samples/\346\265\267\351\237\263_\347\277\240/tts/3.opus" "b/samples/\346\265\267\351\237\263_\347\277\240/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..94196bca9450cba342c7a5037d11920e7b057c11 --- /dev/null +++ "b/samples/\346\265\267\351\237\263_\347\277\240/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d1916d354c2ad983afa464fba044e0521199e161327faf7ea59e4ba5170316 +size 147755 diff --git "a/samples/\346\267\241\345\263\266_\346\276\204/guess/1.opus" "b/samples/\346\267\241\345\263\266_\346\276\204/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..676b17cd268eb58d50ada9e88a814807a74ddc3b --- /dev/null +++ "b/samples/\346\267\241\345\263\266_\346\276\204/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c473c65b216d857bed45b320d83ca033d65b47c5a6c98eff5570c8dfbeba1e04 +size 125656 diff --git "a/samples/\346\267\241\345\263\266_\346\276\204/guess/2.opus" "b/samples/\346\267\241\345\263\266_\346\276\204/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c54d6b51f15a161fb7fd5fa9def8bd55c8f8b24a --- /dev/null +++ "b/samples/\346\267\241\345\263\266_\346\276\204/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b049c635cd63f5017cc7ef8cc0199d8b9f7bc618e6342bf2f5244a532d38b2 +size 174216 diff --git "a/samples/\346\267\241\345\263\266_\346\276\204/guess/3.opus" "b/samples/\346\267\241\345\263\266_\346\276\204/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9ad147c9622423e79a4541780c8df210b51d8311 --- /dev/null +++ "b/samples/\346\267\241\345\263\266_\346\276\204/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0bf439a2d0d3dc39f2901602e0e390fbb4daaca21016513c289ab60b085c4c +size 167480 diff --git "a/samples/\346\267\241\345\263\266_\346\276\204/guess/4.opus" "b/samples/\346\267\241\345\263\266_\346\276\204/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f0cbff4408b1c68a5c0fe088733e2a16ad3559f3 --- /dev/null +++ "b/samples/\346\267\241\345\263\266_\346\276\204/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1e3559a07ad26ba241964940a13a07103cb019a8f9b4846c57ec9f40096f40 +size 82224 diff --git "a/samples/\346\267\241\345\263\266_\346\276\204/tts/1.opus" "b/samples/\346\267\241\345\263\266_\346\276\204/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..06aa43d0499f92d9affe81ab7fef515cb33d42e1 --- /dev/null +++ "b/samples/\346\267\241\345\263\266_\346\276\204/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dde32bb0a3a2f11903e98965592409512ad23489d10379e244a3b024fd37b3 +size 139142 diff --git "a/samples/\346\267\241\345\263\266_\346\276\204/tts/2.opus" "b/samples/\346\267\241\345\263\266_\346\276\204/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5fb1ebfc590c7b0039360bc983d48663199bb5c2 --- /dev/null +++ "b/samples/\346\267\241\345\263\266_\346\276\204/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c2333b7583d3d4a4efc02632299b6adf60b22524aa000f4437472c98c7abb1 +size 109474 diff --git "a/samples/\346\267\241\345\263\266_\346\276\204/tts/3.opus" "b/samples/\346\267\241\345\263\266_\346\276\204/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..44f55f5ca42e08f8cd9b9737adeaa414704b673a --- /dev/null +++ "b/samples/\346\267\241\345\263\266_\346\276\204/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055be40277cdd0828eed6caf69ddb8591df6afeb7f9b60fc8b5d3352fcd2b7bc +size 178193 diff --git "a/samples/\346\267\261\346\231\257/guess/1.opus" "b/samples/\346\267\261\346\231\257/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1363d30dc3826c6a9d417ab4c669fe160b815b92 --- /dev/null +++ "b/samples/\346\267\261\346\231\257/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9152e4c7f8f7a2ba9d4648cb18d3c7d9e2e72c625e470af2e943bc0642f49865 +size 70204 diff --git "a/samples/\346\267\261\346\231\257/guess/2.opus" "b/samples/\346\267\261\346\231\257/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3db269b772463fceb1cc9f90b87c5575049f4d6c --- /dev/null +++ "b/samples/\346\267\261\346\231\257/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fb4ea0e688715b9b5672e68e45682146406eb2d5e7bba0797c281d87739b7c +size 84364 diff --git "a/samples/\346\267\261\346\231\257/guess/3.opus" "b/samples/\346\267\261\346\231\257/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fcbfc129de72e6a1194aecb850607bd9a67c927a --- /dev/null +++ "b/samples/\346\267\261\346\231\257/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e92ff6682fd04becc9c926f668788a8c0bcc6adfdcd5af06e304ca2c1140109 +size 53376 diff --git "a/samples/\346\267\261\346\231\257/tts/1.opus" "b/samples/\346\267\261\346\231\257/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..079ebaa8aaa325f6479a2293b82c15467251c2f0 --- /dev/null +++ "b/samples/\346\267\261\346\231\257/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7701139387fd2eb22d7a4288629eb3e4d26cc9a8e5ea7110295f81ab821bf30 +size 121167 diff --git "a/samples/\346\267\261\346\231\257/tts/2.opus" "b/samples/\346\267\261\346\231\257/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1258f8b419c1c8a72a8688e0d404f564f7efa743 --- /dev/null +++ "b/samples/\346\267\261\346\231\257/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f748b321ae44dcf6ed03009ce7535743ce793367123d2474af5def32d63654 +size 90614 diff --git "a/samples/\346\267\261\346\231\257/tts/3.opus" "b/samples/\346\267\261\346\231\257/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..92bc298dc2e0d6fa0d1020ce5e1d63156a5d3ea9 --- /dev/null +++ "b/samples/\346\267\261\346\231\257/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801051883f45ed7d3a6f1db3ceec6adb60e932629feaeb23fbca49f92c348e11 +size 131137 diff --git "a/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/1.opus" "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8ec0639e3f649692ca168c2e805ee0d409b7a53d --- /dev/null +++ "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61278bb721a57237b57481f292ee3bb3633e4ea0aac3a26a7324192fa465f3ec +size 107445 diff --git "a/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/2.opus" "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f98d94f38491525b06b8272eb289bd152bc57614 --- /dev/null +++ "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76130d1e47b74ea42a7b9159cd096c566b17e6f5d458354759ad0b378d28b3d9 +size 153982 diff --git "a/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/3.opus" "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fe57dd176970a1d4d4ed192fbea14382b6aa5a16 --- /dev/null +++ "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1615056760ba90356c027e2b5b1802e70d95a3fec35942ee02ff3a628edc7325 +size 113680 diff --git "a/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/4.opus" "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..55a88a8a065087ab6cc9f9836d2286ddb4fb40db --- /dev/null +++ "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789db8937b016b6bb2c121519bd227a62578e14641a166418552bbdfd47c037f +size 90255 diff --git "a/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/1.opus" "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..41542447e4e1fc0a49204d5f1ab8ea7417a95efb --- /dev/null +++ "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7c9145e9e4657c25282b000e20d1ac1b33eab9667e49dab7ac8f25398045f7 +size 145302 diff --git "a/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/2.opus" "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7ee1897d51d52f071cbc7c37bc962947dc16de1d --- /dev/null +++ "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263dbffc5ebceeed00b50609ef0d503de58f2af5b30184ddab8843c1eace7941 +size 107593 diff --git "a/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/3.opus" "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5503cd8e84f622fce68b820bbacd466318b39a2b --- /dev/null +++ "b/samples/\346\267\261\346\262\242_\347\276\216\345\222\262/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a027a74431d429e4ea45aaaff12b5421564c9325eec9508b4b73edf6eff39b18 +size 161135 diff --git "a/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/1.opus" "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1f0267cef0611c5136b1c9c5387888c194268399 --- /dev/null +++ "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e425bddc83bfe67415d46e5af32362478c0928e7f361830bc46c2c25fd31a2c +size 121984 diff --git "a/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/2.opus" "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7796762c686ec95fb696aa6f482d0dab82b466c4 --- /dev/null +++ "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0ecdbfbbc9a15064b014447976f36281ec4f85d62258f123e462806ed1f8ea +size 161808 diff --git "a/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/3.opus" "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a01ef31121801ba43c9fbed49eb5549080b2a8fb --- /dev/null +++ "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d2bb77d0b0bfaef74a2f74599f00db77935c4c440e47ce5f6a59305ee46509 +size 110600 diff --git "a/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/1.opus" "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f17327e34e6ac3c16979f6b706cfe25125d1a112 --- /dev/null +++ "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0090b0fade96665247fbbfa613e9a6882c5088aba618235a4120e45740dfc18a +size 138451 diff --git "a/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/2.opus" "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3c907ca41849fe9b697448232fb64a63d97d6030 --- /dev/null +++ "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2b06ff9bedaf1651e2f0640dc1a8b162c1add23b61ff563950686db39e63bd +size 107217 diff --git "a/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/3.opus" "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a6cee7634dcf363fb5f7ce3e4b7550377da80e95 --- /dev/null +++ "b/samples/\346\267\261\346\265\267_\347\265\220\346\266\274/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0bea6d89464047ccc93936d917204a1e8df021f40a9f505bd94badc76ddf02a +size 155378 diff --git "a/samples/\346\267\265/guess/1.opus" "b/samples/\346\267\265/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3380d7e644e279cd3c4a91f038648f9548dc74aa --- /dev/null +++ "b/samples/\346\267\265/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46bdec4a9145f275f638f4df84cdcf5265dade5502a4af4b55ce98c614c6367e +size 106315 diff --git "a/samples/\346\267\265/guess/2.opus" "b/samples/\346\267\265/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..59bb23296b550eb03953c65cf702c52592002c53 --- /dev/null +++ "b/samples/\346\267\265/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f233f6f8701f5c44ec8d54fb418b98b9279b345b1a5cf9d6f8e13182bdac29 +size 70278 diff --git "a/samples/\346\267\265/guess/3.opus" "b/samples/\346\267\265/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f997948e2c94e6be4b69629810c81d773bdc62f3 --- /dev/null +++ "b/samples/\346\267\265/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f03914be9e0e267c74d0b9af7013aa6e3d8353c748d655e9897d77497077d69 +size 78764 diff --git "a/samples/\346\267\265/guess/4.opus" "b/samples/\346\267\265/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..679877671d592069048ec9b5303a1a79b1b66752 --- /dev/null +++ "b/samples/\346\267\265/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a69fcc1ccabc9f3e75f5f959451deb757d4ae3489c471f9ea3c46703a211779 +size 15128 diff --git "a/samples/\346\267\265/guess/5.opus" "b/samples/\346\267\265/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..11638e72feb2e8ed53184c5ef50114b93bee3ad8 --- /dev/null +++ "b/samples/\346\267\265/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad912af4dee6601306120dc632000f5d10fc80bc083daa66b561223342feeff0 +size 59317 diff --git "a/samples/\346\267\265/tts/1.opus" "b/samples/\346\267\265/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dd1cd9dfbcb9797cb04d7a5bb8df55dcc55d24b6 --- /dev/null +++ "b/samples/\346\267\265/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22a90f78a4c7bdb50578675f1ead8ed87616d9236a21e719f25fe65487ffc45 +size 148572 diff --git "a/samples/\346\267\265/tts/2.opus" "b/samples/\346\267\265/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..932eafab9e68f299316eb954cad4314b2ea0c03b --- /dev/null +++ "b/samples/\346\267\265/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5599c2863ee996b8441315bf97f9d190340365a271b68e6addd2c1cb5b2a8013 +size 107366 diff --git "a/samples/\346\267\265/tts/3.opus" "b/samples/\346\267\265/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5e8b52752fe13c1cd700e2c238715835dc446b92 --- /dev/null +++ "b/samples/\346\267\265/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac34b4c27f74c3317e79ddfcc3dcacefd2dffc0a6f6608ce7c62aafd104eb5a +size 169578 diff --git "a/samples/\346\274\206\345\244\234_\350\223\256/guess/1.opus" "b/samples/\346\274\206\345\244\234_\350\223\256/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..96288e90762baf25ce48d371abdcb19e28e7552d --- /dev/null +++ "b/samples/\346\274\206\345\244\234_\350\223\256/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abf6ad8af2b419bf7649884da4ff38535e9a22ca4d6930d0a50ad17f10aad77 +size 109883 diff --git "a/samples/\346\274\206\345\244\234_\350\223\256/guess/2.opus" "b/samples/\346\274\206\345\244\234_\350\223\256/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bab7b2f839f226b78b2abc7165735549547de383 --- /dev/null +++ "b/samples/\346\274\206\345\244\234_\350\223\256/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ce75d555ae5c33fe35c939215426d3f6aa61b3f7c58d657e3206ebb08e682f +size 89837 diff --git "a/samples/\346\274\206\345\244\234_\350\223\256/guess/3.opus" "b/samples/\346\274\206\345\244\234_\350\223\256/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3ee473f11028b56efaae4f3360a895d8df0e1fd8 --- /dev/null +++ "b/samples/\346\274\206\345\244\234_\350\223\256/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591e6fc31f171ce2cdf3c87d6dbf48cecb17df68ec660e5fa389dbee1ff68e28 +size 100480 diff --git "a/samples/\346\274\206\345\244\234_\350\223\256/tts/1.opus" "b/samples/\346\274\206\345\244\234_\350\223\256/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0a72d8dea95e402f8dca52e3d23df5c207a5c288 --- /dev/null +++ "b/samples/\346\274\206\345\244\234_\350\223\256/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd35ff76d249fa5a37ee64f1f752a5142bf2f29b74b62e25caad034280ea1b1 +size 146146 diff --git "a/samples/\346\274\206\345\244\234_\350\223\256/tts/2.opus" "b/samples/\346\274\206\345\244\234_\350\223\256/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fa0bcd4bc566e9527bb731f56d6cff74acb9156d --- /dev/null +++ "b/samples/\346\274\206\345\244\234_\350\223\256/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bf14db79bdfa5b2722f59d91913810eed146b73cfb029b9ce80d8442affba1 +size 108840 diff --git "a/samples/\346\274\206\345\244\234_\350\223\256/tts/3.opus" "b/samples/\346\274\206\345\244\234_\350\223\256/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..35d01615c85b71e41663ddf2f3f09af127f774a4 --- /dev/null +++ "b/samples/\346\274\206\345\244\234_\350\223\256/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce1c40d210526ebe79bcbaa0c697981877a17b510820246a2f5230389fdd964c +size 167433 diff --git "a/samples/\347\201\257\347\234\237/guess/1.opus" "b/samples/\347\201\257\347\234\237/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..88c8b7fc47bfd616ba2bfb8661b22b3cbe1d681e --- /dev/null +++ "b/samples/\347\201\257\347\234\237/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba585179c7cb70f2306a195ff4a01d26f2ec56989d932220a8263a1fc9d9048 +size 106326 diff --git "a/samples/\347\201\257\347\234\237/guess/2.opus" "b/samples/\347\201\257\347\234\237/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b0e099da6a85ad27467815c0136b01f9e1320191 --- /dev/null +++ "b/samples/\347\201\257\347\234\237/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd42c0bd406f851b95256ec0076737f3633691780d2633088dd39200c9b8dcf +size 93007 diff --git "a/samples/\347\201\257\347\234\237/guess/3.opus" "b/samples/\347\201\257\347\234\237/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8d2affe633e3027c5cd36651c5506dce82edf556 --- /dev/null +++ "b/samples/\347\201\257\347\234\237/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d7c4da597138839a44e15fa6e8b58ad53311dcbdc7b4c6c7054bbdf568c2d1 +size 115215 diff --git "a/samples/\347\201\257\347\234\237/guess/4.opus" "b/samples/\347\201\257\347\234\237/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6601dc2a7eeeec604d3c15e6fa4965733e35fed6 --- /dev/null +++ "b/samples/\347\201\257\347\234\237/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92578de5e95bd38e2f95ede8e9325a24fc581f93ef0511336a2aa89cee3e0646 +size 61949 diff --git "a/samples/\347\201\257\347\234\237/tts/1.opus" "b/samples/\347\201\257\347\234\237/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4c89379333b5870f478fc163fe82da4b0929d3c6 --- /dev/null +++ "b/samples/\347\201\257\347\234\237/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4255b392632186440471e51fd9ef3c6d158d41417f3f4ac96dfb343bab89233d +size 121560 diff --git "a/samples/\347\201\257\347\234\237/tts/2.opus" "b/samples/\347\201\257\347\234\237/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a317560116e660d7770d0142aa83982f9f0ef5f7 --- /dev/null +++ "b/samples/\347\201\257\347\234\237/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593a8a3c509b0f6bbf6485eaa2df6ae5f0929f0f9905f1c1c066c7939e3dee23 +size 92698 diff --git "a/samples/\347\201\257\347\234\237/tts/3.opus" "b/samples/\347\201\257\347\234\237/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3b3f9918c0debb0a2caa9fdb4ed80c1e9a3e8b16 --- /dev/null +++ "b/samples/\347\201\257\347\234\237/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6651c5867373813c03eb6483e52576ad9f90605b7c9c15dbdc2f8e277d74c8 +size 138192 diff --git "a/samples/\347\204\224_\347\203\210/guess/1.opus" "b/samples/\347\204\224_\347\203\210/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3c110396ffcc8820eae4802c903d91328fed40af --- /dev/null +++ "b/samples/\347\204\224_\347\203\210/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8ff6c95e005996e4d533dd6f3c5f1c4b3dbf872366a2506fe5ce60af511bd9 +size 88714 diff --git "a/samples/\347\204\224_\347\203\210/guess/2.opus" "b/samples/\347\204\224_\347\203\210/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..78ead8db0f73df05e3ee7fd59fd881ffc660467a --- /dev/null +++ "b/samples/\347\204\224_\347\203\210/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51214143e44d359861345cbd29a117c80b76b5a7d3293ad29f20bf0fb1c44ebf +size 36027 diff --git "a/samples/\347\204\224_\347\203\210/guess/3.opus" "b/samples/\347\204\224_\347\203\210/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7db3c8f94b191649e3ff8849f2b66c9246a24c57 --- /dev/null +++ "b/samples/\347\204\224_\347\203\210/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16159141ceca13fc81c34c590f98b0db91150166d11e326bf009d72d7f95d1d2 +size 94166 diff --git "a/samples/\347\204\224_\347\203\210/guess/4.opus" "b/samples/\347\204\224_\347\203\210/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7baf0455e697e574bf9a3554a9ec941fd4f68d23 --- /dev/null +++ "b/samples/\347\204\224_\347\203\210/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba98ecd4b5c394ffc6b1507c3acd4fd33f265383c005ee42419209ab956fa6f +size 62194 diff --git "a/samples/\347\204\224_\347\203\210/tts/1.opus" "b/samples/\347\204\224_\347\203\210/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5eb8da2ec46a6f6d0711ffce35285fefd5a929ba --- /dev/null +++ "b/samples/\347\204\224_\347\203\210/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61f644fbae0251883101698a385a3220e31e7b52844fbdecc16aad3e3630efd +size 143326 diff --git "a/samples/\347\204\224_\347\203\210/tts/2.opus" "b/samples/\347\204\224_\347\203\210/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c66c3cde6d60452717d524e10aae830b6f391444 --- /dev/null +++ "b/samples/\347\204\224_\347\203\210/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67294d63860aeb2e5caa8fb823ed0f06d1ca7bd93f1e5dacff3d7bc718a3606e +size 107034 diff --git "a/samples/\347\204\224_\347\203\210/tts/3.opus" "b/samples/\347\204\224_\347\203\210/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2fa121c34405389e1fc39ad4a954e499dd1dffb2 --- /dev/null +++ "b/samples/\347\204\224_\347\203\210/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88969c3ade008bc5aa18786da9fc88578fc9218f72ea895543de614bf38b59f8 +size 155919 diff --git "a/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/1.opus" "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c8ab6adae14677c4bac928067634f40603647d59 --- /dev/null +++ "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81720ae15511d384c54cd89b87825c1f1ff31a959944f7db68c2f181c703626 +size 87602 diff --git "a/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/2.opus" "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..976a390324b5743e2e46a50ca086bae93bdf13a4 --- /dev/null +++ "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c05f6be99938e9af9b186688a1e75d7b6228053cc280f362a48b5f0fb72a607 +size 75726 diff --git "a/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/3.opus" "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..643e89e246a89a916ec9766a6e17fccaee180cf8 --- /dev/null +++ "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90d6b2946f7ae1a278b4174994f75f7ba9a4df1cb02cd36f0d1e4910f9e9411 +size 110785 diff --git "a/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/1.opus" "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..665d29b819671d5fae72de126fe0cf5f8ec4c9a6 --- /dev/null +++ "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e207f650c2405da93d716f71134f4040052daca740601eeb9934eee1d7ffee1 +size 133997 diff --git "a/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/2.opus" "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5db82e1d8b3f6d25986e5c4c423cb85a49843824 --- /dev/null +++ "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0d84a55da38d2efab3150163197275000d6d69eabbaf9cd2a574c95a25908c +size 99648 diff --git "a/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/3.opus" "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b52ca5502966ec630624900dd3932ffe18e434ba --- /dev/null +++ "b/samples/\347\205\247\346\234\210\351\231\242_\350\274\235\350\207\243/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae32fb43d4aaa055156206a2904c7434524f6527a17fe7a6620bf3ff55e5edbd +size 151002 diff --git "a/samples/\347\207\220\347\201\257/guess/1.opus" "b/samples/\347\207\220\347\201\257/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..13886a4a7f2f0a94582b8e3599b22a4e46ee83dd --- /dev/null +++ "b/samples/\347\207\220\347\201\257/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9277c4f590f1f8dff8b379fcaae00ac1b5323140f70a5f6d64a81bd3890374e +size 91375 diff --git "a/samples/\347\207\220\347\201\257/guess/2.opus" "b/samples/\347\207\220\347\201\257/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..77170b0d9923e71b0372968c8c309fff9e249e49 --- /dev/null +++ "b/samples/\347\207\220\347\201\257/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f21a6f19ecc9dce924163091b502b0c6f9ef2e9b807a6430964f1865c81acd9 +size 49897 diff --git "a/samples/\347\207\220\347\201\257/guess/3.opus" "b/samples/\347\207\220\347\201\257/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8f235c9f032ae24351d2523bac9cf4b0a55e4060 --- /dev/null +++ "b/samples/\347\207\220\347\201\257/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceba2c7e6e53dcb523e5d8a9f3af74488eddfbc966e80c4197ed7267504e4343 +size 208791 diff --git "a/samples/\347\207\220\347\201\257/tts/1.opus" "b/samples/\347\207\220\347\201\257/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d2195a8e7e6193e866e08e167afc0aa4393cc7ca --- /dev/null +++ "b/samples/\347\207\220\347\201\257/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d862d69281d9300341ab9e1cc8a6c8bb4956cd36b283218f73eccf084521a52 +size 128925 diff --git "a/samples/\347\207\220\347\201\257/tts/2.opus" "b/samples/\347\207\220\347\201\257/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..73c3bc5c284a5d1515d4604721cf092863f80f74 --- /dev/null +++ "b/samples/\347\207\220\347\201\257/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638b8afa42b1646a011ed01387a4f1163b5ae03eeae422f3df3155999cac0831 +size 100180 diff --git "a/samples/\347\207\220\347\201\257/tts/3.opus" "b/samples/\347\207\220\347\201\257/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f80058dc2bd705ce8186f7c6fcc4388f20f8aec2 --- /dev/null +++ "b/samples/\347\207\220\347\201\257/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5c75f4ee66d45b681b6bde02fdaa2bfc03e63b855c2bf8660631fb773fc3dc +size 152832 diff --git "a/samples/\347\207\273_\347\247\213\351\233\204/guess/1.opus" "b/samples/\347\207\273_\347\247\213\351\233\204/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..eae66fa2d804e0b589818f3eaf262bace6ced6bd --- /dev/null +++ "b/samples/\347\207\273_\347\247\213\351\233\204/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1035f8dfd86451669fe2d57c6d3e211318bc2f445b0c72ae4a90264e1f33b75 +size 62845 diff --git "a/samples/\347\207\273_\347\247\213\351\233\204/guess/2.opus" "b/samples/\347\207\273_\347\247\213\351\233\204/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d3ea617653152864594fb0537920b8fe9a295376 --- /dev/null +++ "b/samples/\347\207\273_\347\247\213\351\233\204/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc0b0a859596a386cecb97c9e37c8deb2d8371d145bf2bf48de42e4cc46a0ec +size 105675 diff --git "a/samples/\347\207\273_\347\247\213\351\233\204/guess/3.opus" "b/samples/\347\207\273_\347\247\213\351\233\204/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a8ced6945e46a884e644a4460c4cf35f5b25697d --- /dev/null +++ "b/samples/\347\207\273_\347\247\213\351\233\204/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfd4693d9c90dec3cc5f9c8ae90600279f87172bcde33e9a61e8caed13890cf +size 80318 diff --git "a/samples/\347\207\273_\347\247\213\351\233\204/tts/1.opus" "b/samples/\347\207\273_\347\247\213\351\233\204/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ebde1ababe81df1db8e17116fe086c27ca2f091f --- /dev/null +++ "b/samples/\347\207\273_\347\247\213\351\233\204/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807b3f37707b187860a234c8fe366c3c781ace2eb852a983867255cbbf68c1b0 +size 152247 diff --git "a/samples/\347\207\273_\347\247\213\351\233\204/tts/2.opus" "b/samples/\347\207\273_\347\247\213\351\233\204/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..baa5a9efef168e1b223bed5d338cc6c8bd0611f8 --- /dev/null +++ "b/samples/\347\207\273_\347\247\213\351\233\204/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:839d4dba7493679d57fcfe013bb6761d3b4c6d03c10132f6bf3444e5b4c9c776 +size 113224 diff --git "a/samples/\347\207\273_\347\247\213\351\233\204/tts/3.opus" "b/samples/\347\207\273_\347\247\213\351\233\204/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f8976d82868b5ec1baf18bbcccfb86174e099dcd --- /dev/null +++ "b/samples/\347\207\273_\347\247\213\351\233\204/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6801b54e1af48406bcdb20b405f57e6d83d3a60bc71b0092bcf459c3d5be11e0 +size 175205 diff --git "a/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/1.opus" "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..82d3b900e9aebd36fceed1faa28081009186f461 --- /dev/null +++ "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2da32432be9695a26e3b527d90e8b3b0296f7968331675d465272758472e728 +size 85449 diff --git "a/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/2.opus" "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3977e6bb288d26126885b06e256fc15a5e9a36c2 --- /dev/null +++ "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf69f9e188ec90468348e7906f46b09081ac0f20c13329a1ceabb5a5a6d8f83 +size 76153 diff --git "a/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/3.opus" "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6ced18d54ac5c8720d6ee4b9c971dccc6833618c --- /dev/null +++ "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24602fd7c66128287bcaa3ebde1f11bfe70e638a4173d077a1967fdc3a6e96c +size 33420 diff --git "a/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/1.opus" "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cf0603e98a96bba58eaa438e6ec144cb56cb75b0 --- /dev/null +++ "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b986bc2159957ed4f193010a1a72a243eccb9825abaa505b82ed6914f63a6be +size 154345 diff --git "a/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/2.opus" "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0fc7f0e1af6328f8014f163b225b5af104f37a5e --- /dev/null +++ "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7e872ec9ad72352d33089e9732fb227b6cd83c43956ceec9c6c37147bd0045 +size 112495 diff --git "a/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/3.opus" "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8ba1cdcd979cd82c9b68e00ce30d510dc1742813 --- /dev/null +++ "b/samples/\347\214\253\347\224\260_\345\244\225\347\234\236/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c260b2d40eea35d9afb53a1b1cdffd1a86af26a26edb07a43e61c870e707f796 +size 166325 diff --git "a/samples/\347\231\275\345\244\251/guess/1.opus" "b/samples/\347\231\275\345\244\251/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..466351741160966dc6e36c7e5a0e707c19e266c0 --- /dev/null +++ "b/samples/\347\231\275\345\244\251/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e60fdd1a78b0127dc04a0e3910d10d9841e300b27ced8dd7f6e8ba8c5840136 +size 58678 diff --git "a/samples/\347\231\275\345\244\251/guess/2.opus" "b/samples/\347\231\275\345\244\251/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5205b49b08c674c55833809181152ffd716810e8 --- /dev/null +++ "b/samples/\347\231\275\345\244\251/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199cde6de7ad4f25227ef48378d03383bde57246d2af50819dd757f0cc97d403 +size 77530 diff --git "a/samples/\347\231\275\345\244\251/guess/3.opus" "b/samples/\347\231\275\345\244\251/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1f3ec233150f695da0660ecc7d2cd6208f655de4 --- /dev/null +++ "b/samples/\347\231\275\345\244\251/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faed9b61a688f139326650768612ca7c5f9854795549850a5cca4a7f0f42eb61 +size 89342 diff --git "a/samples/\347\231\275\345\244\251/tts/1.opus" "b/samples/\347\231\275\345\244\251/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7337d13824eb43504efef618ed5075db67ead683 --- /dev/null +++ "b/samples/\347\231\275\345\244\251/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56885d2d52bfaefb649e111d85eda6754139f8dd83f77c5b0c3628d1dbd2a967 +size 150658 diff --git "a/samples/\347\231\275\345\244\251/tts/2.opus" "b/samples/\347\231\275\345\244\251/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d494e9a94b609132306ab678124231e5e70ff3cb --- /dev/null +++ "b/samples/\347\231\275\345\244\251/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab665ea46ea32896f877a372d9f3bcbc2f1c8cd9c54bcc2daf59be4417da800 +size 115373 diff --git "a/samples/\347\231\275\345\244\251/tts/3.opus" "b/samples/\347\231\275\345\244\251/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..793ffdfabdc211895d865ddddc9e52461bf52c80 --- /dev/null +++ "b/samples/\347\231\275\345\244\251/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd03b2434088ec6e3d0b60879dcbfe76b1b3745d02877510b39bc72b1395957e +size 181362 diff --git "a/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/1.opus" "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d4989fb5260ab2756f25a33eeab32140fd50c12d --- /dev/null +++ "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1edfde2d45298add0397342748be6b6a162d74ecbe2f802b155baa09b466f7d5 +size 83153 diff --git "a/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/2.opus" "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5201a7d05a1fe012410a69f583460d37bd044ee1 --- /dev/null +++ "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3d88d65d1430462bc40c1b45a0b90e8c001e4deab6a2f2b0c17e378514c546 +size 44772 diff --git "a/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/3.opus" "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..137fb8ac4810c30fd78b486c6a02285a5a3f2e4b --- /dev/null +++ "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87f0fef2ad4e328f43deb5b9fbbc0abe2d0505e21641cf162eaf8c021416558 +size 81051 diff --git "a/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/4.opus" "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..410028e71579e35f0ab7e0d295c3de25fa13ee74 --- /dev/null +++ "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95db3fa4a1e25806ec26246e278c58ad3c986085a701c49c98f9f99bd4b6eb69 +size 86135 diff --git "a/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/1.opus" "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a0d4be28a7ede20b24a30ee43dd4991a5504a28b --- /dev/null +++ "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56156f68b804b672ebefe3d57628e6259978e5213069555401840eba8904bad7 +size 142285 diff --git "a/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/2.opus" "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..727d2486bd08e2134bc96fffbe95139b6ed64e6b --- /dev/null +++ "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec8836820ce14d99a3b969a980ee2a6c7207a400805a062419a4f8c28273435 +size 107057 diff --git "a/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/3.opus" "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7bb81017a8a42b4d6a254e015c8d4581a654b42d --- /dev/null +++ "b/samples/\347\231\275\346\263\242\347\200\254_\345\222\214\351\246\231/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b22fef071e59310710d70b13d9c2a66a85396897a477cf180ffc890493a377 +size 158014 diff --git "a/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/1.opus" "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ed50e5fc60216684bcba4af9b2ff921aeccd3462 --- /dev/null +++ "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93fc4f93b9962845689f1880e530df98f6b1430a5897f9cc075461115e6b920f +size 132229 diff --git "a/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/2.opus" "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fc0880c28a814f2459803edd758972395f3d5a2e --- /dev/null +++ "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a254892c1a28a77ddf960e46aa911e0ef979cc696b16448a6d880bf50ddbe3e8 +size 93567 diff --git "a/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/3.opus" "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..570b107450b2b98120e16945dc2d45d0fa28dc15 --- /dev/null +++ "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf2b1b583e39abfd4ec25a53ed978299540ac76de01349037281429c0fd95734 +size 105617 diff --git "a/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/1.opus" "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..352c43beabbaa7a6c2a80901c1534ae61be80749 --- /dev/null +++ "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c904d4dd1ae602ad687b77ab6186422e3d8d9f33ae48c3beec11618e45d6f9de +size 122990 diff --git "a/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/2.opus" "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..917c66f57861e274e4c31492668971640550292e --- /dev/null +++ "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba16734f7a5cc444a13a0c5212e1fd77af1d92868b73405042d15d9f5bc3c0ca +size 95733 diff --git "a/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/3.opus" "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dfe2561503de4f6ca24ad6b29e9f836f562de7c4 --- /dev/null +++ "b/samples/\347\231\275\347\206\212_\346\204\233\351\210\264/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7430a290e626a00511048a0c7b342d7887d826dda8c9274883c08910e17f59ab +size 145570 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/guess/1.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..73addaae76214ea280e4d0e3620091494b72c0d5 --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f298597dabf450ad253924a766a984cd2b6fa39b29b9ebd403885579a605783 +size 129115 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/guess/2.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..983861871830dfb6ae8068eb3ea6ebc32657c5e5 --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be58db6375a9c99eb9c60dbe8c636f2364e695754fede17b263ca1c99c47d3cb +size 101224 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/guess/3.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3bba86bcde04f71bb021ce33893f470c8a205127 --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d502f8376e8f11755d6a9f150d5051a0466abc7b0ab997a27f37ba69b8185968 +size 97845 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/guess/4.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5acfdd03e3eadd904fad0d20eb571b0815d19c6b --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13dd70c6818e5cf696f7bd94ff5c5e55864ac9f64776ec9a10014013b86b4bbe +size 57979 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/guess/5.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3857c700d7b1891ad192410089824e1302fe036f --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c093c95ebd7ffd51eac88a744933fa7b379de2555c0646e4b799cf9206697fe +size 189076 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/tts/1.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..41166acd1ea26506add5c360a8b755f66361d120 --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47992ffc958544639163455684865cc4e3b7da48a7e1448582180d44686ace9d +size 138362 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/tts/2.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..912dc059392acb04519c866bbe4dead0113f3d9b --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953b5188ee8ba2cf43f176bbd713fc92575976fc9a7cf95a01be6cc379a4ef10 +size 101452 diff --git "a/samples/\347\242\247\346\265\267_\345\207\252/tts/3.opus" "b/samples/\347\242\247\346\265\267_\345\207\252/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3e8f1dad4f7ecab0c711e3622007224e96cd5ba8 --- /dev/null +++ "b/samples/\347\242\247\346\265\267_\345\207\252/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813f794e6f61d91b84f6864b6153558508bacb3e8a986f7c2dd94c09ee5635ab +size 153692 diff --git "a/samples/\347\245\236\350\226\231_\347\236\263/guess/1.opus" "b/samples/\347\245\236\350\226\231_\347\236\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0cb048e0d806d0d1a9a7291a8b123d616e3ac6d5 --- /dev/null +++ "b/samples/\347\245\236\350\226\231_\347\236\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2a6f8fd8a996872265d337bcbf8d767ab2d8f595427ed08820762c6a55f33 +size 113181 diff --git "a/samples/\347\245\236\350\226\231_\347\236\263/guess/2.opus" "b/samples/\347\245\236\350\226\231_\347\236\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..191f0dc8e4735bbf55577eb024aa5d16d877d1d7 --- /dev/null +++ "b/samples/\347\245\236\350\226\231_\347\236\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cf72c26899be66473f296b154a79faf476f320525a2dd3d6b3a347a7e93bda1 +size 102511 diff --git "a/samples/\347\245\236\350\226\231_\347\236\263/guess/3.opus" "b/samples/\347\245\236\350\226\231_\347\236\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bd2390a558fb77c7e35d744377827002760c4b39 --- /dev/null +++ "b/samples/\347\245\236\350\226\231_\347\236\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2100bc719a830644803e9b75d26c46d3d8b7d8a7bba3cade0f4e8e2890c9c4f7 +size 74662 diff --git "a/samples/\347\245\236\350\226\231_\347\236\263/tts/1.opus" "b/samples/\347\245\236\350\226\231_\347\236\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f36bdf410047113bd0fc6d83e158506e208a9dab --- /dev/null +++ "b/samples/\347\245\236\350\226\231_\347\236\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d995f466c1a7a25650e43a146b3bfd035fb4aa7847d0d3c9cbee559b2785aa +size 132903 diff --git "a/samples/\347\245\236\350\226\231_\347\236\263/tts/2.opus" "b/samples/\347\245\236\350\226\231_\347\236\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e0dff0b92f05aad8b3f1546f7a1e1f5ef479e2fa --- /dev/null +++ "b/samples/\347\245\236\350\226\231_\347\236\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ed1da8fd26401c47865c8052d4205d82a9d1f5498d42e6fd0d5ca582af51a4 +size 100109 diff --git "a/samples/\347\245\236\350\226\231_\347\236\263/tts/3.opus" "b/samples/\347\245\236\350\226\231_\347\236\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f4a4ca9c3098f3499256b12e3f34b87b54ec65c9 --- /dev/null +++ "b/samples/\347\245\236\350\226\231_\347\236\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699d5ab608bb5d9d9dd33ee0ceea9a184f416ee7bb68f0456112a6d56200d776 +size 154320 diff --git "a/samples/\347\257\235/guess/1.opus" "b/samples/\347\257\235/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6bb929f173ebfa76ac45ee1af708051f7f801fba --- /dev/null +++ "b/samples/\347\257\235/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7d39bb61d63a4c369d44a2fc2fbc4ae4edfa0bfaacdbf491c44636742385e2 +size 162233 diff --git "a/samples/\347\257\235/guess/2.opus" "b/samples/\347\257\235/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..741170de208f514f5454553aa40ef1f6c10726d4 --- /dev/null +++ "b/samples/\347\257\235/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a8c207634758b9448600a1f122b9e28d5a68b3c1fe6f890439b4c563497d3 +size 181971 diff --git "a/samples/\347\257\235/guess/3.opus" "b/samples/\347\257\235/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..44da7c143102c35452cfc8f6f3d09dd07b2eac51 --- /dev/null +++ "b/samples/\347\257\235/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ec2ae5ffdc14d4c44ef501b7379807bc244a50d37de4683d90ed9638893b38 +size 159123 diff --git "a/samples/\347\257\235/guess/4.opus" "b/samples/\347\257\235/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b87b12d4d3a84a180596d7dcdad67c859f6c61ac --- /dev/null +++ "b/samples/\347\257\235/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b0cf605f8ed5dd459a2bff8d55c534cf11d9fc1eb9ffe58a5f8694436922f6 +size 182469 diff --git "a/samples/\347\257\235/guess/5.opus" "b/samples/\347\257\235/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d6f22a2a7a50e608dd3044f5ee1e4cd39e2d90f3 --- /dev/null +++ "b/samples/\347\257\235/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11656a24b442b170318407c651c588e2d8154053286de252f328f5c06168eb16 +size 179197 diff --git "a/samples/\347\257\235/guess/6.opus" "b/samples/\347\257\235/guess/6.opus" new file mode 100644 index 0000000000000000000000000000000000000000..86d9e7c89b55bd090e854503a795d825dcf32341 --- /dev/null +++ "b/samples/\347\257\235/guess/6.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e7cdf6aab0f77a7c3636cfea2f49fb194e5af546633795dfac56d775d73da4 +size 140438 diff --git "a/samples/\347\257\235/tts/1.opus" "b/samples/\347\257\235/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8f013bc3e42e7f2be8ec438ef6528e5be1fed527 --- /dev/null +++ "b/samples/\347\257\235/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f22fe951b428476ddbafa02751be2aac93bc1185fd8c88af6e5016847c20ba +size 187767 diff --git "a/samples/\347\257\235/tts/2.opus" "b/samples/\347\257\235/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8ae232b6cd49879689227d9bac8bf3c42e0f8a91 --- /dev/null +++ "b/samples/\347\257\235/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ec0e3e8f2b7d057f75cfb49c7ffd1a271c4ef09fad7e20ce6ed08c1f6ecb77 +size 139394 diff --git "a/samples/\347\257\235/tts/3.opus" "b/samples/\347\257\235/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..52f00d702f961ffe71d0152e635f7d40ed2b65d7 --- /dev/null +++ "b/samples/\347\257\235/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53efaed42e1bde173507359eecc02b71dd0263494c7f19c226f0907d919ca1c +size 203166 diff --git "a/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/1.opus" "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e4a3cfa8f0220551bef89de84bbc95e5e83f96ba --- /dev/null +++ "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d95d256a7afa49b3c6737cc443f825623f52ff1e4f70b79bf84372d42fd6a50 +size 101441 diff --git "a/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/2.opus" "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0dda0f80426e49ea5a9701a96a43d7ddc8b5d5fb --- /dev/null +++ "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9f65c7eeb050617f5e825e7ba86273b667086e79047f5c7ae622ac8bb7896c +size 91603 diff --git "a/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/3.opus" "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4fb6e2c28ca1ab0b74af48cb4c4a5df398400106 --- /dev/null +++ "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3573d278ba36aadd3d94bae36d70e05a21efc9fbc333cca3c1ba6b35e06ab4fb +size 124320 diff --git "a/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/4.opus" "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c099754348260b958a20865f3f29cc583095fbc0 --- /dev/null +++ "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4628dc65b4857908e6ad9f07f08b4f70d7c0970703eccd28f538c91f51b478fe +size 92059 diff --git "a/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/1.opus" "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5ce162535a54c21d49e9a773a6b719e1c56f1731 --- /dev/null +++ "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751cf6bbf9c1b69b4c021cb7d7dedd3e8242e2ab10c15dea4ef7e9c1c9efa3b2 +size 142884 diff --git "a/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/2.opus" "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9547162ea62c1d84a15c38272821cf16a8d3844d --- /dev/null +++ "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a654d0befabe541bdc50e73daec4883ee320b77d944260de8a2cf86c45192a9 +size 108044 diff --git "a/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/3.opus" "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7b61e95a13a7d9614d1759c5b4dea5806d8dd5bd --- /dev/null +++ "b/samples/\347\257\240\343\203\216\344\272\225_\345\277\227\344\271\203/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c93b683bb9fcec8022b3166f54c639ee86b725d71212f2d262eaa90398a3b8 +size 159007 diff --git "a/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/1.opus" "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..68543d399ccd5b858d20ac7b0f215520d84fa2e0 --- /dev/null +++ "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be10741dcf356db926042c8d7ef31c7571d74b4bc0ed272529615a0dc38eb51b +size 145168 diff --git "a/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/2.opus" "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1e3764294a380dba409c32eb6b46d77aed131ee3 --- /dev/null +++ "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21af70f60543ced94f59638510f50290c099359bec61d52337d2e5c2cc062417 +size 133257 diff --git "a/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/3.opus" "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0f518ec69f3dcba31d58ae99c40c96895d8023b1 --- /dev/null +++ "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e6ebe232b40c5777d2f5fa52cf8d8e52f7a7b757ccf1c593731a103af36964 +size 117552 diff --git "a/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/4.opus" "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c2d95756bc987e40397f0678b30f15fb485b5c70 --- /dev/null +++ "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2e1a84690b180d9f3a99a70ef05297ec2be8e4dd6a2bbba07c53cabf6c2e5d +size 65955 diff --git "a/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/1.opus" "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8d33f5f865d09cde9aa4decd9b8de168ee5fde4d --- /dev/null +++ "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a1be4d6d5239ab1ff26aa452142e46e15814e34a895467a41e57d4ab238c2a +size 125000 diff --git "a/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/2.opus" "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..38b42330fe79a4ece06d10cdf176bee611fd30c0 --- /dev/null +++ "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db94a15d9b6ac4e5466bbc304054ab53e983e2f09e05a19fc1347f8a10639049 +size 91286 diff --git "a/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/3.opus" "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9e1bf0fbcf94dc85329cc2d3c3111f47d45a35dc --- /dev/null +++ "b/samples/\347\257\240\345\264\216_\345\204\252\344\271\237/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f4ec7526d199d22421344af077de571cb3c07ab601f4b7aa0fc8ce539374a2b +size 145695 diff --git "a/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/1.opus" "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5b59c64eda90517dfab15b93333baa085b793557 --- /dev/null +++ "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3618913988a9c474f899787382c6480263c5b0056dd0537e9aee6d4ca149b4dd +size 85531 diff --git "a/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/2.opus" "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0a1c76ee4d1ebed5eebe212c0329c0a0645277ec --- /dev/null +++ "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a934f4c97350fbd9f2ef4eee1bbdec804a8179b3b360bd1f7cea3e1f40d910e5 +size 89167 diff --git "a/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/3.opus" "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2bfeeca9327b11e77eab838c7bcef40315c3bf34 --- /dev/null +++ "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e46e82db88561267fa92adf38cb67bcd1f2f4714c8ac27d5f5274881390a827 +size 109697 diff --git "a/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/4.opus" "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..31e0194c548d56b363f5ce51d534074dade4341e --- /dev/null +++ "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78fe87f66de3c2fc53d8eb58fdc9ac0ab80839c60c8f758a4dba600d243ad266 +size 123169 diff --git "a/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/1.opus" "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2d344a0e8d2f3b3c13222b2ddd55209ec13126d3 --- /dev/null +++ "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e460e3a8f0551e46eb169a15de86a891ebbe221e5efdef62783b9c13af0c4d38 +size 124774 diff --git "a/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/2.opus" "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..356d5f528acaf2a0993d3c770e2abb01487f6400 --- /dev/null +++ "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4f758829f2b3a1980180896206c623e585fcde3542019669956b0d8bf2e5fa +size 91990 diff --git "a/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/3.opus" "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1749f8a5a58d6cc41d2b5d1bf2ae554804834a2d --- /dev/null +++ "b/samples/\347\265\220\345\237\216_\347\220\206\345\244\256/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ad09948b69db4f73f762dcd1a02c6a905bb896f0df10b1ab23e969452d52c9 +size 142543 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/1.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6b916200c219c43028b5418eedd684e879a60d40 --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026e220169e13998f120d766fe74e13a62193bc46407a51285036594fa0638fd +size 123272 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/2.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5320834efd2ebdcaf06a7d8986fd383f95c9104f --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbd58f1c5e90f549810bed33b9377dfb125b832bb7790f5f2dd6c8048b2ab62 +size 128490 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/3.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..27a717e3810c2b578d56bd981030909709bfcba0 --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7530bedba2cb147c30b851ef17bf91f1d18d7c5c7bcae86941e0d467ec7626dd +size 78915 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/4.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e931b4cabf3be59a38ea10ed8977ebc394179df4 --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612e500a169ac685b3f4b28f9bb8329daaafccfcd7d4c47fc969b2bc5e45f999 +size 52044 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/5.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..73b1c8a8ed49c925c746a68d57c4de38b1af531c --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f954a47319cbf804b11832cd91b60b4567c4df4868e800dd240427d126bc55 +size 87963 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/1.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b1042c3131427e0c165b766c79bec4452b785b37 --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0612823050e302f53f6e0edb75a4232c749c05675a2c30e4a522321b6bfe5779 +size 129199 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/2.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d8a146ded1d0157d6446f543cb4ea937e1642599 --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8d4be31ae280282d35f97ceb422ec22f7c336345756d3e5ebeac2f26ac02b1 +size 97495 diff --git "a/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/3.opus" "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..077364b2c40339ecaa08df4334adaf88b6517374 --- /dev/null +++ "b/samples/\347\266\276\347\200\254_\351\200\217\350\212\261/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d3276d025350674df9b82c67f7d5d8299c72b6b47c21f13b70cd114311e7473 +size 145811 diff --git "a/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/1.opus" "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e109a61d8c65373fdbbfa99c9ebb76e52d6d6ab2 --- /dev/null +++ "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62dfa0c8787ef18c0b1eb43858a4b2133c929767164dcd8197063bf046a49f8 +size 211615 diff --git "a/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/2.opus" "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..829c505562a043d9054e1fce2270389b17937e73 --- /dev/null +++ "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72c9fb839ef2762549beba01c51f9fe3432842afdf03a05872a060ea5282fad +size 146271 diff --git "a/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/3.opus" "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a641ada0e7f83a330f76a29befd7b00d21b054f4 --- /dev/null +++ "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cbc4b0b5bef75a501efc246f8b8cbcf49b14fad3d7a82f4434354136b0ad429 +size 91077 diff --git "a/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/4.opus" "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f95a6bc8f9876c0192efcf195a94c852da253dec --- /dev/null +++ "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337a56d0124f758ed3b45c40fd5a3bb3a555f8528933bafb8f562c91de3b61fd +size 151749 diff --git "a/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/1.opus" "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e3feb8cd1925109f9b6a62f6032ba217424f2a0b --- /dev/null +++ "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683a347764a07149788c0f30094ddfcdc7c4b7b5ddbb438f990aced8ab91ae95 +size 146354 diff --git "a/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/2.opus" "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a4e73fff43246efe5d217d59e197cb605bcd4d1a --- /dev/null +++ "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752978a6a639928bfc7eaf64670852bc15624606634674d67c73aa5f9828aed9 +size 108277 diff --git "a/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/3.opus" "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..23cc77f056ecb6724a8349e40f2e9bb7c7af425a --- /dev/null +++ "b/samples/\347\266\277\350\262\253_\350\222\274\347\251\272/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ce97e0e9564e1e5677ed8f2559b0fccb1c0efc6240bbd0f401e5745dadb429 +size 161889 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/1.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d32de76b36427265d665ea1b7d3c72b49c549777 --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f27ced53ea314a99487a9fcba26edd15b2f4f442b6b2edfeeca1f05a36c98a +size 60364 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/2.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9e2b48e24f9162bac9322fad79c97557a51e6431 --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1332a9c538342827342fa6583e263a7bb4e6bc8d0784f5ea81b36316b00b08e0 +size 58785 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/3.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..147cf7e25ec4ae84538a06516c4920f90b30ad16 --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f637f257281419f785e290146deef9f1b7dc4c17bdc0be782ca602476371c4 +size 168397 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/4.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3c1bb86da7b5d9b388de06d762c225648c5d5343 --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:874fa0e079c42344758b6ad974b3a7a6df82eab0f02e3121bbb6fd6fb0a9f878 +size 176921 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/5.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2c4fb0573e4effddd5edd62fa8170418c36ea7cc --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a14d488b739ebe75b64f9d4173135e102a1bfa550830ea85d76220c6c170fb8 +size 126133 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/1.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..78c809f3ded649ce8e54a03f346e4c4fc7ab625d --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf6fec9226c0447326068c79a8db3225851e6b8c030794d5ac1de6941cb9686 +size 144137 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/2.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..24935de5472406e46c79af162f6ffe9f59bdab2d --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3a822705e47ccbcaba68ee15e13c8383c1248a57cbc0e7db66de58f8b57b9e +size 107354 diff --git "a/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/3.opus" "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a83201ae662b8c787a36c9bd215fe84e366535d9 --- /dev/null +++ "b/samples/\350\212\261\346\235\221_\347\251\202\343\203\216\351\246\231/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2fcc1f8cf5059239e02b07f43476bdb20065c3db9fd1aac0edd6708ff1fe71 +size 168388 diff --git "a/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/1.opus" "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1df4f47663b878dd323adc68800352749c2f4a6b --- /dev/null +++ "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4270fd2ce9db23bc787afa7d7c86dc30098cddab7b2b1860e9fd36864aec71 +size 121048 diff --git "a/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/2.opus" "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4c4ec040b47608675094b14e16f74e0299809f4f --- /dev/null +++ "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5f33f8b613952dc4245c68b091b2bff0e8e5b2645e6e6ff20db5a8f623e4f7 +size 96887 diff --git "a/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/3.opus" "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4d8a81b9f85c06eae6acd043d1cbecdcedd8e063 --- /dev/null +++ "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a88df195121cb3428fe6c64174c5c14a5a66a9e19f35db8d117bfefdb0aba49 +size 93673 diff --git "a/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/1.opus" "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c61c2544fcd5440d9aaf49ddfeb6f906e2d51b3f --- /dev/null +++ "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0abc3ba4b2f5ce1dfc301d1b2fe0619ebe2bbd4f7173bfb5cc6ca60ca63bee8 +size 168261 diff --git "a/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/2.opus" "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..161146d40518be0ade6039c0a5c3dcba842daded --- /dev/null +++ "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e22ad44d7e455f9a03c283e659142f54505e958492a26ed55afdcca1ae9029 +size 131168 diff --git "a/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/3.opus" "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f8b63697aa9f321aa4afb25940ade7044887aa9a --- /dev/null +++ "b/samples/\350\212\261\346\243\256_\346\234\252\346\235\245/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7947d3a9bb820899ce9ca966c0ba2b840ab29520c4149e3cddeda21fcbba02b +size 193360 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/1.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8d0e8ccdde22dc2007b2ad3695e416e33d89c83a --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc8b86b025f6064ede6dd7dc3b93defc14ed3d3a97f3dea4f32dd354d6474bdd +size 75438 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/2.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b3c496d4722f9aa3d9b63ae2ba3d927b17644c50 --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae8981e7fad54e05a68dd17d5592d7d4619163f2d660ecbb3c7dd4fd4499164 +size 85700 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/3.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..97e605d664e4a96853b8a658af5f5f12356cad41 --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5badbe7e3b24cd1731d60b0ee3aad2a3629b8528fac9f42aec7cee578fa95bc9 +size 69650 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/4.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f95faad3ee71f439091d350752474caf5b38247e --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927403911c87c2c669dcf0f9d4f6294fcda1e37db936575633b9095e00e5b286 +size 56193 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/5.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/5.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6a0ec8c919bb92f98a7b8910ca43020b53df10c9 --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/guess/5.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77cd144037cd75ee14696d8bb50947753ce72f9c067e52a385a235a5045cc988 +size 86061 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/1.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..96144db85ffb68a6f8631e968978a033a3cd0150 --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac2846366b40aa30bbcc67ac9f1388802f46462be821a648e0226bab68b5e21 +size 149124 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/2.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d22ef252d99862934e106e066d0440ae7490d8e8 --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ca6f6ca95591300db882dbac2ed7ab1a6d58f9f7c1e86e353ea903e3a8ed6b +size 115100 diff --git "a/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/3.opus" "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ac985555f0a6ebc4ccdb7f0456039ba0d43640f9 --- /dev/null +++ "b/samples/\350\213\224\346\235\221_\343\201\276\343\202\212\343\202\202/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa890ed64a0e9194198dd211c971f150154444f6f816161a38404647da9cbacd +size 175270 diff --git "a/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/1.opus" "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..113406cae6ff1186583dbbdcea0decd027e98c39 --- /dev/null +++ "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a92875b538d18aaaa55ebda6618f4c36672ed26ca9a75cfebb9aee2af8c41a +size 63131 diff --git "a/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/2.opus" "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6d6019326442a09a6f001e3f6922e8896337e2e0 --- /dev/null +++ "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11ebd5b2ba7f15955a0d5abde1af6d6728855f6441854d9114a433e03f8931d +size 153723 diff --git "a/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/3.opus" "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..56c6c7bb34e24f09b82adebf3069034c5e7a8cdd --- /dev/null +++ "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2158b5b07d43d1ac6f9e5bef81a6749a2648c0d58e2c64ba764c219f4e89fb61 +size 166318 diff --git "a/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/1.opus" "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..574e501298e56ccddd9e025d3b6959fe9b297e31 --- /dev/null +++ "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fcac4182f574e0f2462da8df75e226a9f783a11d20f49a7b58b52085b294aa3 +size 153872 diff --git "a/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/2.opus" "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..fa1fd6952173d4fe403dc67b63c20bef0601652f --- /dev/null +++ "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab8dd995d31a797b893e57b5770ea330d0411aeef2a303e5e4a85d5fde8a1b2 +size 115726 diff --git "a/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/3.opus" "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..78a94702399edf8fec18e7d124a161625a8862ba --- /dev/null +++ "b/samples/\350\213\245\350\215\211_\343\201\262\343\201\213\343\202\212/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:777d12727ef9519ca90ba9c1bb8d0318897fbc4b36f7e0df7ed6540515a7d2f1 +size 179346 diff --git "a/samples/\350\222\274\347\234\237_\350\277\205/guess/1.opus" "b/samples/\350\222\274\347\234\237_\350\277\205/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..58b0899ae469ac1c51d76eb6a4136c3bd57650bb --- /dev/null +++ "b/samples/\350\222\274\347\234\237_\350\277\205/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81de0394898797f33973dd611e80168cb348e263d1e7c9ab79072def8d557601 +size 129033 diff --git "a/samples/\350\222\274\347\234\237_\350\277\205/guess/2.opus" "b/samples/\350\222\274\347\234\237_\350\277\205/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d11e618e3c6772564c324d092ac2ab1f0fe41742 --- /dev/null +++ "b/samples/\350\222\274\347\234\237_\350\277\205/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8992cfb12e7c9e6b21a09fef07339d9232741a65c328b3f6b5aa323541020bf6 +size 48227 diff --git "a/samples/\350\222\274\347\234\237_\350\277\205/guess/3.opus" "b/samples/\350\222\274\347\234\237_\350\277\205/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dc6ad907cb7c9e72a91e6809332feef39b5bd0d4 --- /dev/null +++ "b/samples/\350\222\274\347\234\237_\350\277\205/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecce507005d0ddac884de2df71777c542d223b56ed549a5f49efdb070061fe07 +size 48022 diff --git "a/samples/\350\222\274\347\234\237_\350\277\205/tts/1.opus" "b/samples/\350\222\274\347\234\237_\350\277\205/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..70b5eaba94beb7ac92a586ff4625770d689d1062 --- /dev/null +++ "b/samples/\350\222\274\347\234\237_\350\277\205/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7b601a7206b7518014cdab905c01209be9e8134612e6d7af629a4dcae2097b +size 147211 diff --git "a/samples/\350\222\274\347\234\237_\350\277\205/tts/2.opus" "b/samples/\350\222\274\347\234\237_\350\277\205/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ec62dc6709f4afd830ed974b0fa02d401e371d32 --- /dev/null +++ "b/samples/\350\222\274\347\234\237_\350\277\205/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63569c2a642b33c614576b0de849d4e2795935eaa694a63f4426ad92a711bd55 +size 106340 diff --git "a/samples/\350\222\274\347\234\237_\350\277\205/tts/3.opus" "b/samples/\350\222\274\347\234\237_\350\277\205/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f4cdbb37aac9bfcc325d22fab57d1b62f3ac5860 --- /dev/null +++ "b/samples/\350\222\274\347\234\237_\350\277\205/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05826514d251abb5a9f8b23b1d68deaa0170f1566a6410697a08fd92f785f3a0 +size 164722 diff --git "a/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/1.opus" "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1750d32f1ed3dce7345c48848898e7b68b7696ba --- /dev/null +++ "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a848cf5883f2cf066cc3454cb7f673cf4794a552dedaf0a3fc6b8e8ea356ac +size 82702 diff --git "a/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/2.opus" "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9afbd896faccf76399cb874779fab10724337477 --- /dev/null +++ "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3801868bfd9463f5a4621e553f998cf7fcea041ffe55020f58b1bde90352a8c7 +size 113234 diff --git "a/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/3.opus" "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bdb0cf478b7d0674f7d6e5cc7ae716ea26acf07b --- /dev/null +++ "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623fd15a632a45e0668e06052c2bd24034b381d6eadb470367c1322808fd8580 +size 127238 diff --git "a/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/4.opus" "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..14adbe85b77494406be892c2afd80a6ff2bcb191 --- /dev/null +++ "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c597ff2327350737f5c5cf53313645b37cf26e0667d5000f6539849fa6ade5 +size 135143 diff --git "a/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/1.opus" "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..eeb8cf690f2cd39d8fc51acb55efb29b5749c75e --- /dev/null +++ "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd18bbb48ebacc4954b73741d14d437fb75c2bd9be38ba5163c79f4860e2adb +size 138244 diff --git "a/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/2.opus" "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3e22a301d81db92938322f98dc39f79399ef4458 --- /dev/null +++ "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7383dce46af5f57fa2cabfad270ea8fe597d838ebee53ae51a6db1c132ab9783 +size 103561 diff --git "a/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/3.opus" "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7eed4ca07153ed431cc0c237502d1cead7e1d554 --- /dev/null +++ "b/samples/\350\227\244\345\240\202_\346\234\261\351\237\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c320a7c09ec4f0f6aa5788effe897b84ce24e89b9e848ae9a58c57f6c846e48 +size 160939 diff --git "a/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/1.opus" "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..80686451d98d9e305b8d27c935ae916c6efcddec --- /dev/null +++ "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d24ba60ed14841cb18311d33e805161bfc5d1ce356d7ef1f3238bb8180cd842 +size 14395 diff --git "a/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/2.opus" "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8b3842ffc8e4a94295950e862b94e390fc33461e --- /dev/null +++ "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73601b7ac0dd57dcba65f3d11d823c246ec1664f98a37d4d1bb5415cd74dd58b +size 33267 diff --git "a/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/3.opus" "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..10e41ce6dcb03cd246e4cd9b74902390ca959c4f --- /dev/null +++ "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67071da714036996d7245818a658efcbebd92bfbc83fcc01172de0096f4bc26f +size 31223 diff --git "a/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/1.opus" "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..39e75028676e307a4f6d51f5509bc346ca9bd236 --- /dev/null +++ "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319ecc9215d68855e93587da4080c56f1cab19c6b84282d94f7a4bf0540cb169 +size 141895 diff --git "a/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/2.opus" "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6f7bd1dd47589da68fca52f2c05319ff9f88b90f --- /dev/null +++ "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580ac0d7b1ead45b08e81a682fa06a645a6646cb1b6ffc0cee4028f63c2e6000 +size 105404 diff --git "a/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/3.opus" "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b323863c65d22c6e240e033d9aae0fe318ba2dfc --- /dev/null +++ "b/samples/\350\227\244\345\264\216_\347\233\264\344\272\272/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83cac139aad6d7d3d04e7e430f32baf427b957a204353c95b13989640760cfc4 +size 154045 diff --git "a/samples/\350\230\255\350\217\257/guess/1.opus" "b/samples/\350\230\255\350\217\257/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c2263056bda29a4197fc1e46cb6f4fc68ffec929 --- /dev/null +++ "b/samples/\350\230\255\350\217\257/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df869d84f59a1d2adb089af0a3e07dcf7965c54b8be8a3995d5e3c2b85cae79 +size 253997 diff --git "a/samples/\350\230\255\350\217\257/guess/2.opus" "b/samples/\350\230\255\350\217\257/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..be3db688c1c2746bc8752202d8f7e6ba88daf0bd --- /dev/null +++ "b/samples/\350\230\255\350\217\257/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ac7a29a02b5458c75efa8efbfae08b9edd78ffd899f1609d0de85b57ff7f48 +size 131159 diff --git "a/samples/\350\230\255\350\217\257/guess/3.opus" "b/samples/\350\230\255\350\217\257/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4fb2926b2ab4a81ba1c36cbb782e8ce0564977d6 --- /dev/null +++ "b/samples/\350\230\255\350\217\257/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f781790c22101ba6bd266277f42e2158fb8bc74438330e5a8f3b91955d73dbe2 +size 69695 diff --git "a/samples/\350\230\255\350\217\257/tts/1.opus" "b/samples/\350\230\255\350\217\257/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ab93ea84b12a498048232751190c4da44ec0e355 --- /dev/null +++ "b/samples/\350\230\255\350\217\257/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3bc4b0e6788fdf56db9626f6b2459857a6ea83e6fe1762b42cfccc9f4811e15 +size 113785 diff --git "a/samples/\350\230\255\350\217\257/tts/2.opus" "b/samples/\350\230\255\350\217\257/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..7a53602d49cd0e49b005658c83ff5ad197ddb335 --- /dev/null +++ "b/samples/\350\230\255\350\217\257/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68595b2cfe575e5e6b49ec8115c417ae40a969bc7404d757aff0bdc5f43c4bd0 +size 85815 diff --git "a/samples/\350\230\255\350\217\257/tts/3.opus" "b/samples/\350\230\255\350\217\257/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..363c53f31d6bcbc0ea064bbed557bf1d545f56ca --- /dev/null +++ "b/samples/\350\230\255\350\217\257/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc53128269f8f5f1334ab0a8abdb0e84a2f3c6dae9ede34c16ee06b43c5c72cd +size 136760 diff --git "a/samples/\350\267\263\343\200\205/guess/1.opus" "b/samples/\350\267\263\343\200\205/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c34bc4b3af7b489440019195dc6d84285449871e --- /dev/null +++ "b/samples/\350\267\263\343\200\205/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95a4e90901abb513e52dbbac99473bb5c0f8745c02a6b3484014763d2ef5c83 +size 115182 diff --git "a/samples/\350\267\263\343\200\205/guess/2.opus" "b/samples/\350\267\263\343\200\205/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0b9067852e165373a4555ea04012014021bb340b --- /dev/null +++ "b/samples/\350\267\263\343\200\205/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207f0d2954eb8b0e3d5e8e5820548e85eb2210bd13067d78be57c9b80e33ad04 +size 85055 diff --git "a/samples/\350\267\263\343\200\205/guess/3.opus" "b/samples/\350\267\263\343\200\205/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..67b6d400c72dae1fa5dd258dff350b179ec6c61a --- /dev/null +++ "b/samples/\350\267\263\343\200\205/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd832bef5a3a536152330467e4149a23a73e8cb820ff286a2f6017d2b47b34a +size 58271 diff --git "a/samples/\350\267\263\343\200\205/tts/1.opus" "b/samples/\350\267\263\343\200\205/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b38fdb7bdaf401f3b065f987c8c8404a37743624 --- /dev/null +++ "b/samples/\350\267\263\343\200\205/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02bc1c21b1042e036459d66e77e9d10eb72f61b79a0a351b15375d74ee6b3c89 +size 137424 diff --git "a/samples/\350\267\263\343\200\205/tts/2.opus" "b/samples/\350\267\263\343\200\205/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..563455126ebc50033fbf999309e8207ae9e522e7 --- /dev/null +++ "b/samples/\350\267\263\343\200\205/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a98dbff9e3b3c116b6a22fb9d3c92e3f70a3178a549416435d6018de397c35c +size 103392 diff --git "a/samples/\350\267\263\343\200\205/tts/3.opus" "b/samples/\350\267\263\343\200\205/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d0c426e2bc1d5f054d34e8869d7e5753716c1a48 --- /dev/null +++ "b/samples/\350\267\263\343\200\205/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350d11ee65695d846aca292631f9c1184164e55f63c54e7be79584408bdaf885 +size 154912 diff --git "a/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/1.opus" "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e86fdfbb6c301699b5cd3d04f0cca88f4b13b5bb --- /dev/null +++ "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142ec7f4cf63c2cdb2a399c2090a1fa1baac1f582e8069d0dba9a6947e9ddea1 +size 63783 diff --git "a/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/2.opus" "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5d8dec27a17618f1b6392460c8be108e7009afe0 --- /dev/null +++ "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccea374f7d38647e709d19c0af351aa73a0dfeea568a5d19e5b7e0a7de8472e2 +size 80570 diff --git "a/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/3.opus" "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d352865487b2a1db1c674addd20862def997134c --- /dev/null +++ "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d463d0b7afc4991227c8de9334c50b74744fb45de7edbc50121e6acb33bfc7 +size 91249 diff --git "a/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/4.opus" "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..aa38caa63bc37029c93f18254e24c109f484869b --- /dev/null +++ "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40687f88a5bd096fee02b523ca9ef88e8eb93105590b037e0d64a84cf9d3b765 +size 81069 diff --git "a/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/1.opus" "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..786eb4df7b5d85601252c2fc40ac40c7032ce4d3 --- /dev/null +++ "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9848bfbf5fd600c58dfc654e42794993e73676303b7aa0b4f1d9575a8de5ec +size 114272 diff --git "a/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/2.opus" "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..09fbeec2f8c0f92014fbc6482e0d3a1b4c4e9b0a --- /dev/null +++ "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6103b69b42b0fa0776e82d273a771435e642ec17b0be1fdf2f2d2ebd634fc5e2 +size 88778 diff --git "a/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/3.opus" "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..501038037de7a15d2df6bbc57f0372012faa4b14 --- /dev/null +++ "b/samples/\351\207\216\346\234\254_\350\227\215\344\270\200\351\203\216/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622c7a39aa137a46dee10b940f218305223b62f805e516359c66a9cb6410cd8a +size 134022 diff --git "a/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/1.opus" "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..eeec4cf6bea2834d9d5956f18108081eaa92b628 --- /dev/null +++ "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2e1cab4d1b5c56cba4ad25b4b19d6cb102e078b64c2135ed2150f7d4702080 +size 145096 diff --git "a/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/2.opus" "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6c31b2506585f2bb6c93a29b4246db1aaf93a684 --- /dev/null +++ "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c273e0e8ee8274975b7abff6ea614d17b19a90f315949f97329472ff7dd76e63 +size 100922 diff --git "a/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/3.opus" "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ef3d98813b3393021e88b262ef7b609cef14ab57 --- /dev/null +++ "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90468b0c686f0e4c68c333aff5365600a9d5ab5d825465c3d0089955a2dd1342 +size 105162 diff --git "a/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/1.opus" "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..21639f38b468bf72ddbb23dc666720c60fd289f6 --- /dev/null +++ "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206c20b8a68e606c58ca06c442329604bde0d78357fd18e45b9cc6cdbf1e1c2f +size 118435 diff --git "a/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/2.opus" "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f55ade7dbf1915e605bf16d798a216c91c754fc5 --- /dev/null +++ "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f971b0c83cee398bd87d6359a99360f7f369887e417f8e5d31ae40503c9e2e +size 93064 diff --git "a/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/3.opus" "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..40e7767ffd2f4575a73a4b0313b4b57c619765c3 --- /dev/null +++ "b/samples/\351\207\221\345\237\216_\345\244\217\346\265\267/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4cad264bf0b1c984c489b2a3e13fdc615428deccdaede839cbd5a97de7e7bc +size 141731 diff --git "a/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/1.opus" "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2bc75bd27509e7972fc619ffbf9cd50fda66b27d --- /dev/null +++ "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2957d3c603d4a6a4a1f9f7969003a6c6eccafbd3df677df5686729aafffe8e61 +size 97925 diff --git "a/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/2.opus" "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0e6cfd0087036e85237da3bde700b5e5fd46e730 --- /dev/null +++ "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673e4bcdc2c0cdef9aab3c23a0fbdaf6f42e1fd30a65fd79749c2affff40ca47 +size 79208 diff --git "a/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/3.opus" "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..61bf72f929f7c8039c5e0c2a16d42c97a30b0667 --- /dev/null +++ "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6dfa260f570c556b1e670156b8965418f5c45eb5960291962df7d1297a9e58 +size 65932 diff --git "a/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/1.opus" "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..bb853df81b51b6bc5f191acbcbf37417d6e10127 --- /dev/null +++ "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deec40896687db1ee1e956a7340085b926b2e14f0bbacbb3c48238cdeb0af0c4 +size 130620 diff --git "a/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/2.opus" "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b88fd4d88cdb867ebf5d6252bd393c600bb7ee30 --- /dev/null +++ "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:795ce887d6044b207552f06462228a3899b5c19a9e5d1bbf13922b27efce6aa8 +size 96653 diff --git "a/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/3.opus" "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..59e4d6f4aadc1bcb32cb654dfb76cb6f3f7eb19d --- /dev/null +++ "b/samples/\351\231\275\346\226\227\343\203\273\343\202\250\343\202\244\343\203\207\343\203\263\343\203\273\343\202\260\343\203\252\343\203\274\343\203\263\343\202\246\343\203\203\343\203\211/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d102f1b8dcec5837eb45d8f8ffc71bf516b5d38ff2bb91b5298c1d0677cf12d +size 149258 diff --git "a/samples/\351\234\247\345\263\266_\345\276\213/guess/1.opus" "b/samples/\351\234\247\345\263\266_\345\276\213/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..795d897d274f6113c60edfbae54b9a507a6e2849 --- /dev/null +++ "b/samples/\351\234\247\345\263\266_\345\276\213/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8b674dc723ffdb38697ae83a486a8f35a031841670b9065d165d3055fcb0a1 +size 189076 diff --git "a/samples/\351\234\247\345\263\266_\345\276\213/guess/2.opus" "b/samples/\351\234\247\345\263\266_\345\276\213/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..a017f9f29e439c38e30e5c22424085d1e757bc73 --- /dev/null +++ "b/samples/\351\234\247\345\263\266_\345\276\213/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b369a282361b272f802c18c1d653cadda54d0284825d26a05844e7f3c00e8efe +size 114907 diff --git "a/samples/\351\234\247\345\263\266_\345\276\213/guess/3.opus" "b/samples/\351\234\247\345\263\266_\345\276\213/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..480448ae313d48fc0bc5fa6b8ebad94849fe629e --- /dev/null +++ "b/samples/\351\234\247\345\263\266_\345\276\213/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667dbbdd5bd3806891be14e9b5f246bb6fe4bbdd776edf00b595a02656e0e193 +size 73674 diff --git "a/samples/\351\234\247\345\263\266_\345\276\213/guess/4.opus" "b/samples/\351\234\247\345\263\266_\345\276\213/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9a1ad38794836377933030366a3ed9a0fe6c8ed7 --- /dev/null +++ "b/samples/\351\234\247\345\263\266_\345\276\213/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710f9182906d0f3c6085a7a3861b721422fefc1f36f4cf6ba433d22937c720ed +size 99588 diff --git "a/samples/\351\234\247\345\263\266_\345\276\213/tts/1.opus" "b/samples/\351\234\247\345\263\266_\345\276\213/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ad7312da419179629c1a359c95cd2968961439d3 --- /dev/null +++ "b/samples/\351\234\247\345\263\266_\345\276\213/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e217f1781d151a6d3e4504d1ee9c146fb5c508f68302c6841c3b1c6a602c184a +size 159891 diff --git "a/samples/\351\234\247\345\263\266_\345\276\213/tts/2.opus" "b/samples/\351\234\247\345\263\266_\345\276\213/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1c5ad67da445a8bbd70c832d4427f385134178be --- /dev/null +++ "b/samples/\351\234\247\345\263\266_\345\276\213/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d04a137693c08107f6c8e97438b5b09948ce050dac5cc02602b3df44d5a15a +size 116268 diff --git "a/samples/\351\234\247\345\263\266_\345\276\213/tts/3.opus" "b/samples/\351\234\247\345\263\266_\345\276\213/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d243d7fc01c0455a25b1ee8671df626baff33cf0 --- /dev/null +++ "b/samples/\351\234\247\345\263\266_\345\276\213/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800be907dad13a8ac13bf6761be9c81e03c1585979fc1bc26fe0fc762704bad3 +size 169057 diff --git "a/samples/\351\235\222\347\216\262/guess/1.opus" "b/samples/\351\235\222\347\216\262/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e39314352cc660a74e5fc31f4814c26b53be7d38 --- /dev/null +++ "b/samples/\351\235\222\347\216\262/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854935debaa22673ac30de0525864640454df1810470c0a282bab5270b73f169 +size 169418 diff --git "a/samples/\351\235\222\347\216\262/guess/2.opus" "b/samples/\351\235\222\347\216\262/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3f6c4a53ef3350e9162ed79bf2555be92903319f --- /dev/null +++ "b/samples/\351\235\222\347\216\262/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070fb4d54aef5f96c53498591d72f4dabefae7b253ebf91884fa05ec444418c6 +size 198139 diff --git "a/samples/\351\235\222\347\216\262/guess/3.opus" "b/samples/\351\235\222\347\216\262/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..623ead9bfb88781150b671e9d76b869b1a3d1fb3 --- /dev/null +++ "b/samples/\351\235\222\347\216\262/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842cffdf37675a7a7b0456863dd3f4f5802de29e200e68683c8fd1da7a0cf079 +size 227148 diff --git "a/samples/\351\235\222\347\216\262/guess/4.opus" "b/samples/\351\235\222\347\216\262/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..49ed1a1254718e45faed1344050065c6654391e5 --- /dev/null +++ "b/samples/\351\235\222\347\216\262/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64151fe4390452c1ae15b823a7849d8654084b04df841aa60e896002e567892e +size 148320 diff --git "a/samples/\351\235\222\347\216\262/tts/1.opus" "b/samples/\351\235\222\347\216\262/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b5a7076ca831c54303980ef3628c47437cd7f777 --- /dev/null +++ "b/samples/\351\235\222\347\216\262/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3768577a4e59b70086073b4b0381585c9659515b9a7fbcf4ea14f46ae868003 +size 138892 diff --git "a/samples/\351\235\222\347\216\262/tts/2.opus" "b/samples/\351\235\222\347\216\262/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..c034957ab0d069070998fd2b5e61c2b0d31f7708 --- /dev/null +++ "b/samples/\351\235\222\347\216\262/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4941ab9b09dc197491d52bfe19447e7871b250f381198228989420597ecfef43 +size 106992 diff --git "a/samples/\351\235\222\347\216\262/tts/3.opus" "b/samples/\351\235\222\347\216\262/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5350d5dfcb2782cf9dfc380d24011a34c63765ac --- /dev/null +++ "b/samples/\351\235\222\347\216\262/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc56d0d4db16aaa5d980e9e3bf2018cf5aae83e2fd18e427c5c502c4d96fd066 +size 161515 diff --git "a/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/1.opus" "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..330d7352cf771bf5dea8ff0740f6f0ce7f7ef8f8 --- /dev/null +++ "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d993a1c6c0dd846accd811ea1003c1db660b0e7805c43b4de236a0c146182feb +size 157491 diff --git "a/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/2.opus" "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..ad52efaa9feef7369391a3fc0a746b75f9021b89 --- /dev/null +++ "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdc2e31d997ac6f85baf53ae8710a86b6fd8f5fd9d4efba21aa96a5a510d495 +size 97551 diff --git "a/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/3.opus" "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0765da860f6cde712591f90bbd359cd0c961348a --- /dev/null +++ "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dbc832d5fc36215f938cb1312f2e8ffa5ca050f8a28bca5a8067706490c60c5 +size 157336 diff --git "a/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/1.opus" "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..961ac01a195a71051f96d7277d5bc08dc8e9980a --- /dev/null +++ "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9ff3186c065264dd9b75553e13b4e3d8013214b0f1a5661bbb4b7d023444dc +size 149588 diff --git "a/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/2.opus" "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2e30ad9c912b50465335d57b94eea5b0872859ce --- /dev/null +++ "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2469a809410f6f25c15dffbfe9edddc28f7f0d24974beff333e3010b93b4d2 +size 113542 diff --git "a/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/3.opus" "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..85656959857b8f424acf9d05f57158602837acca --- /dev/null +++ "b/samples/\351\236\215\351\246\254_\345\213\235\347\224\267/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f793c4135a5b4daa73ce19469ec4c4f1a2ef754c3104d445e4bda9e23fe888ba +size 167540 diff --git "a/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/1.opus" "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..83e250c3c1c1dfa78d04731c26a71b4e124d6d04 --- /dev/null +++ "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a915c0437977ce91fa7197b62d6bb7c93aff5f65fb4c8e5841cbe840852f5ab3 +size 109336 diff --git "a/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/2.opus" "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..520a5cb963271d0ec65b9b89599e3faff073fa78 --- /dev/null +++ "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e2ea4430a372cb70f41701a6435702bcabe83177624ded44a0b71e057b3a91 +size 102909 diff --git "a/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/3.opus" "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..761427768fcdf6652fab835f6bc02e79863edf47 --- /dev/null +++ "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00a2fb2073d005d16949b8073ae6c3d06b5914e482bb5cb4532ffd377b52bef6 +size 169346 diff --git "a/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/1.opus" "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..3464013aa963c44dd705a1890b367c37eb82b39e --- /dev/null +++ "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e6ff590b19c2394bca832dfd055eaab3d4b623082a7ab5c575071aa2c3098b +size 129622 diff --git "a/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/2.opus" "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..84bf64c4fd792f2212247e99e129c036d475a1cf --- /dev/null +++ "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e533d63f07fa48861fbfb85208b1692b94ae5947e0a766e4a56f127918e73d +size 98546 diff --git "a/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/3.opus" "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1533332e2d55656d9554e0df23dca4bde1dcba69 --- /dev/null +++ "b/samples/\351\253\230\345\235\202_\350\214\211\350\216\211/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc98136bc7252e8279b527771cd805b56cbe673ae9992c1c6010082808a2f91 +size 147123 diff --git "a/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/1.opus" "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..eeaba923918b5712bee7502f93c25d32841cd56b --- /dev/null +++ "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21956ce48df256ed25e0f1c171828936728b5cb2cf947a755525028a455c42f8 +size 42257 diff --git "a/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/2.opus" "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..231d2aa4a64d5e602005c236ec317a217e07329d --- /dev/null +++ "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45e5a0b38d9ea2b107d2587884938e0d7c06ba1485f801ed3c8e3e942a35baf +size 43869 diff --git "a/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/3.opus" "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..0e62a5a8acd79fb3872a7e2359d5bf434ac01c54 --- /dev/null +++ "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4db489871c6f5d8a5f6e653223a437e078b2339a18a02496c06dc04fda0569 +size 70320 diff --git "a/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/1.opus" "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..672d9d6785d6e523f3d11d3477a38a8c6d859271 --- /dev/null +++ "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5927b3f62fd9b9f00384d93784ea337f0547d0e5ad255e61621dc779233efeb7 +size 128385 diff --git "a/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/2.opus" "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..becf8bbd0c8a6c96008393c7dc7e0702ddd68b61 --- /dev/null +++ "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e24f88ff4e684ca1e8129954266734cd5f6a1d5d70aa633ef8457e92d7d2bb7 +size 102763 diff --git "a/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/3.opus" "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..6863c2bda70566ea6831ae7bc018714cc8a6a045 --- /dev/null +++ "b/samples/\351\253\230\345\256\256_\346\266\274\351\246\231/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2b0c29a7c4135dc27ab64b0c06ea6a38b15043eb65871a942cd5dbcbc954a0 +size 153967 diff --git "a/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/1.opus" "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..dc6c921686a51a77811357cdc89f88ce9f4e6ca6 --- /dev/null +++ "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970561945467119d564a560c644f9c4a8f306a1decb817b8b876369104f1fed6 +size 85604 diff --git "a/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/2.opus" "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..77be7c1e2d5c7c42903146a844539291b4da07dd --- /dev/null +++ "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0829733be043d0028037e1527110ba1090be674641e7248fefc8f78eb26f5baa +size 65525 diff --git "a/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/3.opus" "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4b8228f8f26a32c669bf2316795d97485ee7c705 --- /dev/null +++ "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3079f66bc6fa8f4b009f19dc291bf904f613a2187e604f6d0da06345adb9a9 +size 100563 diff --git "a/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/4.opus" "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1a909f7ce0c3d8f6eefec1e0085c42dfec12ff19 --- /dev/null +++ "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08fbfe891e8e80fc336ac2ee4ad687fe5b410d4233099b3945779cbe15ee5080 +size 50315 diff --git "a/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/1.opus" "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..791eb66cd18873e32b8fb12bf7692240bdd14349 --- /dev/null +++ "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68e1746f5fc0e9a62fc15342e882b01e69660360aad062e85e19fdc2f223cd9 +size 134845 diff --git "a/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/2.opus" "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..b12b4b472107bcb2ca5adfa044fd33f3fdccfa2e --- /dev/null +++ "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f6efe7fc0bb718cb463b792490916a35e562f7f74c425c93fcaf31cea73dc9 +size 103797 diff --git "a/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/3.opus" "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..add39cd5f12a9c2ea6fef0ef30f5121e4789b36f --- /dev/null +++ "b/samples/\351\253\230\346\247\273_\343\203\252\343\202\263/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c425fe270063b8c6371d0af6ac3ab494a2444ae0dd1683ffd705427bc20db654 +size 159643 diff --git "a/samples/\351\263\263_\347\222\260\351\202\243/guess/1.opus" "b/samples/\351\263\263_\347\222\260\351\202\243/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4aa86a1a84d8f4e1c3054d4cfcaa4140bb901392 --- /dev/null +++ "b/samples/\351\263\263_\347\222\260\351\202\243/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc52680633a75e94a552f268b3a5626fd32a7236aa21b9c6b889ff4e564ee00 +size 71277 diff --git "a/samples/\351\263\263_\347\222\260\351\202\243/guess/2.opus" "b/samples/\351\263\263_\347\222\260\351\202\243/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d397f2accf49b4bc46e5bdf72c613581286ef2a4 --- /dev/null +++ "b/samples/\351\263\263_\347\222\260\351\202\243/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c810e08f3ebf76f32f1513840a8dc78da594b126a4847f9bd63d0e705c9e1b95 +size 186717 diff --git "a/samples/\351\263\263_\347\222\260\351\202\243/guess/3.opus" "b/samples/\351\263\263_\347\222\260\351\202\243/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..505ae15b17cf3e37cdd5c8cc43d1ea9f2d121f0f --- /dev/null +++ "b/samples/\351\263\263_\347\222\260\351\202\243/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a920ef3f95c70e154c6922a68b8a55d11b209b67700fd889ff70aa3e2c5194d +size 75356 diff --git "a/samples/\351\263\263_\347\222\260\351\202\243/guess/4.opus" "b/samples/\351\263\263_\347\222\260\351\202\243/guess/4.opus" new file mode 100644 index 0000000000000000000000000000000000000000..e6bc7759ee93d0c5f9f85df8025cbd693a71a81b --- /dev/null +++ "b/samples/\351\263\263_\347\222\260\351\202\243/guess/4.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322077fe66a5ff86c84e84013156d4f50b10a559e5f8b867fa202dc8e00e9616 +size 82315 diff --git "a/samples/\351\263\263_\347\222\260\351\202\243/tts/1.opus" "b/samples/\351\263\263_\347\222\260\351\202\243/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5d8147f7fdf074709ad3f42d0bd0d06589b531d1 --- /dev/null +++ "b/samples/\351\263\263_\347\222\260\351\202\243/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fff18e89d7e983292766e2cfc9a1a2c96b848bae13574feafdb8c613bf51ab +size 133727 diff --git "a/samples/\351\263\263_\347\222\260\351\202\243/tts/2.opus" "b/samples/\351\263\263_\347\222\260\351\202\243/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8f1c2f1d17eaaad2d4da8bc8160c2986826cfddd --- /dev/null +++ "b/samples/\351\263\263_\347\222\260\351\202\243/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429792c1a299df89a43fcd0e902be73ec1cdb99f222ef40eb6ec2d21ac9da567 +size 99604 diff --git "a/samples/\351\263\263_\347\222\260\351\202\243/tts/3.opus" "b/samples/\351\263\263_\347\222\260\351\202\243/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d7f6613622b80d1b908c14096461d99ad1468938 --- /dev/null +++ "b/samples/\351\263\263_\347\222\260\351\202\243/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2c8c3b06c4bcb7ac1f06da6d88e2f81b7aca4e124e09b737ed3b9acc72da1b +size 149612 diff --git "a/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/1.opus" "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..22b9bc981b3118a82f5223ad76e513fa8ef23a89 --- /dev/null +++ "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5cfd7ddb5b315298d473eefad1bdf15d1426e60b32b7b4f61355b2600c958b7 +size 87838 diff --git "a/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/2.opus" "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..8e46933c50070ab951e39f909fa18c7cc5e3bb17 --- /dev/null +++ "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aef8ea7f08428e4797c7da4f993fd2623ea0fcbdaaac5e8b8f4f9d2fe7c9d4d +size 76893 diff --git "a/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/3.opus" "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..cdd25fcd6983b4115c0598f896b07d039941f1d0 --- /dev/null +++ "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5250985dcba4f25b07e02991a24747052ee53da971e000d842ab58d96c3060d1 +size 43330 diff --git "a/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/1.opus" "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..80fb9059b18c955ed2ffb1802681d7db0a61cd47 --- /dev/null +++ "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0112e83e5670a1f0c76cdb3c98cc4c221b38497ad0cc0e90616e0876de95557 +size 161947 diff --git "a/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/2.opus" "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..019e71e2340cc6ce42aefcdbd38b229523d80bff --- /dev/null +++ "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a44ae5e03cf3a73b29cf2f72d19b3fc7ed63470dd000aac52931a0c9e01a737 +size 122490 diff --git "a/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/3.opus" "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..da8f292851f4a105b280db17083f5b3ed9fcc499 --- /dev/null +++ "b/samples/\351\264\207\343\203\216\345\256\256_\347\222\260/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ddaa0fba137760f0ed95e25f3c276dacedc74a53ac42a44cddf872f749d234 +size 185340 diff --git "a/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/1.opus" "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2d28bd2e5b3c75f7234034ad196a4c410bc63898 --- /dev/null +++ "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b324eefb8666001b7e713043dcf2df8fe253c57a267c4abb7d69bc5cbecded5 +size 99499 diff --git "a/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/2.opus" "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..f282a629ec75d863b281b9483b23fcfa0fd16f17 --- /dev/null +++ "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b7abdd15a640494af4e1a0d61f1015b23a2cca07dd88c6c4260c67052b2dca +size 119904 diff --git "a/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/3.opus" "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..d40570c12ea77017cc564fc0216535adb278117d --- /dev/null +++ "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04ea926b45d1caf589fc8fd27344e9777195456d0aa7f0b33ca31477dc709d7 +size 122639 diff --git "a/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/1.opus" "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..1140cde4f7d193a7701c445878bcf92320c96125 --- /dev/null +++ "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd28184ed2de18cad1b5c8a933fa00ae2f75c85bc08b012ec126fbed6ee051bb +size 143372 diff --git "a/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/2.opus" "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9b92b66d35cc69d855d1e10f9ab1274349123eb7 --- /dev/null +++ "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a48008663c9f6c3ec51da9e8fb8a4a2da6cce6477555449a1345c2c32e211c +size 111548 diff --git "a/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/3.opus" "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4288408ab7e87484535fcd72ddb64fc51d74ce86 --- /dev/null +++ "b/samples/\351\264\211\347\276\275_\346\234\261\351\267\272\345\255\220/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb01e2499f20eba333b2113fd21ae06cf1b1f8c617705040d1bc9276e35aeb6c +size 163633 diff --git "a/samples/\351\264\253\351\207\216_\345\217\266/guess/1.opus" "b/samples/\351\264\253\351\207\216_\345\217\266/guess/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..65a8c8ccb483c0b5228c34aa94086109a812994c --- /dev/null +++ "b/samples/\351\264\253\351\207\216_\345\217\266/guess/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6763fe0d9f728225c8f8ed92a7c25bb15a94997088c55c86c779c99b49019f9e +size 93252 diff --git "a/samples/\351\264\253\351\207\216_\345\217\266/guess/2.opus" "b/samples/\351\264\253\351\207\216_\345\217\266/guess/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..5bb7cd613c69c60ab8df618030d4b34ce91d2518 --- /dev/null +++ "b/samples/\351\264\253\351\207\216_\345\217\266/guess/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf09c2042428b09a8465c03db91a24b95bb49c07f71bc106cbc4b7014c364dc +size 75055 diff --git "a/samples/\351\264\253\351\207\216_\345\217\266/guess/3.opus" "b/samples/\351\264\253\351\207\216_\345\217\266/guess/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..545d70bdb4eec64611797527251888a45f0b2fdf --- /dev/null +++ "b/samples/\351\264\253\351\207\216_\345\217\266/guess/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b65c234518267688d70833bada6d620496d08b43c6406a440ccdb46a0fe8d6 +size 77028 diff --git "a/samples/\351\264\253\351\207\216_\345\217\266/tts/1.opus" "b/samples/\351\264\253\351\207\216_\345\217\266/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..9fa3a0c096c4248d41ed5b7e3dc743b1a5d0760b --- /dev/null +++ "b/samples/\351\264\253\351\207\216_\345\217\266/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9bdadee8c3d4204b39a8376d8b7980fdb2606fcdc90e8c4a063572d87fc18d +size 149498 diff --git "a/samples/\351\264\253\351\207\216_\345\217\266/tts/2.opus" "b/samples/\351\264\253\351\207\216_\345\217\266/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..4a7753c78822f82c05f3eb546718ffe5d52cf278 --- /dev/null +++ "b/samples/\351\264\253\351\207\216_\345\217\266/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8b040f34c18ab292fea361d730b3a0bf1f451a38875649ba78f98d8d9a80ab +size 115234 diff --git "a/samples/\351\264\253\351\207\216_\345\217\266/tts/3.opus" "b/samples/\351\264\253\351\207\216_\345\217\266/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..54bfa18345561d1c8e33c63a89e736bd39108e83 --- /dev/null +++ "b/samples/\351\264\253\351\207\216_\345\217\266/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:858992ade9ccf493913b8f741d1f8a57a8e26ecc60da23f48e29b5de25603279 +size 175395 diff --git "a/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/1.opus" "b/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/1.opus" new file mode 100644 index 0000000000000000000000000000000000000000..2fbb80ca180dbf360836b3c970e98e9540c295f8 --- /dev/null +++ "b/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/1.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7acdfd9e812edc6c5392cc5b0cc5d776a1b743901d1f142d01f4604ac02631a3 +size 131958 diff --git "a/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/2.opus" "b/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/2.opus" new file mode 100644 index 0000000000000000000000000000000000000000..57d25ff34d6b0121479bd0b7760e8e47b0beeab6 --- /dev/null +++ "b/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/2.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfe283594bf41915c07e1db796f1dd9e23fcad764b441ba5809c9e27d8e6f6a +size 121082 diff --git "a/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/3.opus" "b/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/3.opus" new file mode 100644 index 0000000000000000000000000000000000000000..321a0284be87ba08c6b516657a987524002f20c6 --- /dev/null +++ "b/samples/\351\264\273\343\203\216\345\256\256_\346\270\205\351\233\205/tts/3.opus" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de97cf2626336bcc74719f550dcdb3a2d8a0e1eed88c97dffb7feb66f0ec86d0 +size 176621