Datasets:

Languages:
Chinese
Tags:
Not-For-All-Audiences
License:
Limour's picture
Upload 7 files
af185c5 verified
raw
history blame
2.65 kB
def get_all_files_in_directory(directory, ext=''):
import os
import re
custom_sort_key_re = re.compile('([0-9]+)')
def custom_sort_key(s):
# 将字符串中的数字部分转换为整数,然后进行排序
return [int(x) if x.isdigit() else x for x in custom_sort_key_re.split(s)]
all_files = []
for root, dirs, files in os.walk(directory):
for file in files:
if file.endswith(ext):
file_path = os.path.join(root, file)
all_files.append(file_path)
return sorted(all_files, key=custom_sort_key)
def clearT():
import unicodedata
from opencc import OpenCC
def full2half(input_str):
return ''.join([unicodedata.normalize('NFKC', char) for char in input_str])
cc = OpenCC('t2s') # 't2s'表示繁体转简体
def _clearT(s):
s = cc.convert(full2half(s))
return s.lstrip('n').strip().strip(r'\n').replace('\n', '\\n')
return _clearT
clearT = clearT()
# =================
a = get_all_files_in_directory(r'E:\tmp\zabh\scn', ext='.txt.json')
b = r'D:\datasets\tmp'
# =================
sc = {}
_n = {
"真奈美": "真奈美",
"吉泽": "吉泽",
"爱实": "爱实",
"女子学徒A": "女学生A",
"女子学徒B": "女学生B",
"女子学徒C": "女学生C",
"真奈美的母亲": "真奈美的母亲",
"优子": "优子",
"摇摇晃晃的男人": "摇摇晃晃的男人",
"机场职员": "机场工作人员",
"神父": "神父",
"护士A": "护士A",
"护士B": "护士B"
}
# =================
import json
for path in a:
name = path[path.rindex('\\'):]
name = name[:4]
if name not in sc:
sc[name] = []
print(name)
# =================
with open(path, 'r', encoding='utf-8') as json_file:
data = json.load(json_file)
# =================
for texts in data['scenes']:
try:
for texts in texts['texts']:
# print(texts)
n = texts[0]
if n is None:
n = '旁白'
else:
# _n[n] = clearT(texts[1])
n = _n[n]
# =================
d = clearT(texts[2])
if d:
sc[name].append(n + ':' + d)
except KeyError:
if type(texts) is not dict:
print(texts)
# =================
for k, v in sc.items():
with open(b + f'\\{k}.txt', 'w', encoding='utf-8') as f:
f.write('\n'.join(v))
# =================
import json
tmp = json.dumps(_n, ensure_ascii=False, indent=2)