openshot_video_generator.py 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021
  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. from itertools import groupby
  31. from operator import itemgetter
  32. from util.parser import parser
  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. print('---------------------------------------------')
  86. print(url)
  87. req = urllib.request.Request(url, method='HEAD', headers={'User-Agent': 'Mozilla/5.0'})
  88. r = urllib.request.urlopen(req)
  89. contentType = r.getheader('Content-Type')
  90. print(contentType)
  91. print('-------------------------------------------------')
  92. return contentType
  93. def make_dir(name_hash):
  94. for direct in dir_list:
  95. if not os.path.isdir(direct):
  96. os.mkdir(direct)
  97. try:
  98. os.mkdir(dir_photo+name_hash)
  99. except FileExistsError:
  100. print("~~~~~~Warning~~~~~~~~~Directory " , dir_photo+name_hash , " already exists")
  101. try:
  102. os.mkdir(dir_text+name_hash)
  103. except FileExistsError:
  104. print("~~~~~~Warning~~~~~~~~~Directory " , dir_text+name_hash , " already exists")
  105. try:
  106. os.mkdir(dir_sound+name_hash)
  107. except FileExistsError:
  108. print("~~~~~~Warning~~~~~~~~~Directory " , dir_sound+name_hash , " already exists")
  109. try:
  110. os.mkdir(dir_anchor+name_hash)
  111. except FileExistsError:
  112. print("~~~~~~Warning~~~~~~~~~Directory " , dir_anchor+name_hash , " already exists")
  113. try:
  114. os.mkdir(dir_subtitle+name_hash)
  115. except FileExistsError:
  116. print("~~~~~~Warning~~~~~~~~~Directory " , dir_subtitle+name_hash , " already exists")
  117. def file_prepare(name, name_hash,text_content,image_urls,multiLang,lang='zh'):
  118. make_dir(name_hash)
  119. img_num = 1
  120. for imgu in image_urls:
  121. if get_url_type(imgu) =='video/mp4':
  122. r=requests.get(imgu)
  123. f=open(dir_photo+name_hash+"/"+str(img_num)+".mp4",'wb')
  124. for chunk in r.iter_content(chunk_size=255):
  125. if chunk:
  126. f.write(chunk)
  127. f.close()
  128. else:
  129. im = Image.open(requests.get(imgu, stream=True).raw)
  130. im= im.convert("RGB")
  131. im.save(dir_photo+name_hash+"/"+str(img_num)+".jpg")
  132. img_num+=1
  133. #save text
  134. txt_idx=0
  135. for txt in text_content:
  136. text_file = open(dir_text+name_hash+"/"+str(txt_idx)+".txt", "w")
  137. text_file.write(txt)
  138. text_file.close()
  139. txt_idx+=1
  140. print("text file made")
  141. #make mp3
  142. txt_idx = 0
  143. for txt in text_content:
  144. if lang!='zh' or multiLang==1:
  145. if lang!='zh':
  146. tts = gTTS(txt)
  147. tts.save(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  148. else:
  149. tts = gTTS(txt,lang='zh-tw')
  150. tts.save(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  151. #speed up
  152. ff = ffmpy.FFmpeg(inputs={dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3": None}
  153. , outputs={dir_sound+name_hash+"/"+str(txt_idx)+".mp3": ["-filter:a", "atempo=1.2"]})
  154. ff.run()
  155. os.remove(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  156. else:
  157. print('use zhtts')
  158. tts = zhtts.TTS()
  159. tts.text2wav(txt,dir_sound+name_hash+"/"+str(txt_idx)+".mp3")
  160. txt_idx+=1
  161. print("mp3 file made")
  162. #make title as image
  163. txt2image_title(name, dir_title+name_hash+".png",lang)
  164. def file_prepare_long(name, name_hash,text_content,image_urls,multiLang,lang='zh'):
  165. make_dir(name_hash)
  166. img_num = 1
  167. for imgu in image_urls:
  168. if get_url_type(imgu) =='video/mp4':
  169. r=requests.get(imgu)
  170. f=open(dir_photo+name_hash+"/"+str(img_num)+".mp4",'wb')
  171. for chunk in r.iter_content(chunk_size=255):
  172. if chunk:
  173. f.write(chunk)
  174. f.close()
  175. else:
  176. im = Image.open(requests.get(imgu, stream=True).raw)
  177. im= im.convert("RGB")
  178. im.save(dir_photo+name_hash+"/"+str(img_num)+".jpg")
  179. img_num+=1
  180. #make mp3
  181. text_parser = parser()
  182. txt_idx = 0
  183. for txt in text_content:
  184. rep_list = text_parser.replace_list(txt)
  185. for reptxt in rep_list:
  186. txt = txt.replace(reptxt,'')
  187. if lang!='zh' or multiLang==1:
  188. if lang!='zh':
  189. tts = gTTS(txt)
  190. tts.save(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  191. else:
  192. tts = gTTS(txt,lang='zh-tw')
  193. tts.save(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  194. #speed up
  195. ff = ffmpy.FFmpeg(inputs={dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3": None}
  196. , outputs={dir_sound+name_hash+"/"+str(txt_idx)+".mp3": ["-filter:a", "atempo=1.2"]})
  197. ff.run()
  198. os.remove(dir_sound+name_hash+"/"+str(txt_idx)+"raw.mp3")
  199. else:
  200. print('use zhtts')
  201. tts = zhtts.TTS()
  202. tts.text2wav(txt,dir_sound+name_hash+"/"+str(txt_idx)+".mp3")
  203. txt_idx+=1
  204. print("mp3 file made")
  205. #make title as image
  206. txt2image_title(name, dir_title+name_hash+".png",lang)
  207. def txt2image(content, save_target,lang='zh'):
  208. unicode_text = trim_punctuation(content)
  209. font = ''
  210. if lang=='zh':
  211. font = ImageFont.truetype(font="font/DFT_B7.ttc", size=38)
  212. else :
  213. font = ImageFont.truetype(font="font/arial.ttf", size=38)
  214. text_width, text_height = font.getsize(unicode_text)
  215. canvas = Image.new('RGBA', (700, 500), (255, 0, 0, 0) )
  216. draw = ImageDraw.Draw(canvas)
  217. text= unicode_text
  218. draw.text((5,5), text, (255, 255, 0), font)
  219. canvas.save(save_target, "PNG")
  220. def txt2image_title(content, save_target, lang='zh'):
  221. unicode_text = trim_punctuation(content)
  222. font = ''
  223. if lang=='zh':
  224. font = ImageFont.truetype(font="font/DFT_B7.ttc", size=22)
  225. else :
  226. font = ImageFont.truetype(font="font/arial.ttf", size=22)
  227. text_width, text_height = font.getsize(unicode_text)
  228. canvas = Image.new('RGBA', (510, 500), (255, 0, 0, 0) )
  229. draw = ImageDraw.Draw(canvas)
  230. text= unicode_text
  231. draw.text((5,5), text, (17, 41, 167), font)
  232. canvas.save(save_target, "PNG")
  233. def call_anchor(fileName,avatar):
  234. conn = rpyc.classic.connect("192.168.1.105",18812)
  235. ros = conn.modules.os
  236. rsys = conn.modules.sys
  237. fr=open(dir_sound+fileName+".mp3",'rb')# voice
  238. #warning!!! file my be replaced by other process
  239. fw=conn.builtins.open('/tmp/output.mp3','wb')
  240. while True:
  241. b=fr.read(1024)
  242. if b:
  243. fw.write(b)
  244. else:
  245. break
  246. fr.close()
  247. fw.close()
  248. val=random.randint(1000000,9999999)
  249. ros.chdir('/home/jared/to_video')
  250. ros.system('./p'+str(avatar)+'.sh '+str(val)+' &')
  251. while True:
  252. print('waiting...')
  253. if ros.path.exists('/tmp/results/'+str(val)):
  254. break
  255. time.sleep(5)
  256. print('waiting...')
  257. fr=conn.builtins.open('/tmp/results/'+str(val)+'.mp4','rb')
  258. fw=open(dir_anchor+fileName+".mp4",'wb')
  259. while True:
  260. b=fr.read(1024)
  261. if b:
  262. fw.write(b)
  263. else:
  264. break
  265. fr.close()
  266. fw.close()
  267. def syllable_count(word):
  268. word = word.lower()
  269. count = 0
  270. vowels = "aeiouy"
  271. if word[0] in vowels:
  272. count += 1
  273. for index in range(1, len(word)):
  274. if word[index] in vowels and word[index - 1] not in vowels:
  275. count += 1
  276. if word.endswith("e"):
  277. count -= 1
  278. if count == 0:
  279. count += 1
  280. return count
  281. def split_sentence(in_str, maxLen):
  282. re.findall(r'[\u4e00-\u9fff]+', in_str)
  283. zh_idx = []
  284. eng_idx= []
  285. for i in range(len(in_str)):
  286. if in_str[i] > u'\u4e00' and in_str[i] < u'\u9fff':
  287. zh_idx.append(i)
  288. else:
  289. eng_idx.append(i)
  290. space_index = [m.start() for m in re.finditer(' ', in_str)]
  291. for idx in space_index:
  292. eng_idx.remove(idx)
  293. eng_range_list = []
  294. for k, g in groupby(enumerate(eng_idx), lambda ix : ix[0] - ix[1]):
  295. eng_range = list(map(itemgetter(1), g))
  296. eng_range_list.append(eng_range)
  297. total_syllable = 0
  298. for i in range(len(eng_range_list)):
  299. total_syllable += (syllable_count(in_str[eng_range_list[i][0]:eng_range_list[i][-1]+1])+0.5)
  300. for i in range(len(zh_idx)):
  301. total_syllable+=1
  302. #final chchchchchc[en][en][en]
  303. #[en] is a vocabulary dict with occurence of image
  304. zh_eng_idx_list = []
  305. i = 0
  306. while i < len(in_str):
  307. if in_str[i]==' ':
  308. i+=1
  309. if i in zh_idx:
  310. zh_eng_idx_list.append(i)
  311. i+=1
  312. if i in eng_idx:
  313. for ls in eng_range_list:
  314. if i in ls:
  315. zh_eng_idx_list.append(ls)
  316. i = ls[-1]+1
  317. break
  318. zh_eng_dict_list = [{'content':'','time_ratio':0}]
  319. idx = 0
  320. current_len = 0
  321. sen_idx = 0
  322. while idx < len(zh_eng_idx_list):
  323. str_from_idx = ''
  324. sylla_cnt = 1
  325. if type(zh_eng_idx_list[idx])==type([]):
  326. str_from_idx = in_str[zh_eng_idx_list[idx][0]:zh_eng_idx_list[idx][-1]+1]+' '
  327. sylla_cnt = syllable_count(str_from_idx)
  328. else:
  329. str_from_idx = in_str[zh_eng_idx_list[idx]]
  330. if len(zh_eng_dict_list[sen_idx]['content'])+sylla_cnt>=maxLen:
  331. zh_eng_dict_list[sen_idx]['time_ratio'] = current_len/total_syllable
  332. zh_eng_dict_list.append({'content':'','time_ratio':0})
  333. sen_idx+=1
  334. current_len = 0
  335. else:
  336. current_len += sylla_cnt
  337. zh_eng_dict_list[sen_idx]['content'] += str_from_idx
  338. idx+=1
  339. total_ratio = 0
  340. for obj in zh_eng_dict_list:
  341. total_ratio+=obj['time_ratio']
  342. zh_eng_dict_list[-1]['time_ratio'] = 1-total_ratio
  343. return zh_eng_dict_list
  344. def parse_script(file_path,gt_list):
  345. with open(file_path, 'r',encoding="utf-8") as f:
  346. raw_lines = [line.strip() for line in f]
  347. lines = adjustSub_by_text_similarity(gt_list,raw_lines)
  348. text_parser = parser()
  349. #make dict
  350. dict_list = []
  351. for idx in range(len(lines)):
  352. script={}
  353. rep_ls = text_parser.replace_list(lines[idx])
  354. line_content = lines[idx]
  355. for reptxt in rep_ls:
  356. line_content = line_content.replace(reptxt,'')
  357. if len(rep_ls)!=0:
  358. script['image_idx'] = int(rep_ls[0].replace('{','').replace('}',''))
  359. script['content'] = line_content
  360. time_raw = raw_lines[idx * 4 +1 ].split(' --> ')
  361. start = time_raw[0].split(':')
  362. stop = time_raw[1].split(':')
  363. script['start'] = float(start[0])*3600 + float(start[1])*60 + float(start[2].replace(',','.'))
  364. script['stop'] = float(stop[0])*3600 + float(stop[1])*60 + float(stop[2].replace(',','.'))
  365. dict_list.append(script)
  366. #merge duplicated sentences
  367. skip_list = []
  368. script_not_dup_list = []
  369. for idx in range(len(dict_list)):
  370. if idx not in skip_list:
  371. dup_list = []
  372. found = 0
  373. for idx_inner in range(len(dict_list)):
  374. if dict_list[idx_inner]['content'] == dict_list[idx]['content'] and idx <= idx_inner:
  375. dup_list.append(idx_inner)
  376. skip_list.append(idx_inner)
  377. found += 1
  378. if found != 0 and dict_list[idx_inner]['content']!=dict_list[idx]['content'] and idx <= idx_inner:
  379. found = 0
  380. break
  381. for dup_idx in dup_list:
  382. if dup_idx == min(dup_list):
  383. dict_list[dup_idx]['type'] = 'lead_sentence'
  384. else:
  385. dict_list[dup_idx]['type'] = 'duplicated'
  386. dict_list[dup_list[0]]['stop'] = dict_list[dup_list[-1]]['stop']
  387. if dict_list[idx]['type'] == 'lead_sentence':
  388. script_not_dup_list.append(dict_list[idx])
  389. new_idx = 0
  390. splitted_dict = []
  391. for dic in script_not_dup_list:
  392. dic_idx = 0
  393. accumulated_duration = 0
  394. duration = dic['stop']-dic['start']
  395. for sub_dic in split_sentence(dic['content'],13):
  396. new_dic = {}
  397. new_dic['index'] = new_idx
  398. if 'image_idx' in dic:
  399. new_dic['image_obj'] = {'start':dic['start'],'idx':dic['image_idx']}
  400. new_idx+=1
  401. ind_duration = duration * sub_dic['time_ratio']
  402. new_dic['start'] = dic['start'] + accumulated_duration
  403. accumulated_duration += ind_duration
  404. new_dic['content'] = sub_dic['content']
  405. new_dic['duration'] = ind_duration*0.7
  406. splitted_dict.append(new_dic)
  407. return splitted_dict
  408. def adjustSub_by_text_similarity(gts_in,gens_raw):
  409. #call by value only
  410. gts = gts_in[:]
  411. text_parser = parser()
  412. for i in range(len(gts)):
  413. rep_ls = text_parser.replace_list(gts[i])
  414. for reptxt in rep_ls:
  415. gts[i] = gts[i].replace(reptxt,'')
  416. gens = []
  417. for idx in range(int((len(gens_raw)+1)/4)):
  418. gens.append(gens_raw[idx*4+2])
  419. combine2 = [''.join([i,j]) for i,j in zip(gts, gts[1:])]
  420. combine3 = [''.join([i,j,k]) for i,j,k in zip(gts, gts[1:], gts[2:])]
  421. alls = gts #+ combine2 + combine3
  422. adjusted = [None]*len(gens)
  423. duplicated_list = []
  424. for idx in range(len(gens)):
  425. match_text = difflib.get_close_matches(gens[idx], alls, cutoff=0.1)
  426. if len(match_text) != 0:
  427. if match_text[0] not in duplicated_list:
  428. adjusted[idx] = match_text[0]
  429. duplicated_list.append(match_text[0])
  430. else:
  431. if match_text[0] == adjusted[idx-1]:
  432. adjusted[idx] = match_text[0]
  433. else:
  434. found = 0
  435. for mt in match_text:
  436. if mt not in duplicated_list:
  437. adjusted[idx] = mt
  438. found += 1
  439. break
  440. if found ==0:
  441. adjusted[idx] = ' '
  442. else :
  443. adjusted[idx] = ' '
  444. combine2_tag = [''.join([i,j]) for i,j in zip(gts_in, gts_in[1:])]
  445. combine3_tag = [''.join([i,j,k]) for i,j,k in zip(gts_in, gts_in[1:], gts_in[2:])]
  446. alls_tag = gts_in #+ combine2_tag + combine3_tag
  447. for idx in range(len(adjusted)):
  448. match_text = difflib.get_close_matches(adjusted[idx], alls_tag, cutoff=0.1)
  449. adjusted[idx] = match_text[0]
  450. return adjusted
  451. def trim_punctuation(s):
  452. pat_block = u'[^\u4e00-\u9fff0-9a-zA-Z]+';
  453. pattern = u'([0-9]+{0}[0-9]+)|{0}'.format(pat_block)
  454. res = re.sub(pattern, lambda x: x.group(1) if x.group(1) else u" " ,s)
  455. return res
  456. def splitter(s):
  457. for sent in re.findall(u'[^!?,。\!\?]+[!? 。\!\?]?', s, flags=re.U):
  458. yield sent
  459. def split_by_pun(s):
  460. res = list(splitter(s))
  461. return res
  462. def generate_subtitle_image_from_dict(name_hash, sub_dict):
  463. for script in sub_dict:
  464. sv_path = dir_subtitle + name_hash + '/' + str(script['index'])+'.png'
  465. sub = script['content']
  466. txt2image(sub,sv_path)
  467. def generate_subtitle_image(name_hash,text_content):
  468. img_list = [None]*len(text_content)
  469. for idx in range(len(text_content)):
  470. img_list[idx]=[]
  471. senList = split_by_pun(text_content[idx])
  472. for inner_idx in range(len(senList)):
  473. sv_path = dir_subtitle + name_hash +'/'+str(idx)+ str(inner_idx) +'.png'
  474. sub = senList[inner_idx]
  475. txt2image(sub,sv_path)
  476. img_list[idx]+=[{"count":len(sub),"path":sv_path}]
  477. return img_list
  478. def generate_subtitle_image_ENG(name_hash,text_content):
  479. img_list = [None]*len(text_content)
  480. for idx in range(len(text_content)):
  481. sv_path = dir_subtitle + name_hash +'/'+str(idx)+'.png'
  482. sub = text_content[idx]
  483. txt2image(sub, sv_path,lang='eng')
  484. img_list[idx] = sv_path
  485. return img_list
  486. def video_writer_init(path):
  487. w = openshot.FFmpegWriter(path)
  488. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  489. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  490. openshot.Fraction(1, 1), False, False, 3000000)
  491. return w
  492. def video_gen(name_hash,name,text_content, image_urls,multiLang,avatar):
  493. file_prepare_long(name, name_hash, text_content,image_urls,multiLang)
  494. for fname in range(len(text_content)):
  495. call_anchor(name_hash+"/"+str(fname),avatar)
  496. print('called............................................')
  497. ck=cKey(0,254,0,270)
  498. ck_anchor=cKey(0,255,1,320)
  499. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  500. t.Open()
  501. main_timer = 0
  502. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP_4.mp4")
  503. LOGO_OP.Open() # Open the reader
  504. head_duration = LOGO_OP.info.duration
  505. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=head_duration
  506. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  507. t.AddClip(LOGO_OP_clip)
  508. bg_head = openshot.FFmpegReader(dir_video+"complete_head_aispokesgirl.mp4")
  509. bg_head.Open()
  510. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  511. t.AddClip(bg_head_clip)
  512. main_timer += head_duration
  513. bg_head.Close()
  514. LOGO_OP.Close()
  515. anchor = openshot.FFmpegReader(dir_anchor+name_hash+"/0.mp4")
  516. anchor.Open()
  517. #anchor_clip = video_photo_clip(vid=anchor,layer=4,scale_x=0.65,scale_y=0.65,
  518. # location_x=0.35,location_y=0.25,position=main_timer, end=anchor.info.duration,ck=ck_anchor,audio=False)
  519. #t.AddClip(anchor_clip)
  520. speech = openshot.FFmpegReader(dir_sound+name_hash+"/0.mp3")
  521. speech.Open()
  522. speech_clip = openshot.Clip(speech)
  523. speech_clip.Position(main_timer)
  524. speech_clip.End(anchor.info.duration)
  525. t.AddClip(speech_clip)
  526. main_timer += anchor.info.duration
  527. anchor.Close()
  528. speech.Close()
  529. LOGO_ED = openshot.FFmpegReader(dir_video+"LOGO_ED.avi")
  530. LOGO_ED.Open()
  531. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration
  532. ,location_x=0.005,location_y=-0.031, scale_x=0.8,scale_y=0.6825)
  533. t.AddClip(LOGO_ED_clip)
  534. main_timer += LOGO_ED.info.duration
  535. LOGO_ED.Close()
  536. bg = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  537. bg.Open()
  538. bg_times = math.floor(main_timer/bg.info.duration)
  539. left_time = (main_timer) % bg.info.duration
  540. bg_clip_list = [None] * bg_times
  541. bg_list = [None] * bg_times
  542. bg.Close()
  543. bg_timer = head_duration
  544. for idx in range(bg_times):
  545. bg_list[idx] = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  546. bg_list[idx].Open()
  547. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer,end=bg_list[idx].info.duration,ck=ck)
  548. t.AddClip(bg_clip_list[idx])
  549. bg_timer += bg_list[idx].info.duration
  550. bg_list[idx].Close()
  551. bg_left = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  552. bg_left.Open()
  553. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  554. t.AddClip(bg_left_clip)
  555. bg_left.Close()
  556. title = openshot.QtImageReader(dir_title+name_hash+".png")
  557. title.Open() # Open the reader
  558. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  559. t.AddClip(title_clip)
  560. w = video_writer_init(tmp_video_dir+name_hash+"raw.mp4")
  561. w.Open()
  562. frames = int(t.info.fps)*int(main_timer)
  563. for n in range(frames):
  564. f=t.GetFrame(n)
  565. w.WriteFrame(f)
  566. t.Close()
  567. w.Close()
  568. print(name+"RAW DONE : www.choozmo.com:8168/"+tmp_video_dir+name_hash+"raw.mp4")
  569. #start adding sub
  570. #add sub
  571. Ctr_Autosub.init()
  572. 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)
  573. sub_dict = parse_script(tmp_video_dir+name_hash+"script.txt",split_by_pun(text_content[0]))
  574. for subd in sub_dict:
  575. print(subd)
  576. generate_subtitle_image_from_dict(name_hash, sub_dict)
  577. #sv_path = dir_subtitle + name_hash + '/' + str(script['index'])+'.png'
  578. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  579. t.Open()
  580. raw = openshot.FFmpegReader(tmp_video_dir+name_hash+"raw.mp4")
  581. raw.Open()
  582. raw_clip = video_photo_clip(vid=raw,layer=2,position=0, end=raw.info.duration)
  583. t.AddClip(raw_clip)
  584. sub_img_list = [None] * len(sub_dict)
  585. sub_clip_list = [None] * len(sub_dict)
  586. for sub_obj in sub_dict:
  587. idx = int(sub_obj['index'])
  588. sub_img_list[idx] = openshot.QtImageReader(dir_subtitle + name_hash + '/' + str(idx)+'.png')
  589. sub_img_list[idx].Open()
  590. #if sub_obj['duration']>3:
  591. # print('warning')
  592. #print('start:',sub_obj['start'],', duration :', sub_obj['duration'],' content',sub_obj['content'],'idx:',sub_obj['index'])
  593. 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']))
  594. t.AddClip(sub_clip_list[idx])
  595. sub_img_list[idx].Close()
  596. tp = parser()
  597. img_dict_ls = tp.image_clip_info(sub_dict)
  598. img_clip_list = [None]*len(listdir(dir_photo+name_hash))
  599. img_list = [None]*len(img_clip_list)
  600. img_file_ls = listdir(dir_photo+name_hash)
  601. for img_idx in range(len(img_file_ls)):
  602. img_list[img_idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+img_file_ls[img_idx])
  603. img_list[img_idx].Open()
  604. img_clip_list[img_idx] = video_photo_clip(vid=img_list[img_idx],layer=3
  605. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=img_dict_ls[img_idx]['start'],end=img_dict_ls[img_idx]['duration'],audio=False)
  606. t.AddClip(img_clip_list[img_idx])
  607. img_list[img_idx].Close()
  608. anchor = openshot.FFmpegReader(dir_anchor+name_hash+"/0.mp4")
  609. anchor.Open()
  610. anchor_clip = video_photo_clip(vid=anchor,layer=4,scale_x=0.65,scale_y=0.65,
  611. location_x=0.35,location_y=0.25,position=head_duration, end=anchor.info.duration,ck=ck_anchor,audio=False)
  612. t.AddClip(anchor_clip)
  613. w = video_writer_init(tmp_video_dir+name_hash+".mp4")
  614. w.Open()
  615. frames = int(t.info.fps)*int(main_timer)
  616. for n in range(frames):
  617. f=t.GetFrame(n)
  618. w.WriteFrame(f)
  619. t.Close()
  620. w.Close()
  621. os.remove(tmp_video_dir+name_hash+"raw.mp4")
  622. os.remove(tmp_video_dir+name_hash+"script.txt")
  623. print(name+"ALL DONE : www.choozmo.com:8168/"+video_sub_folder+name_hash+"raw.mp4")
  624. def anchor_video_v2(name_hash,name,text_content, image_urls,multiLang,avatar):
  625. print(os.getcwd())
  626. print('sub image made')
  627. print(multiLang)
  628. file_prepare(name, name_hash, text_content,image_urls,multiLang)
  629. sub_list=generate_subtitle_image(name_hash,text_content)
  630. for fname in range(len(text_content)):
  631. call_anchor(name_hash+"/"+str(fname),avatar)
  632. print('step finish')
  633. print('called............................................')
  634. ck=cKey(0,254,0,270)
  635. ck_anchor=cKey(0,255,1,320)
  636. duration = 0
  637. #average layer level is 3
  638. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  639. t.Open()
  640. main_timer = 0
  641. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP_4.mp4")
  642. LOGO_OP.Open() # Open the reader
  643. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  644. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  645. t.AddClip(LOGO_OP_clip)
  646. bg_head = openshot.FFmpegReader(dir_video+"complete_head_aispokesgirl.mp4")
  647. bg_head.Open()
  648. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  649. t.AddClip(bg_head_clip)
  650. main_timer += LOGO_OP.info.duration
  651. head_duration = LOGO_OP.info.duration
  652. bg_head.Close()
  653. LOGO_OP.Close()
  654. clip_duration=0
  655. photo_clip_list = [None]*len(text_content)
  656. img_list = [None]*len(text_content)
  657. anchor_clip_list = [None] * len(text_content)
  658. anchor_list = [None] * len(text_content)
  659. audio_clip_list = [None] * len(text_content)
  660. audio_list = [None] * len(text_content)
  661. sub_clip_list = [None] * len(text_content)
  662. sub_img_list = [None] * len(text_content)
  663. idx = 0
  664. for p in listdir(dir_photo+name_hash):
  665. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  666. clip_duration = anchor_list[idx].info.duration
  667. anchor_list[idx].Open()
  668. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  669. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  670. t.AddClip(anchor_clip_list[idx])
  671. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  672. img_list[idx].Open()
  673. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  674. ,scale_x=0.8,scale_y=0.684,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  675. t.AddClip(photo_clip_list[idx])
  676. img_list[idx].Close()
  677. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  678. audio_list[idx].Open()
  679. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  680. audio_clip_list[idx].Position(main_timer)
  681. audio_clip_list[idx].End(clip_duration)
  682. t.AddClip(audio_clip_list[idx])
  683. img_list[idx].Close()
  684. anchor_list[idx].Close()
  685. audio_list[idx].Close()
  686. sub_img_list[idx] = [None] * len(sub_list[idx])
  687. sub_clip_list[idx] = [None] * len(sub_list[idx])
  688. sub_timer = 0
  689. for sub_idx in range(len(sub_list[idx])):
  690. sub_img_list[idx][sub_idx] = openshot.QtImageReader(sub_list[idx][sub_idx]['path'])
  691. sub_img_list[idx][sub_idx].Open()
  692. sub_duration = 0.205*sub_list[idx][sub_idx]['count']
  693. 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)
  694. t.AddClip(sub_clip_list[idx][sub_idx])
  695. sub_img_list[idx][sub_idx].Close()
  696. sub_timer += sub_duration
  697. print(sub_list[idx][sub_idx]['path'])
  698. main_timer += clip_duration
  699. idx+=1
  700. LOGO_ED = openshot.FFmpegReader(dir_video+"LOGO_ED.avi")
  701. LOGO_ED.Open()
  702. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  703. ,location_x=0.005,location_y=-0.031
  704. ,scale_x=0.8,scale_y=0.6825)
  705. t.AddClip(LOGO_ED_clip)
  706. ED_duration = LOGO_ED.info.duration
  707. LOGO_ED.Close()
  708. bg = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  709. bg.Open()
  710. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  711. left_time = (main_timer+ED_duration) % bg.info.duration
  712. bg_clip_list = [None] * bg_times
  713. bg_list = [None] * bg_times
  714. bg.Close()
  715. bg_timer = head_duration
  716. for idx in range(bg_times):
  717. bg_list[idx] = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  718. bg_list[idx].Open()
  719. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  720. ,end=bg_list[idx].info.duration,ck=ck)
  721. t.AddClip(bg_clip_list[idx])
  722. bg_timer += bg_list[idx].info.duration
  723. bg_list[idx].Close()
  724. bg_left = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  725. bg_left.Open()
  726. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  727. t.AddClip(bg_left_clip)
  728. bg_left.Close()
  729. title = openshot.QtImageReader(dir_title+name_hash+".png")
  730. title.Open() # Open the reader
  731. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  732. t.AddClip(title_clip)
  733. ####start building
  734. w = openshot.FFmpegWriter(tmp_video_dir+name_hash+".mp4")
  735. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  736. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  737. openshot.Fraction(1, 1), False, False, 3000000)
  738. w.Open()
  739. #may change duration into t.info.duration
  740. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  741. for n in range(frames):
  742. f=t.GetFrame(n)
  743. w.WriteFrame(f)
  744. #notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  745. t.Close()
  746. w.Close()
  747. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  748. def anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar):
  749. file_prepare(name, name_hash, text_content,image_urls,'eng')
  750. sub_list=generate_subtitle_image_ENG(name_hash,sub_titles)
  751. for fname in range(len(text_content)):
  752. call_anchor(name_hash+"/"+str(fname),avatar)
  753. print('step finish')
  754. print('called............................................')
  755. ck=cKey(0,254,0,270)
  756. ck_anchor=cKey(0,255,1,320)
  757. duration = 0
  758. #average layer level is 3
  759. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  760. t.Open()
  761. main_timer = 0
  762. #add logo
  763. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP_4.mp4")
  764. LOGO_OP.Open() # Open the reader
  765. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  766. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  767. t.AddClip(LOGO_OP_clip)
  768. #add background video (head is different)
  769. bg_head = openshot.FFmpegReader(dir_video+"complete_head_aispokesgirl.mp4")
  770. bg_head.Open()
  771. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  772. t.AddClip(bg_head_clip)
  773. main_timer += LOGO_OP.info.duration
  774. head_duration = LOGO_OP.info.duration
  775. bg_head.Close()
  776. LOGO_OP.Close()
  777. #prepare empty list
  778. clip_duration=0
  779. photo_clip_list = [None]*len(text_content)
  780. img_list = [None]*len(text_content)
  781. anchor_clip_list = [None] * len(text_content)
  782. anchor_list = [None] * len(text_content)
  783. audio_clip_list = [None] * len(text_content)
  784. audio_list = [None] * len(text_content)
  785. sub_clip_list = [None] * len(text_content)
  786. #openshot image holder
  787. sub_img_list = [None] * len(text_content)
  788. idx = 0
  789. for p in listdir(dir_photo+name_hash):
  790. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  791. clip_duration = anchor_list[idx].info.duration
  792. anchor_list[idx].Open()
  793. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  794. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  795. t.AddClip(anchor_clip_list[idx])
  796. #insert image
  797. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  798. img_list[idx].Open()
  799. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  800. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  801. t.AddClip(photo_clip_list[idx])
  802. img_list[idx].Close()
  803. #insert audio (speech)
  804. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  805. audio_list[idx].Open()
  806. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  807. audio_clip_list[idx].Position(main_timer)
  808. audio_clip_list[idx].End(clip_duration)
  809. t.AddClip(audio_clip_list[idx])
  810. #insert subtitle
  811. sub_img_list[idx] = openshot.QtImageReader(sub_list[idx])
  812. sub_img_list[idx].Open()
  813. 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)
  814. t.AddClip(sub_clip_list[idx])
  815. img_list[idx].Close()
  816. anchor_list[idx].Close()
  817. audio_list[idx].Close()
  818. sub_img_list[idx].Close()
  819. main_timer += clip_duration
  820. idx+=1
  821. LOGO_ED = openshot.FFmpegReader(dir_video+"ED_ENG.mp4")
  822. LOGO_ED.Open()
  823. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  824. ,location_x=0.005,location_y=-0.031
  825. ,scale_x=0.8,scale_y=0.6825)
  826. t.AddClip(LOGO_ED_clip)
  827. ED_duration = LOGO_ED.info.duration
  828. LOGO_ED.Close()
  829. bg = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  830. bg.Open()
  831. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  832. left_time = (main_timer+ED_duration) % bg.info.duration
  833. bg_clip_list = [None] * bg_times
  834. bg_list = [None] * bg_times
  835. bg.Close()
  836. bg_timer = head_duration
  837. for idx in range(bg_times):
  838. bg_list[idx] = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  839. bg_list[idx].Open()
  840. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  841. ,end=bg_list[idx].info.duration,ck=ck)
  842. t.AddClip(bg_clip_list[idx])
  843. bg_timer += bg_list[idx].info.duration
  844. bg_list[idx].Close()
  845. bg_left = openshot.FFmpegReader(dir_video+"complete_double_aispokesgirl.mp4")
  846. bg_left.Open()
  847. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  848. t.AddClip(bg_left_clip)
  849. bg_left.Close()
  850. title = openshot.QtImageReader(dir_title+name_hash+".png")
  851. title.Open() # Open the reader
  852. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  853. t.AddClip(title_clip)
  854. ####start building
  855. w = openshot.FFmpegWriter(tmp_video_dir+name_hash+".mp4")
  856. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  857. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  858. openshot.Fraction(1, 1), False, False, 3000000)
  859. w.Open()
  860. #may change duration into t.info.duration
  861. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  862. for n in range(frames):
  863. f=t.GetFrame(n)
  864. w.WriteFrame(f)
  865. #notify_group(name+"(ENG)的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  866. t.Close()
  867. w.Close()
  868. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  869. #line notifs
  870. import pyttsx3
  871. def make_speech(text):
  872. engine = pyttsx3.init()
  873. #voices = engine.getProperty('voices')
  874. engine.setProperty('voice', 'Mandarin')
  875. engine.save_to_file(text, '/app/speech.mp3')
  876. engine.runAndWait()
  877. class video_service(rpyc.Service):
  878. def exposed_call_video(self,name_hash,name,text_content, image_urls,multiLang,avatar):
  879. print('ML:'+str(multiLang))
  880. anchor_video_v2(name_hash,name,text_content, image_urls,multiLang,avatar)
  881. def exposed_call_video_eng(self,name_hash,name,text_content, image_urls,sub_titles,avatar):
  882. anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar)
  883. def exposed_call_video_gen(self,name_hash,name,text_content, image_urls,multiLang,avatar):
  884. print('ML:'+str(multiLang))#this is long video version,
  885. video_gen(name_hash,name,text_content, image_urls,multiLang,avatar)
  886. def exposed_make_speech(self,text):
  887. make_speech(text)
  888. from rpyc.utils.server import ThreadedServer
  889. t = ThreadedServer(video_service, port=8858)
  890. print('service started')
  891. t.start()