felixzhao1111 发表于 2021-8-7 17:38

提取剪映字幕为srt

本帖最后由 felixzhao1111 于 2021-8-8 00:16 编辑

目前仅支持windows版剪映
主要功能是提取最近一次打开的剪映项目的字幕,将其转换为srt字幕

# -*- coding: utf-8 -*-
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))
    if pl == '':
      hms = '00:00:00'
    else:
      h = 0
      m = 0
      s = int(pl)
      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))


def format_time(start, end):
    # 拼接时间格式化后的字符串
    return ' --> '.join((get_time(start), get_time(end)))


def main():
    # 取得电脑的用户名
    username = getpass.getuser()
    # 拼接取得json文件夹所在地址
    json_root_path = 'C:/Users/' + username + '/AppData/Local/JianyingPro/User Data/Projects/com.lveditor.draft/'
    # 拿到最后一次打开的json文件(内含字幕信息)
    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']['draft_fold_path'])
    # 打开json文件并将其转换为srt文件
    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']['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
            # 可以在此处自定义新建的srt字幕路径及文件名
            with open('测试.srt', 'w', encoding='utf-8') as srt:
                while idx < len(l1):
                  srt.write(str(idx + 1) + '\n')
                  srt.write(l1 + '\n')
                  srt.write(l2 + '\n')
                  srt.write('\n')
                  idx += 1


if __name__ == '__main__':
    main()

iferencz 发表于 2021-12-22 19:11

yanzuzheng 发表于 2021-12-20 18:17
楼主需要更新啦
帮楼主改了个参数,可以用了
https://gist.github.com/iferencz/b00ccd63dfed11e3987c82bd141cf0c5

yanzuzheng 发表于 2021-12-23 10:17

iferencz 发表于 2021-12-22 19:11
帮楼主改了个参数,可以用了
https://gist.github.com/iferencz/b00ccd63dfed11e3987c82bd141cf0c5

厉害了,我看了半天 不知道改啥能行,只能识别到上一个版本的文件,最新的剪映文件识别不到

yanzuzheng 发表于 2021-8-12 15:00

怎么使用啊

felixzhao1111 发表于 2021-8-13 21:52

yanzuzheng 发表于 2021-8-12 15:00
怎么使用啊

安装Python解释器执行.py文件即可

lyjhyjyes 发表于 2021-8-14 15:46

同问,可否再详细一点。已运行python 提取.py

pendave 发表于 2021-8-31 22:51

你这不支持多轨字幕啊

felixzhao1111 发表于 2021-8-31 23:59

pendave 发表于 2021-8-31 22:51
你这不支持多轨字幕啊

确实没有搞

yanzuzheng 发表于 2021-12-20 18:17

楼主需要更新啦

yanzuzheng 发表于 2021-12-23 10:18

iferencz 发表于 2021-12-22 19:11
帮楼主改了个参数,可以用了
https://gist.github.com/iferencz/b00ccd63dfed11e3987c82bd141cf0c5

但是连接好像打不开
页: [1] 2
查看完整版本: 提取剪映字幕为srt