main.py 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. from fastapi import FastAPI,Cookie, Depends, FastAPI, Query, WebSocket, status, WebSocketDisconnect
  2. import openshot
  3. from os import listdir
  4. from os.path import isfile, isdir, join
  5. import threading
  6. import zhtts
  7. import os
  8. import urllib
  9. from typing import List
  10. import requests
  11. from pydantic import BaseModel
  12. from bs4 import BeautifulSoup
  13. from PIL import Image,ImageDraw,ImageFont
  14. import pyttsx3
  15. import rpyc
  16. import random
  17. import time
  18. import math
  19. import hashlib
  20. import re
  21. import asyncio
  22. import urllib.request
  23. from fastapi.responses import FileResponse
  24. from websocket import create_connection
  25. from fastapi.middleware.cors import CORSMiddleware
  26. import dataset
  27. from datetime import datetime
  28. from util.swap_face import swap_face
  29. from fastapi.staticfiles import StaticFiles
  30. #service nginx restart
  31. #uvicorn main:app --host="0.0.0.0" --reload --port 8888
  32. app = FastAPI()
  33. origins = [
  34. "https://hhh.com.tw"
  35. "http://172.105.205.52",
  36. "http://172.105.205.52:8001",
  37. "http://172.104.93.163",
  38. ]
  39. app.add_middleware(
  40. CORSMiddleware,
  41. # allow_origins=origins,
  42. allow_origins=["*"],
  43. allow_credentials=True,
  44. allow_methods=["*"],
  45. allow_headers=["*"],
  46. )
  47. app.mount("/static", StaticFiles(directory="static"), name="static")
  48. app.mount("/static/img", StaticFiles(directory="static/img"), name="static/img")
  49. dir_sound = 'mp3_track/'
  50. dir_photo = 'photo/'
  51. dir_text = 'text_file/'
  52. dir_video = 'video_material/'
  53. dir_title = 'title/'
  54. dir_subtitle = 'subtitle/'
  55. dir_anchor = 'anchor_raw/'
  56. class swap_req(BaseModel):
  57. imgurl: str
  58. class request(BaseModel):
  59. name: str
  60. text_content: List[str]
  61. image_urls: List[str]
  62. avatar: str
  63. client_id :str
  64. class ConnectionManager:
  65. def __init__(self):
  66. self.active_connections: List[WebSocket] = []
  67. async def connect(self, websocket: WebSocket):
  68. await websocket.accept()
  69. self.active_connections.append(websocket)
  70. def disconnect(self, websocket: WebSocket):
  71. self.active_connections.remove(websocket)
  72. async def send_personal_message(self, message: str, websocket: WebSocket):
  73. await websocket.send_text(message)
  74. async def broadcast(self, message: str):
  75. for connection in self.active_connections:
  76. await connection.send_text(message)
  77. @app.get("/")
  78. async def root():
  79. return {"message": "Hello, this is index"}
  80. @app.get("/index2")
  81. async def index2():
  82. return FileResponse('static/index2.html')
  83. @app.get("/gen_avatar")
  84. async def index2():
  85. return FileResponse('gen_avatar.html')
  86. @app.post("/swapFace")
  87. async def swapFace(req:swap_req):
  88. sf = swap_face(req.imgurl)
  89. result = sf.run()
  90. #notify_group(result)
  91. return result
  92. @app.post("/make_anchor_video_v2")
  93. async def make_anchor_video_v2(req:request):
  94. for txt in req.text_content:
  95. if re.search('[a-zA-Z]', txt) !=None:
  96. return {'msg':'輸入字串不能包含英文字!'}
  97. for imgu in req.image_urls:
  98. try:
  99. if get_url_type(imgu) =='video/mp4':
  100. r=requests.get(imgu)
  101. f=open(dir_photo+name_hash+"/"+str(img_num)+".mp4",'wb')
  102. else:
  103. im = Image.open(requests.get(imgu, stream=True).raw)
  104. im= im.convert("RGB")
  105. except:
  106. return {'msg':"無法辨別圖片網址"+imgu}
  107. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  108. log_table = db['history_input']
  109. txt_content_seperate_by_dot = ''
  110. for txt in req.text_content:
  111. txt_content_seperate_by_dot += txt+","
  112. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  113. img_urls_seperate_by_dot = ''
  114. for iurl in req.image_urls:
  115. img_urls_seperate_by_dot += iurl+","
  116. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  117. time_stamp = datetime.fromtimestamp(time.time())
  118. time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
  119. pk = log_table.insert({'name':req.name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot,'timestamp':time_stamp})
  120. x = threading.Thread(target=anchor_video_v2, args=(req.name, req.text_content, req.image_urls,int(req.avatar),req.client_id))
  121. x.start()
  122. return {"msg":"製作影片需要時間,請您耐心等候 稍後可以在www.choozmo.com:8168/"+req.name+".mp4 中觀看"}
  123. manager = ConnectionManager()
  124. @app.websocket("/progress/{client_id}")
  125. async def websocket_endpoint(websocket: WebSocket, client_id: int):
  126. await manager.connect(websocket)
  127. try:
  128. while True:
  129. data = await websocket.receive_text()
  130. await manager.send_personal_message(data, websocket)
  131. await manager.broadcast(data)
  132. except WebSocketDisconnect:
  133. manager.disconnect(websocket)
  134. @app.get("/history_input")
  135. async def history_input():
  136. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  137. statement = 'SELECT * FROM history_input ORDER BY timestamp DESC LIMIT 50'
  138. logs = []
  139. for row in db.query(statement):
  140. logs.append({'id':row['id'],'name':row['name'],'text_content':row['text_content'].split(','),'image_urls':row['image_urls'].split(',')})
  141. return logs
  142. def notify_group(msg):
  143. headers = {
  144. "Authorization": "Bearer " + "WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD",
  145. "Content-Type": "application/x-www-form-urlencoded"
  146. }
  147. params = {"message": msg}
  148. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  149. headers = {
  150. "Authorization": "Bearer " + "7a0JnlE9TrbtwSJyL8dYjkiwedFZ4ZPmIhQbgaFPA1b",
  151. "Content-Type": "application/x-www-form-urlencoded"
  152. }
  153. params = {"message": msg}
  154. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  155. #print(r)
  156. def cKey(r,g,b,fuzz):
  157. col=openshot.Color()
  158. col.red=openshot.Keyframe(r)
  159. col.green=openshot.Keyframe(g)
  160. col.blue=openshot.Keyframe(b)
  161. return openshot.ChromaKey(col, openshot.Keyframe(fuzz))
  162. def video_photo_clip(vid=None,layer=None, position=None, end=None
  163. ,scale_x=1,scale_y=1,location_x=0,location_y=0,ck=None,audio=True):
  164. clip = openshot.Clip(vid)
  165. clip.Layer(layer)
  166. clip.Position(position)
  167. clip.End(end)
  168. clip.scale_x=openshot.Keyframe(scale_x)
  169. clip.scale_y=openshot.Keyframe(scale_y)
  170. clip.location_x=openshot.Keyframe(location_x)
  171. clip.location_y=openshot.Keyframe(location_y)
  172. if ck!=None:
  173. clip.AddEffect(ck)
  174. if audio==True:
  175. clip.has_audio=openshot.Keyframe(1)
  176. else:
  177. clip.has_audio=openshot.Keyframe(0)
  178. return clip
  179. def myunichchar(unicode_char):
  180. mb_string = unicode_char.encode('big5')
  181. try:
  182. unicode_char = unichr(ord(mb_string[0]) << 8 | ord(mb_string[1]))
  183. except NameError:
  184. unicode_char = chr(mb_string[0] << 8 | mb_string[1])
  185. return unicode_char
  186. def file_prepare(name, name_hash,text_content,image_urls):
  187. #save image
  188. try:
  189. os.mkdir(dir_photo+name_hash)
  190. except FileExistsError:
  191. print("Directory " , dir_photo+name_hash , " already exists")
  192. img_num = 1
  193. for imgu in image_urls:
  194. im = Image.open(requests.get(imgu, stream=True).raw)
  195. im.save(dir_photo+name_hash+"/"+str(img_num)+".jpg")
  196. img_num+=1
  197. #save text
  198. text_file = open(dir_text+name_hash+".txt", "w")
  199. text_file.write(text_content)
  200. text_file.close()
  201. print("text file made")
  202. #make mp3
  203. tts = zhtts.TTS()
  204. tts.text2wav(text_content,dir_sound+name_hash+".mp3")
  205. print("mp3 file made")
  206. #make title as image
  207. txt2image(name, dir_title+name_hash+".png")
  208. def get_url_type(url):
  209. req = urllib.request.Request(url, method='HEAD', headers={'User-Agent': 'Mozilla/5.0'})
  210. r = urllib.request.urlopen(req)
  211. contentType = r.getheader('Content-Type')
  212. return contentType
  213. def downloadfile(name,url):
  214. name=name+".mp4"
  215. def make_dir(name_hash):
  216. #save image
  217. try:
  218. os.mkdir(dir_photo+name_hash)
  219. except FileExistsError:
  220. print("~~~~~~Warning~~~~~~~~~Directory " , dir_photo+name_hash , " already exists")
  221. try:
  222. os.mkdir(dir_text+name_hash)
  223. except FileExistsError:
  224. print("~~~~~~Warning~~~~~~~~~Directory " , dir_text+name_hash , " already exists")
  225. try:
  226. os.mkdir(dir_sound+name_hash)
  227. except FileExistsError:
  228. print("~~~~~~Warning~~~~~~~~~Directory " , dir_sound+name_hash , " already exists")
  229. try:
  230. os.mkdir(dir_video+name_hash)
  231. except FileExistsError:
  232. print("~~~~~~Warning~~~~~~~~~Directory " , dir_video+name_hash , " already exists")
  233. try:
  234. os.mkdir(dir_anchor+name_hash)
  235. except FileExistsError:
  236. print("~~~~~~Warning~~~~~~~~~Directory " , dir_anchor+name_hash , " already exists")
  237. try:
  238. os.mkdir(dir_subtitle+name_hash)
  239. except FileExistsError:
  240. print("~~~~~~Warning~~~~~~~~~Directory " , dir_subtitle+name_hash , " already exists")
  241. def file_prepare_v2(name, name_hash,text_content,image_urls):
  242. make_dir(name_hash)
  243. img_num = 1
  244. for imgu in image_urls:
  245. if get_url_type(imgu) =='video/mp4':
  246. r=requests.get(imgu)
  247. f=open(dir_photo+name_hash+"/"+str(img_num)+".mp4",'wb')
  248. for chunk in r.iter_content(chunk_size=255):
  249. if chunk:
  250. f.write(chunk)
  251. f.close()
  252. else:
  253. im = Image.open(requests.get(imgu, stream=True).raw)
  254. im= im.convert("RGB")
  255. im.save(dir_photo+name_hash+"/"+str(img_num)+".jpg")
  256. img_num+=1
  257. #save text
  258. txt_idx=0
  259. for txt in text_content:
  260. text_file = open(dir_text+name_hash+"/"+str(txt_idx)+".txt", "w")
  261. text_file.write(txt)
  262. text_file.close()
  263. txt_idx+=1
  264. print("text file made")
  265. #make mp3
  266. language = 'zh-tw'
  267. txt_idx = 0
  268. for txt in text_content:
  269. tts = zhtts.TTS()
  270. tts.text2wav(txt,dir_sound+name_hash+"/"+str(txt_idx)+".mp3")
  271. txt_idx+=1
  272. print("mp3 file made")
  273. #make title as image
  274. txt2image_title(name, dir_title+name_hash+".png")
  275. def txt2image(content, save_target):
  276. unicode_text = trim_punctuation(content)
  277. font = ImageFont.truetype(font="DFT_B7.ttc", size=38)
  278. text_width, text_height = font.getsize(unicode_text)
  279. canvas = Image.new('RGBA', (700, 500), (255, 0, 0, 0) )
  280. draw = ImageDraw.Draw(canvas)
  281. text= unicode_text
  282. draw.text((5,5), text, (255, 255, 0), font)
  283. canvas.save(save_target, "PNG")
  284. def txt2image_title(content, save_target):
  285. unicode_text = trim_punctuation(content)
  286. font = ImageFont.truetype(font="DFT_B7.ttc", size=28)
  287. text_width, text_height = font.getsize(unicode_text)
  288. canvas = Image.new('RGBA', (510, 500), (255, 0, 0, 0) )
  289. draw = ImageDraw.Draw(canvas)
  290. text= unicode_text
  291. draw.text((5,5), text, (17, 41, 167), font)
  292. canvas.save(save_target, "PNG")
  293. '''
  294. def txt2image_title(content, save_target):
  295. unicode_text =content
  296. font = ImageFont.truetype("font.ttf", 23,encoding='big5')
  297. text_width, text_height = font.getsize(unicode_text)
  298. canvas = Image.new('RGBA', (500, 500), (255, 0, 0, 0) )
  299. draw = ImageDraw.Draw(canvas)
  300. text=''
  301. for c in unicode_text:
  302. if len(re.findall(r'[\u4e00-\u9fff]+', c))>0:
  303. text+=myunichchar(c)
  304. else:
  305. text+=c
  306. draw.text((5,5), text, (17, 41, 167), font)
  307. canvas.save(save_target, "PNG")
  308. '''
  309. def call_achor_video_v2(fileName,avatar):
  310. conn = rpyc.classic.connect("192.168.1.105",18812)
  311. ros = conn.modules.os
  312. rsys = conn.modules.sys
  313. fr=open(dir_sound+fileName+".mp3",'rb')# voice
  314. #warning!!! file my be replaced by other process
  315. fw=conn.builtins.open('/tmp/output.mp3','wb')
  316. while True:
  317. b=fr.read(1024)
  318. if b:
  319. fw.write(b)
  320. else:
  321. break
  322. fr.close()
  323. fw.close()
  324. val=random.randint(1000000,9999999)
  325. ros.chdir('/home/jared/to_video')
  326. ros.system('./p'+str(avatar)+'.sh '+str(val)+' &')
  327. while True:
  328. print('waiting...')
  329. if ros.path.exists('/tmp/results/'+str(val)):
  330. break
  331. time.sleep(5)
  332. print('waiting...')
  333. fr=conn.builtins.open('/tmp/results/'+str(val)+'.mp4','rb')
  334. fw=open(dir_anchor+fileName+".mp4",'wb')#peggy1_1
  335. while True:
  336. b=fr.read(1024)
  337. if b:
  338. fw.write(b)
  339. else:
  340. break
  341. fr.close()
  342. fw.close()
  343. def call_achor_video(name):
  344. conn = rpyc.classic.connect("192.168.1.105",18812)
  345. ros = conn.modules.os
  346. rsys = conn.modules.sys
  347. fr=open(dir_sound+name+".mp3",'rb')# voice
  348. #warning!!! file my be replaced by other process
  349. fw=conn.builtins.open('/tmp/output.mp3','wb')
  350. while True:
  351. b=fr.read(1024)
  352. if b:
  353. fw.write(b)
  354. else:
  355. break
  356. fr.close()
  357. fw.close()
  358. val=random.randint(1000000,9999999)
  359. ros.chdir('/home/jared/to_video')
  360. ros.system('./p6.sh '+str(val)+' &')
  361. while True:
  362. print('waiting...')
  363. if ros.path.exists('/tmp/results/'+str(val)):
  364. break
  365. time.sleep(15)
  366. print('waiting...')
  367. fr=conn.builtins.open('/tmp/results/'+str(val)+'.mp4','rb')
  368. fw=open(dir_anchor+name+'.mp4','wb')#peggy1_1
  369. while True:
  370. b=fr.read(1024)
  371. if b:
  372. fw.write(b)
  373. else:
  374. break
  375. fr.close()
  376. fw.close()
  377. print('called..............................................')
  378. def trim_punctuation(s):
  379. pat_block = u'[^\u4e00-\u9fff0-9a-zA-Z]+';
  380. pattern = u'([0-9]+{0}[0-9]+)|{0}'.format(pat_block)
  381. res = re.sub(pattern, lambda x: x.group(1) if x.group(1) else u"" ,s)
  382. return res
  383. def splitter(s):
  384. for sent in re.findall(u'[^!?,。\!\?]+[!?。\!\?]?', s, flags=re.U):
  385. yield sent
  386. def split_by_pun(s):
  387. res = list(splitter(s))
  388. return res
  389. def generate_subtitle_image(name_hash,text_content):
  390. img_list = [None]*len(text_content)
  391. for idx in range(len(text_content)):
  392. img_list[idx]=[]
  393. senList = split_by_pun(text_content[idx])
  394. for inner_idx in range(len(senList)):
  395. sv_path = dir_subtitle + name_hash +'/'+str(idx)+ str(inner_idx) +'.png'
  396. sub = senList[inner_idx]
  397. txt2image(sub,sv_path)
  398. img_list[idx]+=[{"count":len(sub),"path":sv_path}]
  399. return img_list
  400. async def sendProgress(progress,client_id):
  401. ws = create_connection("ws://www.choozmo.com:8888/progress/"+client_id)
  402. ws.send(str(progress))
  403. ws.close()
  404. def anchor_video_v2(name,text_content, image_urls,avatar,client_id):
  405. progress = 0
  406. asyncio.run(sendProgress(progress,client_id))
  407. name_hash = str(time.time()).replace('.','')
  408. print('sub image made')
  409. file_prepare_v2(name, name_hash, text_content,image_urls)
  410. progress = 20
  411. asyncio.run(sendProgress(progress,client_id))
  412. sub_list=generate_subtitle_image(name_hash,text_content)
  413. progress = 30
  414. asyncio.run(sendProgress(progress,client_id))
  415. progress_per_video = int(40/len(text_content))
  416. for fname in range(len(text_content)):
  417. call_achor_video_v2(name_hash+"/"+str(fname),avatar)
  418. progress += progress_per_video
  419. print('step finish')
  420. asyncio.run(sendProgress(progress,client_id))
  421. print('called............................................')
  422. ck=cKey(0,254,0,270)
  423. ck_anchor=cKey(0,255,1,320)
  424. duration = 0
  425. #average layer level is 3
  426. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  427. t.Open()
  428. main_timer = 0
  429. LOGO_OP = openshot.FFmpegReader(dir_video+"LOGO_OP.mp4")
  430. LOGO_OP.Open() # Open the reader
  431. LOGO_OP_clip = video_photo_clip(vid=LOGO_OP,layer=4,position=0,end=LOGO_OP.info.duration
  432. ,location_y=-0.03,scale_x=0.8,scale_y=0.704)
  433. t.AddClip(LOGO_OP_clip)
  434. bg_head = openshot.FFmpegReader(dir_video+"bg_head.avi")
  435. bg_head.Open()
  436. bg_head_clip = video_photo_clip(vid=bg_head,layer=2,position=0,end=LOGO_OP.info.duration,ck=ck)
  437. t.AddClip(bg_head_clip)
  438. main_timer += LOGO_OP.info.duration
  439. head_duration = LOGO_OP.info.duration
  440. bg_head.Close()
  441. LOGO_OP.Close()
  442. progress += 10
  443. clip_duration=0
  444. photo_clip_list = [None]*len(text_content)
  445. img_list = [None]*len(text_content)
  446. anchor_clip_list = [None] * len(text_content)
  447. anchor_list = [None] * len(text_content)
  448. audio_clip_list = [None] * len(text_content)
  449. audio_list = [None] * len(text_content)
  450. sub_clip_list = [None] * len(text_content)
  451. sub_img_list = [None] * len(text_content)
  452. idx = 0
  453. for p in listdir(dir_photo+name_hash):
  454. anchor_list[idx] = openshot.FFmpegReader(dir_anchor+name_hash+"/"+str(idx)+".mp4")
  455. clip_duration = anchor_list[idx].info.duration
  456. anchor_list[idx].Open()
  457. anchor_clip_list[idx] = video_photo_clip(vid=anchor_list[idx],layer=4,scale_x=0.65,scale_y=0.65,
  458. location_x=0.35,location_y=0.25,position=main_timer, end=clip_duration,ck=ck_anchor,audio=False)
  459. t.AddClip(anchor_clip_list[idx])
  460. img_list[idx] = openshot.FFmpegReader(dir_photo+name_hash+'/'+p)
  461. img_list[idx].Open()
  462. photo_clip_list[idx] = video_photo_clip(vid=img_list[idx],layer=3
  463. ,scale_x=0.81,scale_y=0.68,location_y=-0.03,position=main_timer,end=clip_duration,audio=False)
  464. t.AddClip(photo_clip_list[idx])
  465. img_list[idx].Close()
  466. audio_list[idx] = openshot.FFmpegReader(dir_sound+name_hash+"/"+str(idx)+".mp3")
  467. audio_list[idx].Open()
  468. audio_clip_list[idx] = openshot.Clip(audio_list[idx])
  469. audio_clip_list[idx].Position(main_timer)
  470. audio_clip_list[idx].End(clip_duration)
  471. t.AddClip(audio_clip_list[idx])
  472. img_list[idx].Close()
  473. anchor_list[idx].Close()
  474. audio_list[idx].Close()
  475. sub_img_list[idx] = [None] * len(sub_list[idx])
  476. sub_clip_list[idx] = [None] * len(sub_list[idx])
  477. sub_timer = 0
  478. for sub_idx in range(len(sub_list[idx])):
  479. sub_img_list[idx][sub_idx] = openshot.QtImageReader(sub_list[idx][sub_idx]['path'])
  480. sub_img_list[idx][sub_idx].Open()
  481. sub_duration = 0.205*sub_list[idx][sub_idx]['count']
  482. 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)
  483. t.AddClip(sub_clip_list[idx][sub_idx])
  484. sub_img_list[idx][sub_idx].Close()
  485. sub_timer += sub_duration
  486. print(sub_list[idx][sub_idx]['path'])
  487. main_timer += clip_duration
  488. idx+=1
  489. progress+=10
  490. asyncio.run(sendProgress(progress,client_id))
  491. LOGO_ED = openshot.FFmpegReader(dir_video+"LOGO_ED.avi")
  492. LOGO_ED.Open()
  493. LOGO_ED_clip = video_photo_clip(vid=LOGO_ED,layer=4,position=main_timer,end=LOGO_ED.info.duration+2
  494. ,location_x=0.005,location_y=-0.031
  495. ,scale_x=0.8,scale_y=0.6825)
  496. t.AddClip(LOGO_ED_clip)
  497. ED_duration = LOGO_ED.info.duration
  498. LOGO_ED.Close()
  499. bg = openshot.FFmpegReader(dir_video+"bg.mp4")
  500. bg.Open()
  501. bg_times = math.floor(main_timer+ED_duration/bg.info.duration)
  502. left_time = (main_timer+ED_duration) % bg.info.duration
  503. bg_clip_list = [None] * bg_times
  504. bg_list = [None] * bg_times
  505. bg.Close()
  506. bg_timer = head_duration
  507. for idx in range(bg_times):
  508. bg_list[idx] = openshot.FFmpegReader(dir_video+"bg.mp4")
  509. bg_list[idx].Open()
  510. bg_clip_list[idx] = video_photo_clip(bg_list[idx],layer=2,position=bg_timer
  511. ,end=bg_list[idx].info.duration,ck=ck)
  512. t.AddClip(bg_clip_list[idx])
  513. bg_timer += bg_list[idx].info.duration
  514. bg_list[idx].Close()
  515. bg_left = openshot.FFmpegReader(dir_video+"bg.mp4")
  516. bg_left.Open()
  517. bg_left_clip = video_photo_clip(bg_left,layer=2,position=bg_timer,end=left_time,ck=ck)
  518. t.AddClip(bg_left_clip)
  519. bg_left.Close()
  520. title = openshot.QtImageReader(dir_title+name_hash+".png")
  521. title.Open() # Open the reader
  522. title_clip = video_photo_clip(vid=title, layer=4,location_x=-0.047, location_y=0.801,position=0,end=head_duration+main_timer)
  523. t.AddClip(title_clip)
  524. ####start building
  525. w = openshot.FFmpegWriter("../html/"+name_hash+".mp4")
  526. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  527. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  528. openshot.Fraction(1, 1), False, False, 3000000)
  529. w.Open()
  530. #may change duration into t.info.duration
  531. frames = int(t.info.fps)*int(head_duration+main_timer+ED_duration)
  532. for n in range(frames):
  533. f=t.GetFrame(n)
  534. w.WriteFrame(f)
  535. progress = 100
  536. asyncio.run(sendProgress(progress,client_id))
  537. notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+name_hash+".mp4")
  538. t.Close()
  539. w.Close()
  540. progress = 100
  541. asyncio.run(sendProgress(progress,client_id))
  542. print("Raw Video done")
  543. print("video at : www.choozmo.com:8168/"+name_hash+".mp4")
  544. #line notifs