ytbchat2ass.py 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. # -*- coding:utf-8 -*-
  2. from chat_downloader import ChatDownloader
  3. import sys
  4. import math
  5. import urllib.request
  6. import re
  7. import argparse
  8. # 目前仅支持开启了chat的回放,看不懂chat-downloader的源代码,甚至不想把直播安排进todo
  9. def sec2hms(sec): # 时间转换
  10. hms = str(int(sec//3600)).zfill(2)+':' + str(int((sec % 3600)//60)).zfill(2)+':'+str(round(sec % 60, 2))
  11. return hms
  12. def chat2ass(link, name, delay, cookies):
  13. pattern = re.compile(r"(?:.*?)youtube\.com/(?:v/|live/|watch\?(?:.*&)?v=)(?P<video_id>[\w-]{11})")
  14. vid_match = pattern.split(link)
  15. vid = [x for x in vid_match if x][0]
  16. url = f"https://www.youtube.com/watch?v={vid}"
  17. html = urllib.request.urlopen(url).read().decode('utf-8')
  18. names = []
  19. if name:
  20. names += name
  21. title = re.findall("<title>(.+?)</title>", html)[0].replace(' - YouTube', '')
  22. names += re.findall('link itemprop="name" content="(.+?)">', html)
  23. chat = ChatDownloader(cookies=cookies).get_chat(url, message_groups=['messages', 'superchat']) # 默认普通评论和sc
  24. count = 0
  25. limitLineAmount = 12 # 屏上弹幕行数限制
  26. danmakuPassageway = [] # 塞弹幕用,记录每行上一条弹幕的消失时间
  27. for i in range(limitLineAmount):
  28. danmakuPassageway.append(0)
  29. fontName = 'Source Han Sans JP' # 字体自己换
  30. videoWidth = 1280 # 视频宽度,按720P处理了后面的内容,不建议改
  31. videoHeight = 720 # 视频高度
  32. OfficeBgHeight = 72
  33. OfficeSize = 36
  34. fontSize = 58
  35. head = f'''[Script Info]
  36. ; Script generated by Aegisub 3.2.2
  37. ; http://www.aegisub.org/
  38. ScriptType: v4.00+
  39. PlayResX: {videoWidth}
  40. PlayResY: {videoHeight}
  41. [V4+ Styles]
  42. Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, marginL, marginR, marginV, Encoding
  43. Style: Default,微软雅黑,54,&H00FFFFFF,&H00FFFFFF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,2,0,2,0,0,0,0
  44. Style: Alternate,微软雅黑,36,&H00FFFFFF,&H00FFFFFF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,2,0,2,0,0,0,0
  45. Style: Office,{fontName},{OfficeSize},&H00FFFFFF,&H00FFFFFF,&H00000000,&H00000000,-1,0,0,0,100,100,2,0,1,1.5,0,2,0,0,10,0
  46. Style: Danmaku,{fontName},{fontSize},&H00FFFFFF,&H00FFFFFF,&H00000000,&H00000000,-1,0,0,0,100,100,2,0,1,1.5,0,2,0,0,10,0
  47. [Events]
  48. Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
  49. Comment: 0,00:00:00.0,00:00:00.0,Danmaku,标题,0,0,0,,{title}
  50. '''
  51. f = open(vid+'.ass', 'w', encoding='utf-8-sig')
  52. f.write(head)
  53. for message in chat:
  54. vpos = message['time_in_seconds'] - float(delay)
  55. if vpos > 0:
  56. vpos_end = vpos+8 # 普通弹幕的时长,默认8秒
  57. else:
  58. continue
  59. if 'name' not in message['author'].keys():
  60. continue
  61. if 'money' in message.keys():
  62. text = '('+str(message['money']['amount']) + message['money']['currency']+')' # 打钱的标上数额
  63. if 'message' in message.keys():
  64. if message['message']:
  65. text += message['message'] # 打钱有留言的加上
  66. vpos_end += 2 # 打钱的多给2秒
  67. else:
  68. # 没打钱的直接记录弹幕,设置了的号加上账号名字
  69. text = message['author']['name']+': ' + message['message'] if message['author']['name'] in names else message['message']
  70. if 'emotes' in message.keys():
  71. for i in message['emotes']:
  72. if i['is_custom_emoji']:
  73. text = text.replace(i['name'], '')
  74. else:
  75. text = text.replace(i['name'], i['id'])
  76. if text:
  77. if len(text) == 0 or len(text) > 100:
  78. continue
  79. else:
  80. continue
  81. if message['author']['name'] in names: # 特定账号的弹幕放上面并加上背景
  82. f.write('Dialogue: 4,'+sec2hms(vpos)+','+sec2hms(vpos_end)+',Office,,0,0,0,,{\\an5\\p1\\pos('+str(videoWidth/2)+','+str(math.floor(OfficeBgHeight/2))+')\\bord0\\1c&H000000&\\1a&H78&}'+'m 0 0 l '+str(videoWidth)+' 0 l '+str(videoWidth) + ' '+str(OfficeBgHeight)+' l 0 '+str(OfficeBgHeight)+'\n')
  83. f.write('Dialogue: 5,'+sec2hms(vpos)+','+sec2hms(vpos_end)+',Office,,0,0,0,,{\\an5\\pos('+str(videoWidth/2)+','+str(math.floor(OfficeBgHeight/2))+')\\bord0\\fsp0}'+text+'\n')
  84. count += 1
  85. else: # 其他人的弹幕放滚动
  86. vpos_next_min = float('inf')
  87. vpos_next = vpos+1280/(len(text)*60+1280) * 8
  88. for i in range(limitLineAmount):
  89. if vpos_next >= danmakuPassageway[i]:
  90. passageway_index = i
  91. danmakuPassageway[i] = vpos+8
  92. break
  93. elif danmakuPassageway[i] < vpos_next_min:
  94. vpos_next_min = danmakuPassageway[i]
  95. Passageway_min = i
  96. if i == limitLineAmount-1 and vpos_next < vpos_next_min:
  97. passageway_index = Passageway_min
  98. danmakuPassageway[Passageway_min] = vpos+8
  99. # 计算弹幕位置
  100. sx = videoWidth
  101. sy = fontSize*(passageway_index)
  102. ex = 0
  103. for i in text:
  104. if re.search("[A-Za-z 0-9',.]", i):
  105. ex = ex-30
  106. else:
  107. ex = ex-60
  108. ey = fontSize*(passageway_index)
  109. f.write('Dialogue: 0,'+sec2hms(vpos)+',' + sec2hms(vpos_end) + ',Danmaku,'+message['author']['name'].replace(',', '')+',0,0,0,,{\\an7\\move('+str(sx)+','+str(sy)+','+str(ex)+','+str(ey)+')}'+text+'\n')
  110. count += 1
  111. f.close()
  112. print(f'{title}的弹幕已经存为{vid}.ass,共{count}条')
  113. def main():
  114. if len(sys.argv) == 1:
  115. sys.argv.append('--help')
  116. parser = argparse.ArgumentParser()
  117. parser.add_argument('-n', '--name', metavar='str', help='除主播外,需将弹幕显示在上方的账号')
  118. parser.add_argument('-d', '--delay', metavar='str', help='弹幕延迟,一般适用于首播')
  119. parser.add_argument('-c', '--cookie', metavar='str', help='cookie文件的地址')
  120. parser.add_argument('link', metavar='str', help='视频链接或视频id')
  121. args = parser.parse_args()
  122. chat2ass(args.link, args.name or None, args.delay or 0, args.cookie or None)
  123. if __name__ == '__main__':
  124. main()