main.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. from fastapi import FastAPI,Cookie, Depends, Query, status,File, UploadFile,Request,Response,HTTPException
  2. from fastapi.templating import Jinja2Templates
  3. from fastapi.responses import HTMLResponse, RedirectResponse, JSONResponse
  4. from typing import List, Optional
  5. from os.path import isfile, isdir, join
  6. import threading
  7. import zhtts
  8. import os
  9. import urllib
  10. import requests
  11. from bs4 import BeautifulSoup
  12. from PIL import Image,ImageDraw,ImageFont
  13. import pyttsx3
  14. import rpyc
  15. import random
  16. import time
  17. import math
  18. import hashlib
  19. import re
  20. import asyncio
  21. import urllib.request
  22. from fastapi.responses import FileResponse
  23. from fastapi.middleware.cors import CORSMiddleware
  24. import dataset
  25. from datetime import datetime, timedelta
  26. from util.swap_face import swap_face
  27. from fastapi.staticfiles import StaticFiles
  28. import shutil
  29. import io
  30. from first import first
  31. from passlib.context import CryptContext
  32. from jose import JWTError, jwt
  33. from fastapi_jwt_auth import AuthJWT
  34. from fastapi_jwt_auth.exceptions import AuthJWTException
  35. from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
  36. import models
  37. import pymysql
  38. from first import first
  39. import mailer
  40. from moviepy.editor import VideoFileClip
  41. import traceback
  42. import logging
  43. import gSlide
  44. import aiofiles
  45. import json
  46. pymysql.install_as_MySQLdb()
  47. app = FastAPI()
  48. app.add_middleware(
  49. CORSMiddleware,
  50. allow_origins=["*"],
  51. allow_credentials=True,
  52. allow_methods=["*"],
  53. allow_headers=["*"],
  54. )
  55. SECRET_KEY = "df2f77bd544240801a048bd4293afd8eeb7fff3cb7050e42c791db4b83ebadcd"
  56. ALGORITHM = "HS256"
  57. ACCESS_TOKEN_EXPIRE_MINUTES = 3000
  58. pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
  59. app.mount("/static", StaticFiles(directory="static"), name="static")
  60. app.mount("/static/img", StaticFiles(directory="static/img"), name="static/img")
  61. app.mount("/templates", StaticFiles(directory="templates"), name="templates")
  62. templates = Jinja2Templates(directory="templates")
  63. oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
  64. tmp_video_dir = '../OpenshotService/tmp_video/'
  65. tmp_avatar_dir = '../../face_swap/tmp_avatar/' #change source face path here
  66. video_sub_folder = 'ai_anchor_video/'
  67. avatar_sub_folder = 'swap_save/'
  68. tmp_img_sub_folder = 'tmp_img/'
  69. img_upload_folder = '/var/www/html/'+tmp_img_sub_folder
  70. video_dest = '/var/www/html/'+video_sub_folder
  71. avatar_dest = '/var/www/html/'+avatar_sub_folder
  72. # @app.get("/index2")
  73. # async def index2():
  74. # return FileResponse('static/index2.html')
  75. @app.get("/index_eng")
  76. async def index2():
  77. return FileResponse('static/index_eng.html')
  78. # home page
  79. @app.get("/index", response_class=HTMLResponse)
  80. async def get_home_page(request: Request, response: Response):
  81. return templates.TemplateResponse("index.html", {"request": request, "response": response})
  82. @app.get("/", response_class=HTMLResponse)
  83. async def get_home_page(request: Request, response: Response):
  84. return templates.TemplateResponse("index.html", {"request": request, "response": response})
  85. @app.get("/make_video", response_class=HTMLResponse)
  86. async def get_home_page(request: Request, response: Response, Authorize: AuthJWT = Depends()):
  87. try:
  88. Authorize.jwt_required()
  89. except Exception as e:
  90. print(e)
  91. return '請先登入帳號'
  92. current_user = Authorize.get_jwt_subject()
  93. return templates.TemplateResponse("make_video.html", {"request": request, "response": response})
  94. @app.get("/make_video_long", response_class=HTMLResponse)
  95. async def get_home_page(request: Request, response: Response, Authorize: AuthJWT = Depends()):
  96. try:
  97. Authorize.jwt_required()
  98. except Exception as e:
  99. print(e)
  100. return '請先登入帳號'
  101. current_user = Authorize.get_jwt_subject()
  102. return templates.TemplateResponse("make_video_long.html", {"request": request, "response": response})
  103. @app.get("/make_video_slide", response_class=HTMLResponse)
  104. async def make_video_slide(request: Request, response: Response, Authorize: AuthJWT = Depends()):
  105. try:
  106. Authorize.jwt_required()
  107. except Exception as e:
  108. print(e)
  109. return '請先登入帳號'
  110. current_user = Authorize.get_jwt_subject()
  111. return templates.TemplateResponse("make_video_slide.html", {"request": request, "response": response})
  112. @app.get('/user_profile', response_class=HTMLResponse)
  113. def protected(request: Request, Authorize: AuthJWT = Depends()):
  114. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  115. Authorize.jwt_required()
  116. current_user = Authorize.get_jwt_subject()
  117. user_obj = first(db.query('SELECT * FROM users where username ="'+str(current_user)+'"'))
  118. video_num = str(first(db.query('SELECT COUNT(*) FROM history_input WHERE user_id ='+str(user_obj['id'])))['COUNT(*)'])
  119. total_sec = str(first(db.query('SELECT SUM(duration) FROM history_input where user_id='+str(user_obj['id'])))['SUM(duration)'])
  120. left_sec = user_obj['left_time']
  121. video_info_list = []
  122. statement = 'SELECT * FROM history_input WHERE user_id='+str(user_obj['id'])
  123. for row in db.query(statement):
  124. video_info_list.append({'id':row['id'],'title':row['name'],'duration':row['duration'],'url':row['url']})
  125. dic_return = {'user_info':{'userName':current_user,'email':user_obj['email'],'video_num':video_num,'total_sec':total_sec,'left_sec':user_obj['left_time']},'video_info':video_info_list}
  126. str_return = json.dumps(dic_return)
  127. return str_return
  128. # login & register page
  129. @app.get("/login", response_class=HTMLResponse)
  130. async def get_login_and_register_page(request: Request):
  131. return templates.TemplateResponse("login.html", {"request": request})
  132. @app.post("/login")
  133. async def login_for_access_token(request: Request, form_data: OAuth2PasswordRequestForm = Depends(), Authorize: AuthJWT = Depends()):
  134. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  135. user = authenticate_user(form_data.username, form_data.password)
  136. if not user:
  137. raise HTTPException(
  138. status_code=status.HTTP_401_UNAUTHORIZED,
  139. detail="Incorrect username or password",
  140. headers={"WWW-Authenticate": "Bearer"},
  141. )
  142. access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
  143. access_token = create_access_token(
  144. data={"sub": user.username}, expires_delta=access_token_expires
  145. )
  146. table = db['users']
  147. user.token = access_token
  148. table.update(dict(user), ['username'])
  149. access_token = Authorize.create_access_token(subject=user.username)
  150. refresh_token = Authorize.create_refresh_token(subject=user.username)
  151. Authorize.set_access_cookies(access_token)
  152. Authorize.set_refresh_cookies(refresh_token)
  153. #return templates.TemplateResponse("index.html", {"request": request, "msg": 'Login'})
  154. return {"access_token": access_token, "token_type": "bearer"}
  155. @app.post("/token")
  156. async def access_token(form_data: OAuth2PasswordRequestForm = Depends(), Authorize: AuthJWT = Depends()):
  157. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  158. user = authenticate_user(form_data.username, form_data.password)
  159. if not user:
  160. raise HTTPException(
  161. status_code=status.HTTP_401_UNAUTHORIZED,
  162. detail="Incorrect username or password",
  163. headers={"WWW-Authenticate": "Bearer"},
  164. )
  165. access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
  166. access_token = create_access_token(
  167. data={"sub": user.username}, expires_delta=access_token_expires
  168. )
  169. return {"access_token": access_token, "token_type": "bearer"}
  170. @app.post("/register")
  171. async def register(request: Request):
  172. user = models.User(**await request.form())
  173. user_obj = first(db.query('SELECT * FROM users where username ="'+str(user.username)+'"'))
  174. if user_obj != None:
  175. user_register(user)
  176. return templates.TemplateResponse("login.html", {'request': request,"success": True}, status_code=status.HTTP_302_FOUND)
  177. else:
  178. return {'msg':user.username+'重複,請更改'}
  179. @app.get('/logout')
  180. def logout(request: Request, Authorize: AuthJWT = Depends()):
  181. Authorize.jwt_required()
  182. Authorize.unset_jwt_cookies()
  183. return {"msg": "Successfully logout"}
  184. @app.get("/gen_avatar")
  185. async def avatar():
  186. return FileResponse('static/gen_avatar.html')
  187. @app.post("/swapFace")
  188. async def swapFace(req:models.swap_req):
  189. if 'http' not in req.imgurl:
  190. req.imgurl= 'http://'+req.imgurl
  191. try:
  192. im = Image.open(requests.get(req.imgurl, stream=True).raw)
  193. im= im.convert("RGB")
  194. except:
  195. return {'msg':"無法辨別圖片網址"+req.imgurl}
  196. name_hash = str(time.time()).replace('.','')
  197. x = threading.Thread(target=gen_avatar, args=(name_hash,req.imgurl))
  198. x.start()
  199. return {'msg':'人物生成中,請稍候'}
  200. @app.post("/uploadfile/")
  201. async def create_upload_file(file: UploadFile = File(...)):
  202. img_name = str(time.time()).replace('.','')
  203. try:
  204. if file.content_type=='video/mp4':
  205. async with aiofiles.open(img_upload_folder+img_name+'.mp4', 'wb') as out_file:
  206. content = await file.read()
  207. await out_file.write(content)
  208. return {"msg": 'www.choozmo.com:8168/'+tmp_img_sub_folder+img_name+'.mp4'}
  209. else:
  210. contents = await file.read()
  211. image = Image.open(io.BytesIO(contents))
  212. image= image.convert("RGB")
  213. image.save(img_upload_folder+img_name+'.jpg')
  214. return {"msg": 'www.choozmo.com:8168/'+tmp_img_sub_folder+img_name+'.jpg'}
  215. except Exception as e:
  216. logging.error(traceback.format_exc())
  217. return {'msg':'檔案無法使用'}
  218. @app.post("/make_anchor_video_gSlide")
  219. async def make_anchor_video_gSlide(req:models.gSlide_req,token: str = Depends(oauth2_scheme)):
  220. name, text_content, image_urls = gSlide.parse_slide_url(req.slide_url,eng=False)
  221. if len(image_urls) != len(text_content):
  222. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  223. for idx in range(len(image_urls)):
  224. if 'http' not in image_urls[idx]:
  225. image_urls[idx] = 'http://'+image_urls[idx]
  226. if req.multiLang==0:
  227. for txt in text_content:
  228. if re.search('[a-zA-Z]', txt) !=None:
  229. print('語言錯誤')
  230. return {'msg':'輸入字串不能包含英文字!'}
  231. name_hash = str(time.time()).replace('.','')
  232. for imgu in image_urls:
  233. try:
  234. if get_url_type(imgu) =='video/mp4':
  235. r=requests.get(imgu)
  236. else:
  237. im = Image.open(requests.get(imgu, stream=True).raw)
  238. im= im.convert("RGB")
  239. except:
  240. return {'msg':"無法辨別圖片網址"+imgu}
  241. user_id = get_user_id(token)
  242. proto_req = models.request_normal()
  243. proto_req.text_content = text_content
  244. proto_req.name = name
  245. proto_req.image_urls = image_urls
  246. proto_req.avatar = req.avatar
  247. proto_req.multiLang = req.multiLang
  248. video_id = save_history(proto_req,name_hash,user_id)
  249. x = threading.Thread(target=gen_video_queue, args=(name_hash,name, text_content, image_urls,int(req.avatar),req.multiLang,video_id,user_id))
  250. x.start()
  251. return {"msg":"製作影片需要時間,請您耐心等候,成果會傳送至LINE群組中"}
  252. @app.post("/make_anchor_video_long")
  253. async def make_anchor_video_long(req:models.request,token: str = Depends(oauth2_scheme)):
  254. if len(req.image_urls) != len(req.text_content):
  255. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  256. for idx in range(len(req.image_urls)):
  257. if 'http' not in req.image_urls[idx]:
  258. req.image_urls[idx] = 'http://'+req.image_urls[idx]
  259. if req.multiLang==0:
  260. for txt in req.text_content:
  261. if re.search('[a-zA-Z]', txt) !=None:
  262. print('語言錯誤')
  263. return {'msg':'輸入字串不能包含英文字!'}
  264. name_hash = str(time.time()).replace('.','')
  265. for imgu in req.image_urls:
  266. try:
  267. if get_url_type(imgu) =='video/mp4':
  268. r=requests.get(imgu)
  269. else:
  270. im = Image.open(requests.get(imgu, stream=True).raw)
  271. im= im.convert("RGB")
  272. except:
  273. return {'msg':"無法辨別圖片網址"+imgu}
  274. user_id = get_user_id(token)
  275. video_id = save_history(req,name_hash,user_id)
  276. x = threading.Thread(target=gen_video_long_queue, args=(name_hash,req.name, req.text_content, req.image_urls,int(req.avatar),req.multiLang,video_id,user_id))
  277. x.start()
  278. return {"msg":"ok"}
  279. @app.post("/make_anchor_video")
  280. async def make_anchor_video(req:models.request,token: str = Depends(oauth2_scheme)):
  281. if len(req.image_urls) != len(req.text_content):
  282. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  283. for idx in range(len(req.image_urls)):
  284. if 'http' not in req.image_urls[idx]:
  285. req.image_urls[idx] = 'http://'+req.image_urls[idx]
  286. if req.multiLang==0:
  287. for txt in req.text_content:
  288. if re.search('[a-zA-Z]', txt) !=None:
  289. print('語言錯誤')
  290. return {'msg':'輸入字串不能包含英文字!'}
  291. name_hash = str(time.time()).replace('.','')
  292. for imgu in req.image_urls:
  293. try:
  294. if get_url_type(imgu) =='video/mp4':
  295. r=requests.get(imgu)
  296. else:
  297. im = Image.open(requests.get(imgu, stream=True).raw)
  298. im= im.convert("RGB")
  299. except:
  300. return {'msg':"無法辨別圖片網址"+imgu}
  301. user_id = get_user_id(token)
  302. video_id = save_history(req,name_hash,user_id)
  303. x = threading.Thread(target=gen_video_queue, args=(name_hash,req.name, req.text_content, req.image_urls,int(req.avatar),req.multiLang,video_id,user_id))
  304. x.start()
  305. return {'msg':'ok'}
  306. @app.post("/make_anchor_video_eng")
  307. async def make_anchor_video_eng(req:models.request_eng):
  308. if len(req.image_urls) != len(req.sub_titles) or len(req.sub_titles) != len(req.text_content):
  309. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  310. for idx in range(len(req.image_urls)):
  311. if 'http' not in req.image_urls[idx]:
  312. req.image_urls[idx] = 'http://'+req.image_urls[idx]
  313. name_hash = str(time.time()).replace('.','')
  314. for imgu in req.image_urls:
  315. try:
  316. if get_url_type(imgu) =='video/mp4':
  317. r=requests.get(imgu)
  318. else:
  319. im = Image.open(requests.get(imgu, stream=True).raw)
  320. im= im.convert("RGB")
  321. except:
  322. return {'msg':"無法辨別圖片網址"+imgu}
  323. video_id = save_history(req,name_hash)
  324. x = threading.Thread(target=gen_video_queue_eng, args=(name_hash,req.name, req.text_content, req.image_urls,req.sub_titles,int(req.avatar),video_id))
  325. x.start()
  326. return {"msg":"ok"}
  327. @app.get("/history_input")
  328. async def history_input(request: Request, Authorize: AuthJWT = Depends()):
  329. Authorize.jwt_required()
  330. current_user = Authorize.get_jwt_subject()
  331. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  332. user_id = first(db.query('SELECT * FROM users where username="' + current_user +'"'))['id']
  333. statement = 'SELECT * FROM history_input WHERE user_id="'+str(user_id)+'" ORDER BY timestamp DESC LIMIT 50'
  334. logs = []
  335. for row in db.query(statement):
  336. logs.append({'id':row['id'],'name':row['name'],'text_content':row['text_content'].split(','),'link':row['link'],'image_urls':row['image_urls'].split(',')})
  337. return logs
  338. @AuthJWT.load_config
  339. def get_config():
  340. return models.Settings()
  341. @app.exception_handler(AuthJWTException)
  342. def authjwt_exception_handler(request: Request, exc: AuthJWTException):
  343. return JSONResponse(
  344. status_code=exc.status_code,
  345. content={"detail": exc.message}
  346. )
  347. def get_user_id(token):
  348. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  349. credentials_exception = HTTPException(
  350. status_code=status.HTTP_401_UNAUTHORIZED,
  351. detail="Could not validate credentials",
  352. headers={"WWW-Authenticate": "Bearer"},
  353. )
  354. try:
  355. payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
  356. username: str = payload.get("sub")
  357. if username is None:
  358. raise credentials_exception
  359. token_data = models.TokenData(username=username)
  360. except JWTError:
  361. raise credentials_exception
  362. user = get_user(username=token_data.username)
  363. if user is None:
  364. raise credentials_exception
  365. user_id = first(db.query('SELECT * FROM users where username="' + user.username+'"'))['id']
  366. return user_id
  367. def check_user_exists(username):
  368. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  369. if int(next(iter(db.query('SELECT COUNT(*) FROM AI_anchor.users WHERE username = "'+username+'"')))['COUNT(*)']) > 0:
  370. return True
  371. else:
  372. return False
  373. def get_user(username: str):
  374. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  375. if not check_user_exists(username): # if user don't exist
  376. return False
  377. user_dict = next(
  378. iter(db.query('SELECT * FROM AI_anchor.users where username ="'+username+'"')))
  379. user = models.User(**user_dict)
  380. return user
  381. def user_register(user):
  382. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  383. table = db['users']
  384. user.password = get_password_hash(user.password)
  385. table.insert(dict(user))
  386. def get_password_hash(password):
  387. return pwd_context.hash(password)
  388. def verify_password(plain_password, hashed_password):
  389. return pwd_context.verify(plain_password, hashed_password)
  390. def authenticate_user(username: str, password: str):
  391. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  392. if not check_user_exists(username): # if user don't exist
  393. return False
  394. user_dict = next(iter(db.query('SELECT * FROM AI_anchor.users where username ="'+username+'"')))
  395. user = models.User(**user_dict)
  396. if not verify_password(password, user.password):
  397. return False
  398. return user
  399. def create_access_token(data: dict, expires_delta: Optional[timedelta] = None):
  400. to_encode = data.copy()
  401. if expires_delta:
  402. expire = datetime.utcnow() + expires_delta
  403. else:
  404. expire = datetime.utcnow() + timedelta(minutes=15)
  405. to_encode.update({"exp": expire})
  406. encoded_jwt = jwt.encode(to_encode, SECRET_KEY, algorithm=ALGORITHM)
  407. return encoded_jwt
  408. def save_history(req,name_hash,user_id):
  409. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  410. log_table = db['history_input']
  411. txt_content_seperate_by_dot = ''
  412. for txt in req.text_content:
  413. txt_content_seperate_by_dot += txt+","
  414. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  415. img_urls_seperate_by_dot = ''
  416. for iurl in req.image_urls:
  417. img_urls_seperate_by_dot += iurl+","
  418. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  419. time_stamp = datetime.fromtimestamp(time.time())
  420. time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
  421. pk = log_table.insert({'name':req.name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot
  422. ,'user_id':user_id,'link':'www.choozmo.com:8168/'+video_sub_folder+name_hash+'.mp4','timestamp':time_stamp})
  423. return pk
  424. def get_url_type(url):
  425. req = urllib.request.Request(url, method='HEAD', headers={'User-Agent': 'Mozilla/5.0'})
  426. r = urllib.request.urlopen(req)
  427. contentType = r.getheader('Content-Type')
  428. return contentType
  429. def notify_group(msg):
  430. glist=['7vilzohcyQMPLfAMRloUawiTV4vtusZhxv8Czo7AJX8','WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD','1dbtJHbWVbrooXmQqc4r8OyRWDryjD4TMJ6DiDsdgsX','HOB1kVNgIb81tTB4Ort1BfhVp9GFo6NlToMQg88vEhh']
  431. for gid in glist:
  432. headers = {"Authorization": "Bearer " + gid,"Content-Type": "application/x-www-form-urlencoded"}
  433. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params={"message": msg})
  434. def gen_video_long_queue(name_hash,name,text_content, image_urls,avatar,multiLang,video_id,user_id):
  435. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  436. time_stamp = datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")
  437. txt_content_seperate_by_dot = ''
  438. for txt in text_content:
  439. txt_content_seperate_by_dot += txt+","
  440. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  441. img_urls_seperate_by_dot = ''
  442. for iurl in image_urls:
  443. img_urls_seperate_by_dot += iurl+","
  444. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  445. db['video_queue'].insert({'name_hash':name_hash,'name':name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot,'multiLang':multiLang,'avatar':avatar,'timestamp':time_stamp})
  446. while True:
  447. if first(db.query('SELECT * FROM video_queue_status'))['status'] == 1:#only one row in this table, which is the id 1 one
  448. print('another process running, leave loop')#1 means already running
  449. break
  450. if first(db.query('SELECT COUNT(1) FROM video_queue'))['COUNT(1)'] == 0:
  451. print('all finish, leave loop')
  452. break
  453. top1 = first(db.query('SELECT * FROM video_queue'))
  454. try:
  455. # if True:
  456. db.query('UPDATE video_queue_status SET status = 1;')
  457. c = rpyc.connect("localhost", 8858)
  458. c._config['sync_request_timeout'] = None
  459. remote_svc = c.root
  460. my_answer = remote_svc.call_video_gen(top1['name_hash'],top1['name'],top1['text_content'].split(','), top1['image_urls'].split(','),top1['multiLang'],top1['avatar']) # method call
  461. shutil.copy(tmp_video_dir+top1['name_hash']+'.mp4',video_dest+top1['name_hash']+'.mp4')
  462. os.remove(tmp_video_dir+top1['name_hash']+'.mp4')
  463. vid_duration = VideoFileClip(video_dest+top1['name_hash']+'.mp4').duration
  464. user_obj = first(db.query('SELECT * FROM users where id ="'+str(user_id)+'"'))
  465. line_token = user_obj['line_token'] # aa
  466. left_time = user_obj['left_time']
  467. email = user_obj['email']
  468. print('left_time is '+str(left_time))
  469. db.query('UPDATE history_input SET duration ='+str(vid_duration)+' WHERE id='+str(video_id)+';')
  470. if left_time is None:
  471. left_time = 5*60
  472. if left_time < vid_duration:
  473. msg = '您本月額度剩下'+str(left_time)+'秒,此部影片有'+str(vid_duration)+'秒, 若要繼續產生影片請至 192.168.1.106:8887/confirm_add_value?name_hash='+name_hash+' 加值'
  474. print(msg)
  475. msg =msg.encode(encoding='utf-8')
  476. mailer.send_left_not_enough(msg, email)
  477. #notify_line_user(msg, line_token)
  478. notify_group(name+":帳號餘額不足,請至email查看詳細資訊")
  479. else:
  480. left_time = left_time - vid_duration
  481. db.query('UPDATE users SET left_time ='+str(left_time)+' WHERE id='+str(user_id)+';')
  482. notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  483. #notify_line_user(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4", line_token)
  484. except Exception as e:
  485. logging.error(traceback.format_exc())
  486. print('video generation error')
  487. #notify_group('長影片錯誤-測試')
  488. db['video_queue'].delete(id=top1['id'])
  489. db.query('UPDATE video_queue_status SET status = 0')
  490. def gen_video_queue(name_hash,name,text_content, image_urls,avatar,multiLang,video_id,user_id):
  491. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  492. time_stamp = datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")
  493. txt_content_seperate_by_dot = ''
  494. for txt in text_content:
  495. txt_content_seperate_by_dot += txt+","
  496. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  497. img_urls_seperate_by_dot = ''
  498. for iurl in image_urls:
  499. img_urls_seperate_by_dot += iurl+","
  500. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  501. db['video_queue'].insert({'name_hash':name_hash,'name':name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot,'multiLang':multiLang,'avatar':avatar,'timestamp':time_stamp})
  502. while True:
  503. if first(db.query('SELECT * FROM video_queue_status'))['status'] == 1:#only one row in this table, which is the id 1 one
  504. print('another process running, leave loop')#1 means already running
  505. break
  506. if first(db.query('SELECT COUNT(1) FROM video_queue'))['COUNT(1)'] == 0:
  507. print('all finish, leave loop')
  508. break
  509. top1 = first(db.query('SELECT * FROM video_queue'))
  510. try:
  511. # if True:
  512. db.query('UPDATE video_queue_status SET status = 1;')
  513. c = rpyc.connect("localhost", 8858)
  514. c._config['sync_request_timeout'] = None
  515. remote_svc = c.root
  516. my_answer = remote_svc.call_video(top1['name_hash'],top1['name'],top1['text_content'].split(','), top1['image_urls'].split(','),top1['multiLang'],top1['avatar']) # method call
  517. shutil.copy(tmp_video_dir+top1['name_hash']+'.mp4',video_dest+top1['name_hash']+'.mp4')
  518. os.remove(tmp_video_dir+top1['name_hash']+'.mp4')
  519. vid_duration = VideoFileClip(video_dest+top1['name_hash']+'.mp4').duration
  520. user_obj = first(db.query('SELECT * FROM users where id ="'+str(user_id)+'"'))
  521. line_token = user_obj['line_token'] # aa
  522. left_time = user_obj['left_time']
  523. email = user_obj['email']
  524. print('left_time is '+str(left_time))
  525. db.query('UPDATE history_input SET duration ='+str(vid_duration)+' WHERE id='+str(video_id)+';')
  526. if left_time is None:
  527. left_time = 5*60
  528. if left_time < vid_duration:
  529. msg = '您本月額度剩下'+str(left_time)+'秒,此部影片有'+str(vid_duration)+'秒, 若要繼續產生影片請至 192.168.1.106:8887/confirm_add_value?name_hash='+name_hash+' 加值'
  530. print(msg)
  531. msg =msg.encode(encoding='utf-8')
  532. mailer.send_left_not_enough(msg, email)
  533. notify_group(msg)
  534. #notify_line_user(msg, line_token)
  535. else:
  536. left_time = left_time - vid_duration
  537. db.query('UPDATE users SET left_time ='+str(left_time)+' WHERE id='+str(user_id)+';')
  538. notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  539. #notify_line_user(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4", line_token)
  540. except Exception as e:
  541. logging.error(traceback.format_exc())
  542. print('video generation error')
  543. notify_group('影片錯誤')
  544. db['video_queue'].delete(id=top1['id'])
  545. db.query('UPDATE video_queue_status SET status = 0')
  546. def gen_video_queue_eng(name_hash,name,text_content, image_urls,sub_titles,avatar,video_id):
  547. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  548. time_stamp = datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")
  549. txt_content_seperate_by_dot = ''
  550. for txt in text_content:
  551. txt_content_seperate_by_dot += txt+","
  552. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  553. img_urls_seperate_by_dot = ''
  554. for iurl in image_urls:
  555. img_urls_seperate_by_dot += iurl+","
  556. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  557. subtitles_seperate_by_dot = ''
  558. for sub in sub_titles:
  559. subtitles_seperate_by_dot += sub+","
  560. subtitles_seperate_by_dot = subtitles_seperate_by_dot[:-1]
  561. db['video_queue'].insert({'name_hash':name_hash,'name':name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot,'subtitles':subtitles_seperate_by_dot,'avatar':avatar,'timestamp':time_stamp})
  562. while True:
  563. if first(db.query('SELECT * FROM video_queue_status'))['status'] == 1:#only one row in this table, which is the id 1 one
  564. print('another process running, leave loop')
  565. break
  566. if first(db.query('SELECT COUNT(1) FROM video_queue'))['COUNT(1)'] == 0:
  567. print('all finish, leave loop')
  568. break
  569. top1 = first(db.query('SELECT * FROM video_queue'))
  570. try:
  571. db.query('UPDATE video_queue_status SET status = 1;')
  572. c = rpyc.connect("localhost", 8858)
  573. c._config['sync_request_timeout'] = None
  574. remote_svc = c.root
  575. my_answer = remote_svc.call_video_eng(top1['name_hash'],top1['name'],top1['text_content'].split(','), top1['image_urls'].split(','),top1['subtitles'].split(','),top1['avatar']) # method call
  576. shutil.copy(tmp_video_dir+top1['name_hash']+'.mp4',video_dest+top1['name_hash']+'.mp4')
  577. os.remove(tmp_video_dir+top1['name_hash']+'.mp4')
  578. notify_group(name+"(ENG)的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  579. except:
  580. print('video generation error')
  581. notify_group('影片錯誤')
  582. db['video_queue'].delete(id=top1['id'])
  583. db.query('UPDATE video_queue_status SET status = 0')
  584. def gen_avatar(name_hash, imgurl):
  585. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  586. db['avatar_queue'].insert({'name_hash':name_hash,'imgurl':imgurl})
  587. while True:
  588. statement = 'SELECT * FROM avatar_service_status'#only one row in this table, which is the id 1 one
  589. status = -1
  590. for row in db.query(statement):
  591. status = row['status']
  592. if status == 1:
  593. print('leave process loop')
  594. break
  595. statement = 'SELECT * FROM avatar_queue'
  596. works = []
  597. for row in db.query(statement):
  598. works.append({'id':row['id'],'name_hash':row['name_hash'],'imgurl':row['imgurl']})
  599. if len(works)==0:
  600. print('leave process loop')
  601. break
  602. try:
  603. statement = 'UPDATE avatar_service_status SET status = 1 WHERE id=1;'
  604. db.query(statement)
  605. name_hash = works[0]['name_hash']
  606. imgurl = works[0]['imgurl']
  607. c = rpyc.connect("localhost", 8868)
  608. c._config['sync_request_timeout'] = None
  609. remote_svc = c.root
  610. my_answer = remote_svc.call_avatar(name_hash,imgurl) # method call
  611. shutil.copy(tmp_avatar_dir+name_hash+'.mp4',avatar_dest+name_hash+'.mp4')
  612. os.remove(tmp_avatar_dir+name_hash+'.mp4')
  613. except:
  614. print('gen error')
  615. notify_group('無法辨識人臉')
  616. db['avatar_queue'].delete(id=works[0]['id'])
  617. statement = 'UPDATE avatar_service_status SET status = 0 WHERE id=1;' #only one row in this table, which id 1 one
  618. db.query(statement)
  619. def call_voice(text):
  620. c = rpyc.connect("localhost", 8868)
  621. c._config['sync_request_timeout'] = None
  622. remote_svc = c.root
  623. my_answer = remote_svc.call_avatar(text) # method call
  624. src_path = '/home/ming/AI_Anchor/OpenshotService/speech.mp3'
  625. shutil.copy(src_path,'/home/ming/speech.mp3')
  626. os.remove(src_path)
  627. @app.get("/make_voice")
  628. async def make_voice(text):
  629. x = threading.Thread(target=call_voice, args=(text))
  630. x.start()