openshot_video_generator.py 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
  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 cv2
  23. from mail import mail_to_users
  24. dir_sound = 'mp3_track/'
  25. dir_photo = 'photo/'
  26. dir_text = 'text_file/'
  27. dir_video = 'video_material/'
  28. dir_title = 'title/'
  29. dir_subtitle = 'subtitle/'
  30. dir_anchor = 'anchor_raw/'
  31. tmp_video_dir = 'tmp_video/'
  32. video_sub_folder = 'ai_anchor_video/'
  33. #
  34. dir_list = [dir_sound,dir_photo,dir_text,dir_video,dir_title,dir_subtitle,dir_anchor,tmp_video_dir]
  35. def notify_group(msg, glist=['7vilzohcyQMPLfAMRloUawiTV4vtusZhxv8Czo7AJX8','WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD','1dbtJHbWVbrooXmQqc4r8OyRWDryjD4TMJ6DiDsdgsX','HOB1kVNgIb81tTB4Ort1BfhVp9GFo6NlToMQg88vEhh']):
  36. for gid in glist:
  37. headers = {
  38. "Authorization": "Bearer " + gid,
  39. "Content-Type": "application/x-www-form-urlencoded"
  40. }
  41. params = {"message": msg}
  42. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  43. def get_mp4_duration(video_name='mp4-test-file.mp4'): # 可輸入url
  44. cap = cv2.VideoCapture(video_name)
  45. # 幀率
  46. fps = int(round(cap.get(cv2.CAP_PROP_FPS)))
  47. # 分辨率-寬度
  48. width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
  49. # 分辨率-高度
  50. height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
  51. # 總幀數
  52. frame_counter = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
  53. cap.release()
  54. cv2.destroyAllWindows()
  55. # 時長,單位:秒(s)
  56. duration = int(frame_counter / fps)
  57. return duration
  58. def cKey(r,g,b,fuzz):
  59. col=openshot.Color()
  60. col.red=openshot.Keyframe(r)
  61. col.green=openshot.Keyframe(g)
  62. col.blue=openshot.Keyframe(b)
  63. return openshot.ChromaKey(col, openshot.Keyframe(fuzz))
  64. def video_photo_clip(vid=None,layer=None, position=None, end=None
  65. ,scale_x=1,scale_y=1,location_x=0,location_y=0,ck=None,audio=True):
  66. clip = openshot.Clip(vid)
  67. clip.Layer(layer)
  68. clip.Position(position)
  69. clip.End(end)
  70. clip.scale_x=openshot.Keyframe(scale_x)
  71. clip.scale_y=openshot.Keyframe(scale_y)
  72. clip.location_x=openshot.Keyframe(location_x)
  73. clip.location_y=openshot.Keyframe(location_y)
  74. if ck!=None:
  75. clip.AddEffect(ck)
  76. if audio==True:
  77. clip.has_audio=openshot.Keyframe(1)
  78. else:
  79. clip.has_audio=openshot.Keyframe(0)
  80. return clip
  81. def myunichchar(unicode_char):
  82. mb_string = unicode_char.encode('big5')
  83. try:
  84. unicode_char = unichr(ord(mb_string[0]) << 8 | ord(mb_string[1]))
  85. except NameError:
  86. unicode_char = chr(mb_string[0] << 8 | mb_string[1])
  87. return unicode_char
  88. def get_url_type(url):
  89. req = urllib.request.Request(url, method='HEAD', headers={'User-Agent': 'Mozilla/5.0'})
  90. r = urllib.request.urlopen(req)
  91. contentType = r.getheader('Content-Type')
  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,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. language = 'zh-tw'
  143. txt_idx = 0
  144. for txt in text_content:
  145. if lang!='zh':
  146. tts = gTTS(txt)
  147. tts.save(dir_sound+name_hash+"/"+str(txt_idx)+".mp3")
  148. else:
  149. tts = zhtts.TTS()
  150. tts.text2wav(txt,dir_sound+name_hash+"/"+str(txt_idx)+".mp3")
  151. txt_idx+=1
  152. print("mp3 file made")
  153. #make title as image
  154. txt2image_title(name, dir_title+name_hash+".png",lang)
  155. def txt2image(content, save_target,lang='zh'):
  156. unicode_text = trim_punctuation(content)
  157. font = ''
  158. if lang=='zh':
  159. font = ImageFont.truetype(font="font/DFT_B7.ttc", size=38)
  160. else :
  161. font = ImageFont.truetype(font="font/arial.ttf", size=38)
  162. text_width, text_height = font.getsize(unicode_text)
  163. canvas = Image.new('RGBA', (700, 500), (255, 0, 0, 0) )
  164. draw = ImageDraw.Draw(canvas)
  165. text= unicode_text
  166. draw.text((5,5), text, (255, 255, 0), font)
  167. canvas.save(save_target, "PNG")
  168. def txt2image_title(content, save_target, lang='zh'):
  169. unicode_text = trim_punctuation(content)
  170. font = ''
  171. if lang=='zh':
  172. font = ImageFont.truetype(font="font/DFT_B7.ttc", size=22)
  173. else :
  174. font = ImageFont.truetype(font="font/arial.ttf", size=22)
  175. text_width, text_height = font.getsize(unicode_text)
  176. canvas = Image.new('RGBA', (510, 500), (255, 0, 0, 0) )
  177. draw = ImageDraw.Draw(canvas)
  178. text= unicode_text
  179. draw.text((5,5), text, (17, 41, 167), font)
  180. canvas.save(save_target, "PNG")
  181. def call_anchor(fileName,avatar):
  182. conn = rpyc.classic.connect("192.168.1.105",18812)
  183. ros = conn.modules.os
  184. rsys = conn.modules.sys
  185. fr=open(dir_sound+fileName+".mp3",'rb')# voice
  186. #warning!!! file my be replaced by other process
  187. fw=conn.builtins.open('/tmp/output.mp3','wb')
  188. while True:
  189. b=fr.read(1024)
  190. if b:
  191. fw.write(b)
  192. else:
  193. break
  194. fr.close()
  195. fw.close()
  196. val=random.randint(1000000,9999999)
  197. ros.chdir('/home/jared/to_video')
  198. ros.system('./p'+str(avatar)+'.sh '+str(val)+' &')
  199. while True:
  200. print('waiting...')
  201. if ros.path.exists('/tmp/results/'+str(val)):
  202. break
  203. time.sleep(5)
  204. print('waiting...')
  205. fr=conn.builtins.open('/tmp/results/'+str(val)+'.mp4','rb')
  206. fw=open(dir_anchor+fileName+".mp4",'wb')
  207. while True:
  208. b=fr.read(1024)
  209. if b:
  210. fw.write(b)
  211. else:
  212. break
  213. fr.close()
  214. fw.close()
  215. def trim_punctuation(s):
  216. pat_block = u'[^\u4e00-\u9fff0-9a-zA-Z]+';
  217. pattern = u'([0-9]+{0}[0-9]+)|{0}'.format(pat_block)
  218. res = re.sub(pattern, lambda x: x.group(1) if x.group(1) else u" " ,s)
  219. return res
  220. def splitter(s):
  221. for sent in re.findall(u'[^!?,。\!\?]+[!?。\!\?]?', s, flags=re.U):
  222. yield sent
  223. def split_by_pun(s):
  224. res = list(splitter(s))
  225. return res
  226. def generate_subtitle_image(name_hash,text_content):
  227. img_list = [None]*len(text_content)
  228. for idx in range(len(text_content)):
  229. img_list[idx]=[]
  230. senList = split_by_pun(text_content[idx])
  231. for inner_idx in range(len(senList)):
  232. sv_path = dir_subtitle + name_hash +'/'+str(idx)+ str(inner_idx) +'.png'
  233. sub = senList[inner_idx]
  234. txt2image(sub,sv_path)
  235. img_list[idx]+=[{"count":len(sub),"path":sv_path}]
  236. return img_list
  237. def generate_subtitle_image_ENG(name_hash,text_content):
  238. img_list = [None]*len(text_content)
  239. for idx in range(len(text_content)):
  240. sv_path = dir_subtitle + name_hash +'/'+str(idx)+'.png'
  241. sub = text_content[idx]
  242. txt2image(sub, sv_path,lang='eng')
  243. img_list[idx] = sv_path
  244. return img_list
  245. def anchor_video_v2(name_hash,name,text_content, image_urls,avatar):
  246. """ 影片產生主程式。 """
  247. print(os.getcwd())
  248. print('sub image made')
  249. file_prepare(name, name_hash, text_content,image_urls)
  250. sub_list=generate_subtitle_image(name_hash,text_content)
  251. for fname in range(len(text_content)):
  252. call_anchor(name_hash+"/"+str(fname),avatar)
  253. print('step finish')
  254. print('called............................................')
  255. ck=cKey(0,254,0,270)
  256. ck_anchor=cKey(0,255,1,320)
  257. duration = 0
  258. #average layer level is 3
  259. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  260. t.Open()
  261. main_timer = 0
  262. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP.mp4")
  263. LOGO_OP.Open() # Open the reader
  264. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  265. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  266. t.AddClip(LOGO_OP_clip)
  267. bg_head = openshot.FFmpegReader(dir_video+"bg_head.avi")
  268. bg_head.Open()
  269. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  270. t.AddClip(bg_head_clip)
  271. main_timer += LOGO_OP.info.duration
  272. head_duration = LOGO_OP.info.duration
  273. bg_head.Close()
  274. LOGO_OP.Close()
  275. clip_duration=0
  276. photo_clip_list = [None]*len(text_content)
  277. img_list = [None]*len(text_content)
  278. anchor_clip_list = [None] * len(text_content)
  279. anchor_list = [None] * len(text_content)
  280. audio_clip_list = [None] * len(text_content)
  281. audio_list = [None] * len(text_content)
  282. sub_clip_list = [None] * len(text_content)
  283. sub_img_list = [None] * len(text_content)
  284. idx = 0
  285. for p in listdir(dir_photo+name_hash):
  286. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  287. clip_duration = anchor_list[idx].info.duration
  288. anchor_list[idx].Open()
  289. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  290. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  291. t.AddClip(anchor_clip_list[idx])
  292. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  293. img_list[idx].Open()
  294. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  295. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  296. t.AddClip(photo_clip_list[idx])
  297. img_list[idx].Close()
  298. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  299. audio_list[idx].Open()
  300. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  301. audio_clip_list[idx].Position(main_timer)
  302. audio_clip_list[idx].End(clip_duration)
  303. t.AddClip(audio_clip_list[idx])
  304. img_list[idx].Close()
  305. anchor_list[idx].Close()
  306. audio_list[idx].Close()
  307. sub_img_list[idx] = [None] * len(sub_list[idx])
  308. sub_clip_list[idx] = [None] * len(sub_list[idx])
  309. sub_timer = 0
  310. for sub_idx in range(len(sub_list[idx])):
  311. sub_img_list[idx][sub_idx] = openshot.QtImageReader(sub_list[idx][sub_idx]['path'])
  312. sub_img_list[idx][sub_idx].Open()
  313. sub_duration = 0.205*sub_list[idx][sub_idx]['count']
  314. 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)
  315. t.AddClip(sub_clip_list[idx][sub_idx])
  316. sub_img_list[idx][sub_idx].Close()
  317. sub_timer += sub_duration
  318. print(sub_list[idx][sub_idx]['path'])
  319. main_timer += clip_duration
  320. idx+=1
  321. LOGO_ED = openshot.FFmpegReader(dir_video+"LOGO_ED.avi")
  322. LOGO_ED.Open()
  323. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  324. ,location_x=0.005,location_y=-0.031
  325. ,scale_x=0.8,scale_y=0.6825)
  326. t.AddClip(LOGO_ED_clip)
  327. ED_duration = LOGO_ED.info.duration
  328. LOGO_ED.Close()
  329. bg = openshot.FFmpegReader(dir_video+"bg.mp4")
  330. bg.Open()
  331. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  332. left_time = (main_timer+ED_duration) % bg.info.duration
  333. bg_clip_list = [None] * bg_times
  334. bg_list = [None] * bg_times
  335. bg.Close()
  336. bg_timer = head_duration
  337. for idx in range(bg_times):
  338. bg_list[idx] = openshot.FFmpegReader(dir_video+"bg.mp4")
  339. bg_list[idx].Open()
  340. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  341. ,end=bg_list[idx].info.duration,ck=ck)
  342. t.AddClip(bg_clip_list[idx])
  343. bg_timer += bg_list[idx].info.duration
  344. bg_list[idx].Close()
  345. bg_left = openshot.FFmpegReader(dir_video+"bg.mp4")
  346. bg_left.Open()
  347. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  348. t.AddClip(bg_left_clip)
  349. bg_left.Close()
  350. title = openshot.QtImageReader(dir_title+name_hash+".png")
  351. title.Open() # Open the reader
  352. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  353. t.AddClip(title_clip)
  354. ####start building
  355. w = openshot.FFmpegWriter(tmp_video_dir+name_hash+".mp4")
  356. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  357. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  358. openshot.Fraction(1, 1), False, False, 3000000)
  359. w.Open()
  360. #may change duration into t.info.duration
  361. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  362. for n in range(frames):
  363. f=t.GetFrame(n)
  364. w.WriteFrame(f)
  365. # 更新剩下時間、duration
  366. video_link = f"www.choozmo.com:8168/{video_sub_folder}{name_hash}.mp4"
  367. duration, user_id = update_hisotry_duration(video_link)
  368. is_left_time = update_user_left_time(user_id, duration)
  369. # 1.餘額足 2. 餘額不足
  370. # 找到user-line群組token
  371. email, line_token = get_user_line_token_email(user_id)
  372. if is_left_time:
  373. notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4", glist=[line_token, 'WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD'])
  374. contents = f""" 影片下載網址: {video_link}"""
  375. mail_to_users(user_id, f'您好,您的影片 "{name}" 已經完成', contents=contents)
  376. else:
  377. notify_group(msg="您的餘額不足,請去...儲值,才能取得影片唷!", glist=[line_token, 'WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD'])
  378. contents = f""" 餘額不足,請往: ...儲值url儲值 """
  379. mail_to_users(user_id, f'您好,您的餘額不足', contents)
  380. t.Close()
  381. w.Close()
  382. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  383. def anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar):
  384. file_prepare(name, name_hash, text_content,image_urls,'eng')
  385. sub_list=generate_subtitle_image_ENG(name_hash,sub_titles)
  386. for fname in range(len(text_content)):
  387. call_anchor(name_hash+"/"+str(fname),avatar)
  388. print('step finish')
  389. print('called............................................')
  390. ck=cKey(0,254,0,270)
  391. ck_anchor=cKey(0,255,1,320)
  392. duration = 0
  393. #average layer level is 3
  394. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  395. t.Open()
  396. main_timer = 0
  397. #add logo
  398. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP.mp4")
  399. LOGO_OP.Open() # Open the reader
  400. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  401. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  402. t.AddClip(LOGO_OP_clip)
  403. #add background video (head is different)
  404. bg_head = openshot.FFmpegReader(dir_video+"bg_head_eng.mp4")
  405. bg_head.Open()
  406. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  407. t.AddClip(bg_head_clip)
  408. main_timer += LOGO_OP.info.duration
  409. head_duration = LOGO_OP.info.duration
  410. bg_head.Close()
  411. LOGO_OP.Close()
  412. #prepare empty list
  413. clip_duration=0
  414. photo_clip_list = [None]*len(text_content)
  415. img_list = [None]*len(text_content)
  416. anchor_clip_list = [None] * len(text_content)
  417. anchor_list = [None] * len(text_content)
  418. audio_clip_list = [None] * len(text_content)
  419. audio_list = [None] * len(text_content)
  420. sub_clip_list = [None] * len(text_content)
  421. #openshot image holder
  422. sub_img_list = [None] * len(text_content)
  423. idx = 0
  424. for p in listdir(dir_photo+name_hash):
  425. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  426. clip_duration = anchor_list[idx].info.duration
  427. anchor_list[idx].Open()
  428. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  429. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  430. t.AddClip(anchor_clip_list[idx])
  431. #insert image
  432. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  433. img_list[idx].Open()
  434. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  435. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  436. t.AddClip(photo_clip_list[idx])
  437. img_list[idx].Close()
  438. #insert audio (speech)
  439. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  440. audio_list[idx].Open()
  441. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  442. audio_clip_list[idx].Position(main_timer)
  443. audio_clip_list[idx].End(clip_duration)
  444. t.AddClip(audio_clip_list[idx])
  445. #insert subtitle
  446. sub_img_list[idx] = openshot.QtImageReader(sub_list[idx])
  447. sub_img_list[idx].Open()
  448. 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)
  449. t.AddClip(sub_clip_list[idx])
  450. img_list[idx].Close()
  451. anchor_list[idx].Close()
  452. audio_list[idx].Close()
  453. sub_img_list[idx].Close()
  454. main_timer += clip_duration
  455. idx+=1
  456. LOGO_ED = openshot.FFmpegReader(dir_video+"ED_ENG.mp4")
  457. LOGO_ED.Open()
  458. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  459. ,location_x=0.005,location_y=-0.031
  460. ,scale_x=0.8,scale_y=0.6825)
  461. t.AddClip(LOGO_ED_clip)
  462. ED_duration = LOGO_ED.info.duration
  463. LOGO_ED.Close()
  464. bg = openshot.FFmpegReader(dir_video+"bg_eng.mp4")
  465. bg.Open()
  466. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  467. left_time = (main_timer+ED_duration) % bg.info.duration
  468. bg_clip_list = [None] * bg_times
  469. bg_list = [None] * bg_times
  470. bg.Close()
  471. bg_timer = head_duration
  472. for idx in range(bg_times):
  473. bg_list[idx] = openshot.FFmpegReader(dir_video+"bg_eng.mp4")
  474. bg_list[idx].Open()
  475. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  476. ,end=bg_list[idx].info.duration,ck=ck)
  477. t.AddClip(bg_clip_list[idx])
  478. bg_timer += bg_list[idx].info.duration
  479. bg_list[idx].Close()
  480. bg_left = openshot.FFmpegReader(dir_video+"bg_eng.mp4")
  481. bg_left.Open()
  482. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  483. t.AddClip(bg_left_clip)
  484. bg_left.Close()
  485. title = openshot.QtImageReader(dir_title+name_hash+".png")
  486. title.Open() # Open the reader
  487. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  488. t.AddClip(title_clip)
  489. ####start building
  490. w = openshot.FFmpegWriter(tmp_video_dir+name_hash+".mp4")
  491. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  492. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  493. openshot.Fraction(1, 1), False, False, 3000000)
  494. w.Open()
  495. #may change duration into t.info.duration
  496. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  497. for n in range(frames):
  498. f=t.GetFrame(n)
  499. w.WriteFrame(f)
  500. # 更新剩下時間、duration
  501. video_link = f"www.choozmo.com:8168/{video_sub_folder}{name_hash}.mp4"
  502. duration, user_id = update_hisotry_duration(video_link)
  503. is_left_time = update_user_left_time(user_id, duration)
  504. # 1.餘額足 2. 餘額不足
  505. # 找到user-line群組token
  506. email, line_token = get_user_line_token_email(user_id)
  507. if is_left_time:
  508. notify_group(name+", Your video is complete! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4", glist=[line_token, 'WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD'])
  509. contents = f""" The download address: {video_link}"""
  510. mail_to_users(user_id, f'Hi, your video "{name}" is complete', contents=contents)
  511. else:
  512. notify_group(msg="The left money is not enough, please deposit to get the video!", glist=[line_token, 'WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD'])
  513. contents = f""" The left money is not enough, please go to ... to deposit. """
  514. mail_to_users(user_id, f'Hi, your remain deposit is not enough', contents)
  515. t.Close()
  516. w.Close()
  517. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  518. #line notifs
  519. class video_service(rpyc.Service):
  520. def exposed_call_video(self,name_hash,name,text_content, image_urls,avatar):
  521. anchor_video_v2(name_hash,name,text_content, image_urls,avatar)
  522. def exposed_call_video_eng(self,name_hash,name,text_content, image_urls,sub_titles,avatar):
  523. anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar)
  524. def update_hisotry_duration(video_link):
  525. """ 更新資訊影片長度資訊。 """
  526. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  527. table = db['history_input']
  528. duration = get_mp4_duration(video_link)
  529. data = dict(link=video_link, duration=duration)
  530. table.update(data, ['link'])
  531. rows = db.query(f'SELECT * FROM history_input WHERE link="{video_link}"')
  532. for row in rows:
  533. user_id = row['user_id']
  534. return duration, user_id
  535. def update_user_left_time(user_id, duration):
  536. """ 更新使用者剩下時間,如果為負,接著提醒。 """
  537. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  538. table = db['users']
  539. rows = db.query(f"SELECT * FROM user WHERE id={user_id}")
  540. for row in rows:
  541. left_time = row['left_time']
  542. line_token = row['line_token']
  543. left_time -= duration
  544. data = dict(id=user_id, left_time=left_time-duration)
  545. table.update(data, ['id'])
  546. if left_time < 0:
  547. return False
  548. else:
  549. return True
  550. def get_user_line_token_email(user_id):
  551. """ 取得使用者line-token、email用以通知用。 """
  552. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  553. query = f"""
  554. select
  555. A.user_id, A.link, B.email, B.line_token
  556. from
  557. ((select link, user_id, duration
  558. from AI_anchor.history_input ) as A
  559. inner join (select id, email, line_token from AI_anchor.users where id={user_id}) as B
  560. on A.user_id=B.id);
  561. """
  562. rows = db.query(query)
  563. for row in rows:
  564. line_token = row['line_token']
  565. email = row['email']
  566. break
  567. return line_token, email
  568. from rpyc.utils.server import ThreadedServer
  569. t = ThreadedServer(video_service, port=8858)
  570. print('service started')
  571. t.start()