openshot_video_generator.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823
  1. from os import listdir
  2. from os.path import isfile, isdir, join
  3. import openshot
  4. import threading
  5. import zhtts
  6. import os
  7. import urllib
  8. from typing import List
  9. import requests
  10. from pydantic import BaseModel
  11. from bs4 import BeautifulSoup
  12. from PIL import Image,ImageDraw,ImageFont
  13. import pyttsx3
  14. import rpyc
  15. import random
  16. import re
  17. import time
  18. import math
  19. import dataset
  20. from datetime import datetime
  21. from gtts import gTTS
  22. import ffmpy
  23. from difflib import SequenceMatcher
  24. import difflib
  25. from autosub import DEFAULT_CONCURRENCY
  26. from autosub import DEFAULT_SUBTITLE_FORMAT
  27. from pytranscriber.control.ctr_main import Ctr_Main
  28. from pytranscriber.control.ctr_autosub import Ctr_Autosub
  29. import multiprocessing
  30. import math
  31. from itertools import groupby
  32. from operator import itemgetter
  33. dir_sound = 'mp3_track/'
  34. dir_photo = 'photo/'
  35. dir_text = 'text_file/'
  36. dir_video = 'video_material/'
  37. dir_title = 'title/'
  38. dir_subtitle = 'subtitle/'
  39. dir_anchor = 'anchor_raw/'
  40. tmp_video_dir = 'tmp_video/'
  41. video_sub_folder = 'ai_anchor_video/'
  42. dir_list = [dir_sound,dir_photo,dir_text,dir_video,dir_title,dir_subtitle,dir_anchor,tmp_video_dir]
  43. def notify_group(msg):
  44. glist=['7vilzohcyQMPLfAMRloUawiTV4vtusZhxv8Czo7AJX8','WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD','1dbtJHbWVbrooXmQqc4r8OyRWDryjD4TMJ6DiDsdgsX','HOB1kVNgIb81tTB4Ort1BfhVp9GFo6NlToMQg88vEhh']
  45. for gid in glist:
  46. headers = {
  47. "Authorization": "Bearer " + gid,
  48. "Content-Type": "application/x-www-form-urlencoded"
  49. }
  50. params = {"message": msg}
  51. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  52. def cKey(r,g,b,fuzz):
  53. col=openshot.Color()
  54. col.red=openshot.Keyframe(r)
  55. col.green=openshot.Keyframe(g)
  56. col.blue=openshot.Keyframe(b)
  57. return openshot.ChromaKey(col, openshot.Keyframe(fuzz))
  58. def video_photo_clip(vid=None,layer=None, position=None, end=None
  59. ,scale_x=1,scale_y=1,location_x=0,location_y=0,ck=None,audio=True):
  60. clip = openshot.Clip(vid)
  61. clip.Layer(layer)
  62. clip.Position(position)
  63. clip.End(end)
  64. clip.scale_x=openshot.Keyframe(scale_x)
  65. clip.scale_y=openshot.Keyframe(scale_y)
  66. clip.location_x=openshot.Keyframe(location_x)
  67. clip.location_y=openshot.Keyframe(location_y)
  68. if ck!=None:
  69. clip.AddEffect(ck)
  70. if audio==True:
  71. clip.has_audio=openshot.Keyframe(1)
  72. else:
  73. clip.has_audio=openshot.Keyframe(0)
  74. return clip
  75. def listener_progress(string, percent):
  76. True
  77. def myunichchar(unicode_char):
  78. mb_string = unicode_char.encode('big5')
  79. try:
  80. unicode_char = unichr(ord(mb_string[0]) << 8 | ord(mb_string[1]))
  81. except NameError:
  82. unicode_char = chr(mb_string[0] << 8 | mb_string[1])
  83. return unicode_char
  84. def get_url_type(url):
  85. req = urllib.request.Request(url, method='HEAD', headers={'User-Agent': 'Mozilla/5.0'})
  86. r = urllib.request.urlopen(req)
  87. contentType = r.getheader('Content-Type')
  88. return contentType
  89. def make_dir(name_hash):
  90. for direct in dir_list:
  91. if not os.path.isdir(direct):
  92. os.mkdir(direct)
  93. try:
  94. os.mkdir(dir_photo+name_hash)
  95. except FileExistsError:
  96. print("~~~~~~Warning~~~~~~~~~Directory " , dir_photo+name_hash , " already exists")
  97. try:
  98. os.mkdir(dir_text+name_hash)
  99. except FileExistsError:
  100. print("~~~~~~Warning~~~~~~~~~Directory " , dir_text+name_hash , " already exists")
  101. try:
  102. os.mkdir(dir_sound+name_hash)
  103. except FileExistsError:
  104. print("~~~~~~Warning~~~~~~~~~Directory " , dir_sound+name_hash , " already exists")
  105. try:
  106. os.mkdir(dir_anchor+name_hash)
  107. except FileExistsError:
  108. print("~~~~~~Warning~~~~~~~~~Directory " , dir_anchor+name_hash , " already exists")
  109. try:
  110. os.mkdir(dir_subtitle+name_hash)
  111. except FileExistsError:
  112. print("~~~~~~Warning~~~~~~~~~Directory " , dir_subtitle+name_hash , " already exists")
  113. def file_prepare(name, name_hash,text_content,image_urls,multiLang,lang='zh'):
  114. make_dir(name_hash)
  115. img_num = 1
  116. for imgu in image_urls:
  117. if get_url_type(imgu) =='video/mp4':
  118. r=requests.get(imgu)
  119. f=open(dir_photo+name_hash+"/"+str(img_num)+".mp4",'wb')
  120. for chunk in r.iter_content(chunk_size=255):
  121. if chunk:
  122. f.write(chunk)
  123. f.close()
  124. else:
  125. im = Image.open(requests.get(imgu, stream=True).raw)
  126. im= im.convert("RGB")
  127. im.save(dir_photo+name_hash+"/"+str(img_num)+".jpg")
  128. img_num+=1
  129. #save text
  130. txt_idx=0
  131. for txt in text_content:
  132. text_file = open(dir_text+name_hash+"/"+str(txt_idx)+".txt", "w")
  133. text_file.write(txt)
  134. text_file.close()
  135. txt_idx+=1
  136. print("text file made")
  137. #make mp3
  138. txt_idx = 0
  139. for txt in text_content:
  140. if lang!='zh' or multiLang==1:
  141. if lang!='zh':
  142. tts = gTTS(txt)
  143. tts.save(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  144. else:
  145. tts = gTTS(txt,lang='zh-tw')
  146. tts.save(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  147. #speed up
  148. ff = ffmpy.FFmpeg(inputs={dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3": None}
  149. , outputs={dir_sound+name_hash+"/"+str(txt_idx)+".mp3": ["-filter:a", "atempo=1.2"]})
  150. ff.run()
  151. os.remove(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  152. else:
  153. print('use zhtts')
  154. tts = zhtts.TTS()
  155. tts.text2wav(txt,dir_sound+name_hash+"/"+str(txt_idx)+".mp3")
  156. txt_idx+=1
  157. print("mp3 file made")
  158. #make title as image
  159. txt2image_title(name, dir_title+name_hash+".png",lang)
  160. def txt2image(content, save_target,lang='zh'):
  161. unicode_text = trim_punctuation(content)
  162. font = ''
  163. if lang=='zh':
  164. font = ImageFont.truetype(font="font/DFT_B7.ttc", size=38)
  165. else :
  166. font = ImageFont.truetype(font="font/arial.ttf", size=38)
  167. text_width, text_height = font.getsize(unicode_text)
  168. canvas = Image.new('RGBA', (700, 500), (255, 0, 0, 0) )
  169. draw = ImageDraw.Draw(canvas)
  170. text= unicode_text
  171. draw.text((5,5), text, (255, 255, 0), font)
  172. canvas.save(save_target, "PNG")
  173. def txt2image_title(content, save_target, lang='zh'):
  174. unicode_text = trim_punctuation(content)
  175. font = ''
  176. if lang=='zh':
  177. font = ImageFont.truetype(font="font/DFT_B7.ttc", size=22)
  178. else :
  179. font = ImageFont.truetype(font="font/arial.ttf", size=22)
  180. text_width, text_height = font.getsize(unicode_text)
  181. canvas = Image.new('RGBA', (510, 500), (255, 0, 0, 0) )
  182. draw = ImageDraw.Draw(canvas)
  183. text= unicode_text
  184. draw.text((5,5), text, (17, 41, 167), font)
  185. canvas.save(save_target, "PNG")
  186. def call_anchor(fileName,avatar):
  187. conn = rpyc.classic.connect("192.168.1.105",18812)
  188. ros = conn.modules.os
  189. rsys = conn.modules.sys
  190. fr=open(dir_sound+fileName+".mp3",'rb')# voice
  191. #warning!!! file my be replaced by other process
  192. fw=conn.builtins.open('/tmp/output.mp3','wb')
  193. while True:
  194. b=fr.read(1024)
  195. if b:
  196. fw.write(b)
  197. else:
  198. break
  199. fr.close()
  200. fw.close()
  201. val=random.randint(1000000,9999999)
  202. ros.chdir('/home/jared/to_video')
  203. ros.system('./p'+str(avatar)+'.sh '+str(val)+' &')
  204. while True:
  205. print('waiting...')
  206. if ros.path.exists('/tmp/results/'+str(val)):
  207. break
  208. time.sleep(5)
  209. print('waiting...')
  210. fr=conn.builtins.open('/tmp/results/'+str(val)+'.mp4','rb')
  211. fw=open(dir_anchor+fileName+".mp4",'wb')
  212. while True:
  213. b=fr.read(1024)
  214. if b:
  215. fw.write(b)
  216. else:
  217. break
  218. fr.close()
  219. fw.close()
  220. def sentence_time_ratio(text,maxLen):
  221. total_len = len(text)
  222. if total_len > maxLen:
  223. left_word = total_len % maxLen
  224. times = int(math.ceil(total_len/maxLen))
  225. if left_word < 5:
  226. times+=1
  227. sen_len = int(total_len/times)
  228. time_ratio = [None]*times
  229. sentences = [None]*times
  230. print(times,',',total_len,",",sen_len)
  231. for t in range(times):
  232. sentences[t] = text[t*sen_len:t*sen_len+sen_len]
  233. time_ratio[t] = len(sentences[t])/total_len
  234. else:
  235. time_ratio = [1]
  236. sen_len = total_len
  237. sentences = [text]
  238. return sen_len, time_ratio, sentences
  239. def parse_script(file_path,gt_list):
  240. with open(file_path, 'r') as f:
  241. raw_lines = [line.strip() for line in f]
  242. lines = adjustSub_by_text_similarity(gt_list,raw_lines)
  243. dict_list = []
  244. for idx in range(int((len(lines)+1)/4)):
  245. script={}
  246. script['index'] = idx
  247. time_raw = raw_lines[idx * 4 +1 ]
  248. script['content'] = lines[idx*4+2]
  249. start = time_raw.split(' --> ')[0].split(':')
  250. stop = time_raw.split(' --> ')[1].split(':')
  251. start[2] = start[2].replace(',','.')
  252. stop[2] = stop[2].replace(',','.')
  253. start_sec = float(start[0])*3600 + float(start[1])*60 + float(start[2])
  254. stop_sec = float(stop[0])*3600 + float(stop[1])*60 + float(stop[2])
  255. duration = start_sec-stop_sec
  256. script['start'] = start_sec
  257. script['stop'] = stop_sec
  258. script['duration'] = abs(duration)
  259. dict_list.append(script)
  260. '''
  261. for dic in dict_list:
  262. print(dic)
  263. '''
  264. new_idx = 0
  265. splitted_dict = []
  266. for dic in dict_list:
  267. sen_len, time_ratio, sentences = sentence_time_ratio(dic['content'],13)
  268. for s in range(len(sentences)):
  269. new_dict = {}
  270. new_dict['index'] = new_idx
  271. start = dic['start']
  272. for t in range(s):
  273. start += (dic['duration']*time_ratio[t])
  274. new_dict['start'] = start
  275. new_dict['duration'] = dic['duration'] * time_ratio[s]
  276. new_dict['content'] = sentences[s]
  277. new_idx+=1
  278. splitted_dict.append(new_dict)
  279. return dict_list
  280. def adjustSub_by_text_similarity(gts,gens):
  281. adjusted = [None]*len(gens)
  282. combine2 = [''.join([i,j]) for i,j in zip(gts, gts[1:])]
  283. combine3 = [''.join([i,j,k]) for i,j,k in zip(gts, gts[1:], gts[2:])]
  284. alls = gts+combine2+combine3
  285. for idx in range(len(gens)):
  286. match_text = difflib.get_close_matches(gens[idx], alls, cutoff=0.1)
  287. if len(match_text) != 0 and idx:
  288. #print(gens[idx]+'校正後: '+match_text[0])
  289. adjusted[idx] = match_text[0]
  290. return adjusted
  291. def trim_punctuation(s):
  292. pat_block = u'[^\u4e00-\u9fff0-9a-zA-Z]+';
  293. pattern = u'([0-9]+{0}[0-9]+)|{0}'.format(pat_block)
  294. res = re.sub(pattern, lambda x: x.group(1) if x.group(1) else u" " ,s)
  295. return res
  296. def splitter(s):
  297. for sent in re.findall(u'[^!?,。\!\?]+[!?。\!\?]?', s, flags=re.U):
  298. yield sent
  299. def split_by_pun(s):
  300. res = list(splitter(s))
  301. return res
  302. def generate_subtitle_image_from_dict(name_hash, sub_dict):
  303. for script in sub_dict:
  304. sv_path = dir_subtitle + name_hash + '/' + str(script['index'])+'.png'
  305. sub = script['content']
  306. txt2image(sub,sv_path)
  307. def generate_subtitle_image(name_hash,text_content):
  308. img_list = [None]*len(text_content)
  309. for idx in range(len(text_content)):
  310. img_list[idx]=[]
  311. senList = split_by_pun(text_content[idx])
  312. for inner_idx in range(len(senList)):
  313. sv_path = dir_subtitle + name_hash +'/'+str(idx)+ str(inner_idx) +'.png'
  314. sub = senList[inner_idx]
  315. txt2image(sub,sv_path)
  316. img_list[idx]+=[{"count":len(sub),"path":sv_path}]
  317. return img_list
  318. def generate_subtitle_image_ENG(name_hash,text_content):
  319. img_list = [None]*len(text_content)
  320. for idx in range(len(text_content)):
  321. sv_path = dir_subtitle + name_hash +'/'+str(idx)+'.png'
  322. sub = text_content[idx]
  323. txt2image(sub, sv_path,lang='eng')
  324. img_list[idx] = sv_path
  325. return img_list
  326. def video_writer_init(path):
  327. w = openshot.FFmpegWriter(path)
  328. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  329. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  330. openshot.Fraction(1, 1), False, False, 3000000)
  331. return w
  332. def video_gen(name_hash,name,text_content, image_urls,multiLang,avatar):
  333. file_prepare(name, name_hash, text_content,image_urls,multiLang)
  334. for fname in range(len(text_content)):
  335. call_anchor(name_hash+"/"+str(fname),avatar)
  336. print('called............................................')
  337. ck=cKey(0,254,0,270)
  338. ck_anchor=cKey(0,255,1,320)
  339. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  340. t.Open()
  341. main_timer = 0
  342. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP_4.mp4")
  343. LOGO_OP.Open() # Open the reader
  344. head_duration = LOGO_OP.info.duration
  345. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=head_duration
  346. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  347. t.AddClip(LOGO_OP_clip)
  348. bg_head = openshot.FFmpegReader(dir_video+"complete_head_aispokesgirl.mp4")
  349. bg_head.Open()
  350. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  351. t.AddClip(bg_head_clip)
  352. main_timer += head_duration
  353. bg_head.Close()
  354. LOGO_OP.Close()
  355. anchor = openshot.FFmpegReader(dir_anchor+name_hash+"/0.mp4")
  356. anchor.Open()
  357. #anchor_clip = video_photo_clip(vid=anchor,layer=4,scale_x=0.65,scale_y=0.65,
  358. # location_x=0.35,location_y=0.25,position=main_timer, end=anchor.info.duration,ck=ck_anchor,audio=False)
  359. #t.AddClip(anchor_clip)
  360. speech = openshot.FFmpegReader(dir_sound+name_hash+"/0.mp3")
  361. speech.Open()
  362. speech_clip = openshot.Clip(speech)
  363. speech_clip.Position(main_timer)
  364. speech_clip.End(anchor.info.duration)
  365. t.AddClip(speech_clip)
  366. main_timer += anchor.info.duration
  367. anchor.Close()
  368. speech.Close()
  369. LOGO_ED = openshot.FFmpegReader(dir_video+"LOGO_ED.avi")
  370. LOGO_ED.Open()
  371. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration
  372. ,location_x=0.005,location_y=-0.031, scale_x=0.8,scale_y=0.6825)
  373. t.AddClip(LOGO_ED_clip)
  374. main_timer += LOGO_ED.info.duration
  375. LOGO_ED.Close()
  376. bg = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  377. bg.Open()
  378. bg_times = math.floor(main_timer/bg.info.duration)
  379. left_time = (main_timer) % bg.info.duration
  380. bg_clip_list = [None] * bg_times
  381. bg_list = [None] * bg_times
  382. bg.Close()
  383. bg_timer = head_duration
  384. for idx in range(bg_times):
  385. bg_list[idx] = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  386. bg_list[idx].Open()
  387. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer,end=bg_list[idx].info.duration,ck=ck)
  388. t.AddClip(bg_clip_list[idx])
  389. bg_timer += bg_list[idx].info.duration
  390. bg_list[idx].Close()
  391. bg_left = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  392. bg_left.Open()
  393. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  394. t.AddClip(bg_left_clip)
  395. bg_left.Close()
  396. title = openshot.QtImageReader(dir_title+name_hash+".png")
  397. title.Open() # Open the reader
  398. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  399. t.AddClip(title_clip)
  400. w = video_writer_init(tmp_video_dir+name_hash+"raw.mp4")
  401. w.Open()
  402. frames = int(t.info.fps)*int(main_timer)
  403. for n in range(frames):
  404. f=t.GetFrame(n)
  405. w.WriteFrame(f)
  406. t.Close()
  407. w.Close()
  408. print(name+"RAW DONE : www.choozmo.com:8168/"+tmp_video_dir+name_hash+"raw.mp4")
  409. #start adding sub
  410. #add sub
  411. Ctr_Autosub.init()
  412. Ctr_Autosub.generate_subtitles(tmp_video_dir+name_hash+"raw.mp4",'zh',listener_progress,output=tmp_video_dir+name_hash+"script.txt",concurrency=DEFAULT_CONCURRENCY,subtitle_file_format=DEFAULT_SUBTITLE_FORMAT)
  413. sub_dict = parse_script(tmp_video_dir+name_hash+"script.txt",split_by_pun(text_content[0]))
  414. generate_subtitle_image_from_dict(name_hash, sub_dict)
  415. print(sub_dict)
  416. #sv_path = dir_subtitle + name_hash + '/' + str(script['index'])+'.png'
  417. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  418. t.Open()
  419. raw = openshot.FFmpegReader(tmp_video_dir+name_hash+"raw.mp4")
  420. raw.Open()
  421. raw_clip = video_photo_clip(vid=raw,layer=2,position=0, end=raw.info.duration)
  422. t.AddClip(raw_clip)
  423. sub_img_list = [None] * len(sub_dict)
  424. sub_clip_list = [None] * len(sub_dict)
  425. for sub_obj in sub_dict:
  426. idx = int(sub_obj['index'])
  427. sub_img_list[idx] = openshot.QtImageReader(dir_subtitle + name_hash + '/' + str(idx)+'.png')
  428. sub_img_list[idx].Open()
  429. sub_clip_list[idx] = video_photo_clip(vid=sub_img_list[idx], layer=6,location_x=0.069, location_y=0.89,position=sub_obj['start'],end=math.ceil(sub_obj['duration']))
  430. t.AddClip(sub_clip_list[idx])
  431. sub_img_list[idx].Close()
  432. anchor = openshot.FFmpegReader(dir_anchor+name_hash+"/0.mp4")
  433. anchor.Open()
  434. anchor_clip = video_photo_clip(vid=anchor,layer=4,scale_x=0.65,scale_y=0.65,
  435. location_x=0.35,location_y=0.25,position=head_duration, end=anchor.info.duration,ck=ck_anchor,audio=False)
  436. t.AddClip(anchor_clip)
  437. w = video_writer_init(tmp_video_dir+name_hash+".mp4")
  438. w.Open()
  439. frames = int(t.info.fps)*int(main_timer)
  440. for n in range(frames):
  441. f=t.GetFrame(n)
  442. w.WriteFrame(f)
  443. t.Close()
  444. w.Close()
  445. os.remove(tmp_video_dir+name_hash+"raw.mp4")
  446. os.remove(tmp_video_dir+name_hash+"script.txt")
  447. print(name+"ALL DONE : www.choozmo.com:8168/"+video_sub_folder+name_hash+"raw.mp4")
  448. def anchor_video_v2(name_hash,name,text_content, image_urls,multiLang,avatar):
  449. print(os.getcwd())
  450. print('sub image made')
  451. print(multiLang)
  452. file_prepare(name, name_hash, text_content,image_urls,multiLang)
  453. sub_list=generate_subtitle_image(name_hash,text_content)
  454. for fname in range(len(text_content)):
  455. call_anchor(name_hash+"/"+str(fname),avatar)
  456. print('step finish')
  457. print('called............................................')
  458. ck=cKey(0,254,0,270)
  459. ck_anchor=cKey(0,255,1,320)
  460. duration = 0
  461. #average layer level is 3
  462. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  463. t.Open()
  464. main_timer = 0
  465. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP_4.mp4")
  466. LOGO_OP.Open() # Open the reader
  467. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  468. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  469. t.AddClip(LOGO_OP_clip)
  470. bg_head = openshot.FFmpegReader(dir_video+"complete_head_aispokesgirl.mp4")
  471. bg_head.Open()
  472. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  473. t.AddClip(bg_head_clip)
  474. main_timer += LOGO_OP.info.duration
  475. head_duration = LOGO_OP.info.duration
  476. bg_head.Close()
  477. LOGO_OP.Close()
  478. clip_duration=0
  479. photo_clip_list = [None]*len(text_content)
  480. img_list = [None]*len(text_content)
  481. anchor_clip_list = [None] * len(text_content)
  482. anchor_list = [None] * len(text_content)
  483. audio_clip_list = [None] * len(text_content)
  484. audio_list = [None] * len(text_content)
  485. sub_clip_list = [None] * len(text_content)
  486. sub_img_list = [None] * len(text_content)
  487. idx = 0
  488. for p in listdir(dir_photo+name_hash):
  489. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  490. clip_duration = anchor_list[idx].info.duration
  491. anchor_list[idx].Open()
  492. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  493. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  494. t.AddClip(anchor_clip_list[idx])
  495. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  496. img_list[idx].Open()
  497. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  498. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  499. t.AddClip(photo_clip_list[idx])
  500. img_list[idx].Close()
  501. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  502. audio_list[idx].Open()
  503. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  504. audio_clip_list[idx].Position(main_timer)
  505. audio_clip_list[idx].End(clip_duration)
  506. t.AddClip(audio_clip_list[idx])
  507. img_list[idx].Close()
  508. anchor_list[idx].Close()
  509. audio_list[idx].Close()
  510. sub_img_list[idx] = [None] * len(sub_list[idx])
  511. sub_clip_list[idx] = [None] * len(sub_list[idx])
  512. sub_timer = 0
  513. for sub_idx in range(len(sub_list[idx])):
  514. sub_img_list[idx][sub_idx] = openshot.QtImageReader(sub_list[idx][sub_idx]['path'])
  515. sub_img_list[idx][sub_idx].Open()
  516. sub_duration = 0.205*sub_list[idx][sub_idx]['count']
  517. sub_clip_list[idx][sub_idx] = video_photo_clip(vid=sub_img_list[idx][sub_idx], layer=6,location_x=0.069, location_y=0.89,position=main_timer+sub_timer,end=sub_duration)
  518. t.AddClip(sub_clip_list[idx][sub_idx])
  519. sub_img_list[idx][sub_idx].Close()
  520. sub_timer += sub_duration
  521. print(sub_list[idx][sub_idx]['path'])
  522. main_timer += clip_duration
  523. idx+=1
  524. LOGO_ED = openshot.FFmpegReader(dir_video+"LOGO_ED.avi")
  525. LOGO_ED.Open()
  526. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  527. ,location_x=0.005,location_y=-0.031
  528. ,scale_x=0.8,scale_y=0.6825)
  529. t.AddClip(LOGO_ED_clip)
  530. ED_duration = LOGO_ED.info.duration
  531. LOGO_ED.Close()
  532. bg = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  533. bg.Open()
  534. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  535. left_time = (main_timer+ED_duration) % bg.info.duration
  536. bg_clip_list = [None] * bg_times
  537. bg_list = [None] * bg_times
  538. bg.Close()
  539. bg_timer = head_duration
  540. for idx in range(bg_times):
  541. bg_list[idx] = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  542. bg_list[idx].Open()
  543. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  544. ,end=bg_list[idx].info.duration,ck=ck)
  545. t.AddClip(bg_clip_list[idx])
  546. bg_timer += bg_list[idx].info.duration
  547. bg_list[idx].Close()
  548. bg_left = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  549. bg_left.Open()
  550. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  551. t.AddClip(bg_left_clip)
  552. bg_left.Close()
  553. title = openshot.QtImageReader(dir_title+name_hash+".png")
  554. title.Open() # Open the reader
  555. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  556. t.AddClip(title_clip)
  557. ####start building
  558. w = openshot.FFmpegWriter(tmp_video_dir+name_hash+".mp4")
  559. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  560. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  561. openshot.Fraction(1, 1), False, False, 3000000)
  562. w.Open()
  563. #may change duration into t.info.duration
  564. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  565. for n in range(frames):
  566. f=t.GetFrame(n)
  567. w.WriteFrame(f)
  568. #notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  569. t.Close()
  570. w.Close()
  571. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  572. def anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar):
  573. file_prepare(name, name_hash, text_content,image_urls,'eng')
  574. sub_list=generate_subtitle_image_ENG(name_hash,sub_titles)
  575. for fname in range(len(text_content)):
  576. call_anchor(name_hash+"/"+str(fname),avatar)
  577. print('step finish')
  578. print('called............................................')
  579. ck=cKey(0,254,0,270)
  580. ck_anchor=cKey(0,255,1,320)
  581. duration = 0
  582. #average layer level is 3
  583. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  584. t.Open()
  585. main_timer = 0
  586. #add logo
  587. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP_4.mp4")
  588. LOGO_OP.Open() # Open the reader
  589. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  590. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  591. t.AddClip(LOGO_OP_clip)
  592. #add background video (head is different)
  593. bg_head = openshot.FFmpegReader(dir_video+"complete_head_aispokesgirl.mp4")
  594. bg_head.Open()
  595. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  596. t.AddClip(bg_head_clip)
  597. main_timer += LOGO_OP.info.duration
  598. head_duration = LOGO_OP.info.duration
  599. bg_head.Close()
  600. LOGO_OP.Close()
  601. #prepare empty list
  602. clip_duration=0
  603. photo_clip_list = [None]*len(text_content)
  604. img_list = [None]*len(text_content)
  605. anchor_clip_list = [None] * len(text_content)
  606. anchor_list = [None] * len(text_content)
  607. audio_clip_list = [None] * len(text_content)
  608. audio_list = [None] * len(text_content)
  609. sub_clip_list = [None] * len(text_content)
  610. #openshot image holder
  611. sub_img_list = [None] * len(text_content)
  612. idx = 0
  613. for p in listdir(dir_photo+name_hash):
  614. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  615. clip_duration = anchor_list[idx].info.duration
  616. anchor_list[idx].Open()
  617. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  618. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  619. t.AddClip(anchor_clip_list[idx])
  620. #insert image
  621. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  622. img_list[idx].Open()
  623. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  624. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  625. t.AddClip(photo_clip_list[idx])
  626. img_list[idx].Close()
  627. #insert audio (speech)
  628. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  629. audio_list[idx].Open()
  630. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  631. audio_clip_list[idx].Position(main_timer)
  632. audio_clip_list[idx].End(clip_duration)
  633. t.AddClip(audio_clip_list[idx])
  634. #insert subtitle
  635. sub_img_list[idx] = openshot.QtImageReader(sub_list[idx])
  636. sub_img_list[idx].Open()
  637. sub_clip_list[idx] = video_photo_clip(vid=sub_img_list[idx], layer=6,location_x=0.069, location_y=0.89,position=main_timer,end=clip_duration)
  638. t.AddClip(sub_clip_list[idx])
  639. img_list[idx].Close()
  640. anchor_list[idx].Close()
  641. audio_list[idx].Close()
  642. sub_img_list[idx].Close()
  643. main_timer += clip_duration
  644. idx+=1
  645. LOGO_ED = openshot.FFmpegReader(dir_video+"ED_ENG.mp4")
  646. LOGO_ED.Open()
  647. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  648. ,location_x=0.005,location_y=-0.031
  649. ,scale_x=0.8,scale_y=0.6825)
  650. t.AddClip(LOGO_ED_clip)
  651. ED_duration = LOGO_ED.info.duration
  652. LOGO_ED.Close()
  653. bg = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  654. bg.Open()
  655. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  656. left_time = (main_timer+ED_duration) % bg.info.duration
  657. bg_clip_list = [None] * bg_times
  658. bg_list = [None] * bg_times
  659. bg.Close()
  660. bg_timer = head_duration
  661. for idx in range(bg_times):
  662. bg_list[idx] = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  663. bg_list[idx].Open()
  664. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  665. ,end=bg_list[idx].info.duration,ck=ck)
  666. t.AddClip(bg_clip_list[idx])
  667. bg_timer += bg_list[idx].info.duration
  668. bg_list[idx].Close()
  669. bg_left = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  670. bg_left.Open()
  671. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  672. t.AddClip(bg_left_clip)
  673. bg_left.Close()
  674. title = openshot.QtImageReader(dir_title+name_hash+".png")
  675. title.Open() # Open the reader
  676. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  677. t.AddClip(title_clip)
  678. ####start building
  679. w = openshot.FFmpegWriter(tmp_video_dir+name_hash+".mp4")
  680. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  681. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  682. openshot.Fraction(1, 1), False, False, 3000000)
  683. w.Open()
  684. #may change duration into t.info.duration
  685. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  686. for n in range(frames):
  687. f=t.GetFrame(n)
  688. w.WriteFrame(f)
  689. #notify_group(name+"(ENG)的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  690. t.Close()
  691. w.Close()
  692. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  693. #line notifs
  694. import pyttsx3
  695. def make_speech(text):
  696. engine = pyttsx3.init()
  697. voices = engine.getProperty('voices')
  698. for voice in voices:
  699. if voice.name=='Mandarin':
  700. engine.setProperty('voice',)
  701. engine.setProperty('voice', 'Mandarin')
  702. engine.save_to_file(text, '/app/speech.mp3')
  703. engine.runAndWait()
  704. class video_service(rpyc.Service):
  705. def exposed_call_video(self,name_hash,name,text_content, image_urls,multiLang,avatar):
  706. print('ML:'+str(multiLang))
  707. anchor_video_v2(name_hash,name,text_content, image_urls,multiLang,avatar)
  708. def exposed_call_video_eng(self,name_hash,name,text_content, image_urls,sub_titles,avatar):
  709. anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar)
  710. def exposed_call_video_gen(self,name_hash,name,text_content, image_urls,multiLang,avatar):
  711. print('ML:'+str(multiLang))#this is long video version,
  712. video_gen(name_hash,name,text_content, image_urls,multiLang,avatar)
  713. def exposed_make_speech(self,text):
  714. make_speech(text)
  715. from rpyc.utils.server import ThreadedServer
  716. t = ThreadedServer(video_service, port=8858)
  717. print('service started')
  718. t.start()