openshot_video_generator.py 31 KB

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