openshot_video_generator.py 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  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==1:
  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.load("arial.pil")
  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=38)
  173. else :
  174. font = ImageFont.load("arial.pil")
  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,0)
  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. if is_left_time:
  371. notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  372. contents = f""" 影片下載網址: {video_link}"""
  373. mail_to_users(user_id, f'您好,您的影片 "{name}" 已經完成', contents=contents)
  374. else:
  375. notify_group(msg="您的餘額不足,請去...儲值,才能取得影片唷!")
  376. contents = f""" 餘額不足,請往: ...儲值url儲值 """
  377. mail_to_users(user_id, f'您好,您的餘額不足', contents)
  378. t.Close()
  379. w.Close()
  380. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  381. def anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar):
  382. file_prepare(name, name_hash, text_content,image_urls,'eng')
  383. sub_list=generate_subtitle_image_ENG(name_hash,sub_titles)
  384. for fname in range(len(text_content)):
  385. call_anchor(name_hash+"/"+str(fname),avatar)
  386. print('step finish')
  387. print('called............................................')
  388. ck=cKey(0,254,0,270)
  389. ck_anchor=cKey(0,255,1,320)
  390. duration = 0
  391. #average layer level is 3
  392. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  393. t.Open()
  394. main_timer = 0
  395. #add logo
  396. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP.mp4")
  397. LOGO_OP.Open() # Open the reader
  398. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  399. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  400. t.AddClip(LOGO_OP_clip)
  401. #add background video (head is different)
  402. bg_head = openshot.FFmpegReader(dir_video+"bg_head_eng.mp4")
  403. bg_head.Open()
  404. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  405. t.AddClip(bg_head_clip)
  406. main_timer += LOGO_OP.info.duration
  407. head_duration = LOGO_OP.info.duration
  408. bg_head.Close()
  409. LOGO_OP.Close()
  410. #prepare empty list
  411. clip_duration=0
  412. photo_clip_list = [None]*len(text_content)
  413. img_list = [None]*len(text_content)
  414. anchor_clip_list = [None] * len(text_content)
  415. anchor_list = [None] * len(text_content)
  416. audio_clip_list = [None] * len(text_content)
  417. audio_list = [None] * len(text_content)
  418. sub_clip_list = [None] * len(text_content)
  419. #openshot image holder
  420. sub_img_list = [None] * len(text_content)
  421. idx = 0
  422. for p in listdir(dir_photo+name_hash):
  423. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  424. clip_duration = anchor_list[idx].info.duration
  425. anchor_list[idx].Open()
  426. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  427. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  428. t.AddClip(anchor_clip_list[idx])
  429. #insert image
  430. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  431. img_list[idx].Open()
  432. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  433. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  434. t.AddClip(photo_clip_list[idx])
  435. img_list[idx].Close()
  436. #insert audio (speech)
  437. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  438. audio_list[idx].Open()
  439. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  440. audio_clip_list[idx].Position(main_timer)
  441. audio_clip_list[idx].End(clip_duration)
  442. t.AddClip(audio_clip_list[idx])
  443. #insert subtitle
  444. sub_img_list[idx] = openshot.QtImageReader(sub_list[idx])
  445. sub_img_list[idx].Open()
  446. 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)
  447. t.AddClip(sub_clip_list[idx])
  448. img_list[idx].Close()
  449. anchor_list[idx].Close()
  450. audio_list[idx].Close()
  451. sub_img_list[idx].Close()
  452. main_timer += clip_duration
  453. idx+=1
  454. LOGO_ED = openshot.FFmpegReader(dir_video+"ED_ENG.mp4")
  455. LOGO_ED.Open()
  456. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  457. ,location_x=0.005,location_y=-0.031
  458. ,scale_x=0.8,scale_y=0.6825)
  459. t.AddClip(LOGO_ED_clip)
  460. ED_duration = LOGO_ED.info.duration
  461. LOGO_ED.Close()
  462. bg = openshot.FFmpegReader(dir_video+"bg_eng.mp4")
  463. bg.Open()
  464. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  465. left_time = (main_timer+ED_duration) % bg.info.duration
  466. bg_clip_list = [None] * bg_times
  467. bg_list = [None] * bg_times
  468. bg.Close()
  469. bg_timer = head_duration
  470. for idx in range(bg_times):
  471. bg_list[idx] = openshot.FFmpegReader(dir_video+"bg_eng.mp4")
  472. bg_list[idx].Open()
  473. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  474. ,end=bg_list[idx].info.duration,ck=ck)
  475. t.AddClip(bg_clip_list[idx])
  476. bg_timer += bg_list[idx].info.duration
  477. bg_list[idx].Close()
  478. bg_left = openshot.FFmpegReader(dir_video+"bg_eng.mp4")
  479. bg_left.Open()
  480. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  481. t.AddClip(bg_left_clip)
  482. bg_left.Close()
  483. title = openshot.QtImageReader(dir_title+name_hash+".png")
  484. title.Open() # Open the reader
  485. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  486. t.AddClip(title_clip)
  487. ####start building
  488. w = openshot.FFmpegWriter(tmp_video_dir+name_hash+".mp4")
  489. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  490. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  491. openshot.Fraction(1, 1), False, False, 3000000)
  492. w.Open()
  493. #may change duration into t.info.duration
  494. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  495. for n in range(frames):
  496. f=t.GetFrame(n)
  497. w.WriteFrame(f)
  498. # 更新剩下時間、duration
  499. video_link = f"www.choozmo.com:8168/{video_sub_folder}{name_hash}.mp4"
  500. duration, user_id = update_hisotry_duration(video_link)
  501. is_left_time = update_user_left_time(user_id, duration)
  502. # 1.餘額足 2. 餘額不足
  503. if is_left_time:
  504. notify_group(name+", Your video is complete! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  505. contents = f""" The download address: {video_link}"""
  506. mail_to_users(user_id, f'Hi, your video "{name}" is complete', contents=contents)
  507. else:
  508. notify_group(msg="The left money is not enough, please deposit to get the video!")
  509. contents = f""" The left money is not enough, please go to ... to deposit. """
  510. mail_to_users(user_id, f'Hi, your remain deposit is not enough', contents)
  511. t.Close()
  512. w.Close()
  513. print("video at : www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  514. #line notifs
  515. class video_service(rpyc.Service):
  516. def exposed_call_video(self,name_hash,name,text_content, image_urls,avatar):
  517. anchor_video_v2(name_hash,name,text_content, image_urls,avatar)
  518. def exposed_call_video_eng(self,name_hash,name,text_content, image_urls,sub_titles,avatar):
  519. anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar)
  520. def update_hisotry_duration(video_link):
  521. """ 更新資訊影片長度資訊。 """
  522. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  523. table = db['history_input']
  524. duration = get_mp4_duration(video_link)
  525. data = dict(link=video_link, duration=duration)
  526. table.update(data, ['link'])
  527. rows = db.query(f'SELECT * FROM history_input WHERE link="{video_link}"')
  528. for row in rows:
  529. user_id = row['user_id']
  530. return duration, user_id
  531. def update_user_left_time(user_id, duration):
  532. """ 更新使用者剩下時間,如果為負,接著提醒。 """
  533. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  534. table = db['users']
  535. rows = db.query(f"SELECT * FROM user WHERE id={user_id}")
  536. for row in rows:
  537. left_time = row['left_time']
  538. line_token = row['line_token']
  539. left_time -= duration
  540. data = dict(id=user_id, left_time=left_time-duration)
  541. table.update(data, ['id'])
  542. if left_time < 0:
  543. return False
  544. else:
  545. return True
  546. from rpyc.utils.server import ThreadedServer
  547. t = ThreadedServer(video_service, port=8858)
  548. print('service started')
  549. t.start()