|
@@ -117,7 +117,7 @@ async def make_anchor_video_v2(req:request):
|
|
|
for txt in req.text_content:
|
|
|
if re.search('[a-zA-Z]', txt) !=None:
|
|
|
return {'msg':'輸入字串不能包含英文字!'}
|
|
|
- name_hash =
|
|
|
+ name_hash = str(time.time()).replace('.','')
|
|
|
for imgu in req.image_urls:
|
|
|
try:
|
|
|
if get_url_type(imgu) =='video/mp4':
|
|
@@ -128,7 +128,7 @@ async def make_anchor_video_v2(req:request):
|
|
|
im= im.convert("RGB")
|
|
|
except:
|
|
|
return {'msg':"無法辨別圖片網址"+imgu}
|
|
|
- name_hash = str(time.time()).replace('.','')
|
|
|
+
|
|
|
save_history(req,name_hash)
|
|
|
x = threading.Thread(target=anchor_video_v2, args=(name_hash,req.name, req.text_content, req.image_urls,int(req.avatar),req.client_id))
|
|
|
x.start()
|