main.py 21 KB

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