OzoneAsai commited on
Commit
6b80de7
1 Parent(s): a7a410d

Upload folderMaker.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. folderMaker.py +144 -0
folderMaker.py ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import hashlib
3
+ import requests
4
+ import urllib.parse
5
+ from translation_data import (
6
+ translation_dict_A,
7
+ translation_dict_B,
8
+ translation_dict_C,
9
+ translation_dict_D,
10
+ translation_dict_F
11
+ # 必要に応じて translation_dict_E, translation_dict_G などを追加
12
+ )
13
+
14
+ # 設定
15
+ AUDIO_VARIANTS = 3 # 各フレーズあたりの音声バリアント数
16
+ OUTPUT_DIR = os.path.join('static', 'audio') # 音声ファイルの保存先
17
+ HASH_LENGTH = 8 # ハッシュの長さ
18
+ VOICE_GENERATION_URL = "http://192.168.1.80:5000/voice" # 音声生成APIのURL
19
+
20
+ # バリアントごとの model_id の設定
21
+ VARIANT_SETTINGS = {
22
+ 1: {'model_id': 9},
23
+ 2: {'model_id': 11},
24
+ 3: {'model_id': 12},
25
+ }
26
+
27
+ def generate_truncated_hash(text, length=HASH_LENGTH):
28
+ """
29
+ 指定されたテキストのトランケートされたSHA-256ハッシュを生成します。
30
+
31
+ Args:
32
+ text (str): ハッシュ化するテキスト。
33
+ length (int): トランケートするハッシュの長さ。
34
+
35
+ Returns:
36
+ str: トランケートされたハッシュ文字列。
37
+ """
38
+ hash_object = hashlib.sha256(text.encode('utf-8'))
39
+ hex_dig = hash_object.hexdigest()
40
+ return hex_dig[:length]
41
+
42
+ def create_directory(path):
43
+ """
44
+ 指定されたパスにディレクトリを作成します。存在しない場合のみ作成します。
45
+
46
+ Args:
47
+ path (str): 作成するディレクトリのパス。
48
+ """
49
+ os.makedirs(path, exist_ok=True)
50
+
51
+ def generate_audio(text, model_id):
52
+ """
53
+ 音声生成APIにリクエストを送り、音声データを取得します。
54
+ `speaker_id` は固定値 0 を使用します。
55
+
56
+ Args:
57
+ text (str): 音声化するテキスト。
58
+ model_id (int): 使用するモデルID。
59
+
60
+ Returns:
61
+ bytes: 取得した音声データのバイナリ。
62
+ """
63
+ params = {
64
+ 'text': text,
65
+ 'model_id': model_id,
66
+ 'speaker_id': 0, # speaker_id は常に 0 で問題ない仕様
67
+ 'sdp_ratio': 0.2,
68
+ 'noise': 0.6,
69
+ 'noisew': 0.8,
70
+ 'length': 1.4,
71
+ 'language': 'JP',
72
+ 'auto_split': 'true',
73
+ 'split_interval': 0.5,
74
+ 'assist_text_weight': 1,
75
+ 'style': 'Neutral',
76
+ 'style_weight': 1
77
+ }
78
+
79
+ try:
80
+ response = requests.get(VOICE_GENERATION_URL, params=params, timeout=30)
81
+ response.raise_for_status() # HTTPエラーがあれば例外を発生させる
82
+ return response.content
83
+ except requests.exceptions.RequestException as e:
84
+ print(f"Error generating audio for text '{text}': {e}")
85
+ return None
86
+
87
+ def process_translation_dicts():
88
+ """
89
+ すべての翻訳辞書を処理し、音声バリアントを生成してフォルダに保存します。
90
+ """
91
+ # 翻訳辞書のリスト
92
+ translation_dicts: list[dict[str, str]] = [
93
+ translation_dict_A,
94
+ translation_dict_B,
95
+ translation_dict_C,
96
+ translation_dict_D,
97
+ translation_dict_F
98
+ # 必要に応じて translation_dict_E, translation_dict_G などを追加
99
+ ]
100
+
101
+ for dict_index, translation_dict in enumerate(translation_dicts, start=1):
102
+ set_identifier = chr(64 + dict_index) # 'A', 'B', 'C', etc.
103
+ print(f"\nProcessing translation_dict_{set_identifier}")
104
+
105
+ for chinese_sentence, japanese_sentence in translation_dict.items():
106
+ # 日本語の文からハッシュを生成
107
+ sentence_hash = generate_truncated_hash(japanese_sentence)
108
+ folder_path = os.path.join(OUTPUT_DIR, sentence_hash)
109
+
110
+ # フォルダを作成
111
+ create_directory(folder_path)
112
+ print(f"Created/Verified directory: {folder_path}")
113
+
114
+ for variant_num in range(1, AUDIO_VARIANTS + 1):
115
+ settings = VARIANT_SETTINGS.get(variant_num)
116
+ if not settings:
117
+ print(f"No settings defined for variant {variant_num}. Skipping.")
118
+ continue
119
+
120
+ model_id = settings['model_id']
121
+ audio_filename = f"variant_{variant_num}.mp3"
122
+ audio_filepath = os.path.join(folder_path, audio_filename)
123
+
124
+ # 既にファイルが存在する場合はスキップ
125
+ """
126
+ if os.path.exists(audio_filepath):
127
+ print(f"Audio variant already exists: {audio_filepath}")
128
+ continue
129
+
130
+ print(f"Generating {audio_filename} with model_id={model_id}, {japanese_sentence}")
131
+ """
132
+ # 音声生成
133
+ audio_data = generate_audio(japanese_sentence, model_id)
134
+ if audio_data:
135
+ # ファイルに保存
136
+ with open(audio_filepath, 'wb') as f:
137
+ f.write(audio_data)
138
+ print(f"Saved audio variant: {audio_filepath}, {japanese_sentence}")
139
+ else:
140
+ print(f"Failed to generate audio for variant {variant_num} of sentence: {japanese_sentence}")
141
+
142
+ if __name__ == "__main__":
143
+ process_translation_dicts()
144
+ print("\nAudio variant generation completed.")