前言
之前给一个客户写批量生成视频字幕的脚本,后来差最后一步太难突破没写完,时间没赶上很遗憾没成交。
当时他发给了我这个脚本,说只有剪映2.4.5版本可以用,具体我也没测试。
使用方法
官网下载2.4.5版本剪映,安装后不要进行更新。
剪映识别完字幕后,运行py会生成一个str文件到当前目录。
代码
代码网上能搜到,原作者不清楚是谁。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| import getpass import os import json import re def get_time(time_int): if time_int == 0: return '00:00:00,000' p = re.compile(r'(\d*)(\d{3})\d{3}') pl = p.findall(str(time_int))[0] if pl[0] == '': hms = '00:00:00' else: h = 0 m = 0 s = int(pl[0]) while s >= 60: m += 1 s -= 60 while m >= 60: h += 1 m -= 60 while h >= 24: exit('暂不支持超过24小时的字幕文件转换') hms = ':'.join((str(h).zfill(2), str(m).zfill(2), str(s).zfill(2))) return ','.join((hms, pl[1])) def format_time(start, end): return ' --> '.join((get_time(start), get_time(end))) def main(): username = getpass.getuser() json_root_path = 'C:/Users/' + username + '/AppData/Local/JianyingPro/User Data/Projects/com.lveditor.draft/' if os.path.exists(json_root_path): with open(os.path.join(json_root_path, 'root_draft_meta_info.json'), 'r', encoding='utf-8') as f: json_path = (json.load(f)['all_draft_store'][0]['draft_fold_path']) if os.path.exists(json_path): with open(os.path.join(json_path, 'draft_content.json'), 'r', encoding='utf-8') as f: j = json.load(f) l1 = [] l2 = [] for i in j['tracks'][1]['segments']: start_time = int(i['target_timerange']['start']) end_time = int(i['target_timerange']['start'] + i['target_timerange']['duration']) l1.append(format_time(start_time, end_time)) for i in j['materials']['texts']: l2.append(i['content']) idx = 0 with open('测试.srt', 'w', encoding='utf-8') as srt: while idx < len(l1): srt.write(str(idx + 1) + '\n') srt.write(l1[idx] + '\n') srt.write(l2[idx] + '\n') srt.write('\n') idx += 1 if __name__ == '__main__': main()
|
要点
json_root_path = 'C:/Users/' + username + '/AppData/Local/JianyingPro/User Data/Projects/com.lveditor.draft/'
这里如果你的系统盘符不是c盘,修改下,否则识别不到。