Parcourir la source

add history link

ming il y a 3 ans
Parent
commit
0a933b623c
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      main.py

+ 2 - 2
main.py

@@ -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()