吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 4464|回复: 15
收起左侧

[Python 转载] 提取剪映字幕为srt

  [复制链接]
felixzhao1111 发表于 2021-8-7 17:38
本帖最后由 felixzhao1111 于 2021-8-8 00:16 编辑

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

[Python] 纯文本查看 复制代码
# -*- 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))[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文件夹所在地址
    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'][0]['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'][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
            # 可以在此处自定义新建的srt字幕路径及文件名
            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()

剪映字幕提取1.0.zip

1.2 KB, 下载次数: 293, 下载积分: 吾爱币 -1 CB

免费评分

参与人数 3吾爱币 +2 热心值 +3 收起 理由
tsyapj + 1 + 1 热心回复!
iferencz + 1 + 1 谢谢@Thanks!
qzs004 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

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

帮楼主改了个参数,可以用了
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

安装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

但是连接好像打不开
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 11:41

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表