main1.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. import openshot
  2. import re
  3. from PIL import Image,ImageDraw,ImageFont
  4. import pandas as pd
  5. import os
  6. import cv2
  7. import numpy as np
  8. # import moviepy.editor as mp
  9. import time
  10. import pysrt
  11. import shutil
  12. import rpyc
  13. import random
  14. import string
  15. import requests
  16. from bs4 import BeautifulSoup
  17. import zipfile
  18. import csv
  19. from datetime import datetime
  20. def cKey(r,g,b,fuzz):
  21. col=openshot.Color()
  22. col.red=openshot.Keyframe(r)
  23. col.green=openshot.Keyframe(g)
  24. col.blue=openshot.Keyframe(b)
  25. return openshot.ChromaKey(col, openshot.Keyframe(fuzz))
  26. def video_writer_init(path):
  27. w = openshot.FFmpegWriter(path)
  28. w.SetAudioOptions(True, "aac", 44100, 2, openshot.LAYOUT_STEREO, 3000000)
  29. w.SetVideoOptions(True, "libx264", openshot.Fraction(30000, 1000), 1280, 720,
  30. openshot.Fraction(1, 1), False, False, 3000000)
  31. return w
  32. def video_photo_clip(video=None,layer=None, position=None, end=None
  33. ,scale_x=1,scale_y=1,location_x=0,location_y=0,ck=None,audio=True):
  34. clip = openshot.Clip(video)
  35. clip.Layer(layer)
  36. clip.Position(position)
  37. clip.End(end)
  38. clip.scale_x=openshot.Keyframe(scale_x)
  39. clip.scale_y=openshot.Keyframe(scale_y)
  40. clip.location_x=openshot.Keyframe(location_x)
  41. clip.location_y=openshot.Keyframe(location_y)
  42. if ck!=None:
  43. clip.AddEffect(ck)
  44. if audio==True:
  45. clip.has_audio=openshot.Keyframe(1)
  46. else:
  47. clip.has_audio=openshot.Keyframe(0)
  48. return clip
  49. def trim_punctuation(s):
  50. pat_block = u'[^\u4e00-\u9fff0-9a-zA-Z]+'
  51. pattern = u'([0-9]+{0}[0-9]+)|{0}'.format(pat_block)
  52. res = re.sub(pattern, lambda x: x.group(1) if x.group(1) else u" " ,s)
  53. return res
  54. def randomString(stringLength=10):
  55. letters = string.ascii_lowercase
  56. return ''.join(random.choice(letters) for i in range(stringLength))
  57. def mp3_to_anchor(fname):
  58. conn = rpyc.classic.connect("192.168.192.221",18812)
  59. fr=open(fname,'rb')
  60. ropen = conn.builtins.open
  61. randname=randomString(10)
  62. finalname=randomString(10)
  63. fw=ropen('/tmp/'+randname+'.mp4','wb')
  64. fw.write(fr.read())
  65. fw.close()
  66. ros = conn.modules.os
  67. ros.system('/root/to_video/p9.sh '+randname+".mp4 "+finalname+".mp4")
  68. return 'http://192.168.192.221/video/'+finalname+'.mp4'
  69. # conn.execute('import os')
  70. def download_mp4(url):
  71. headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36'}
  72. with open('input_self/AI_girl/ai_spokesgirl.mp4','wb') as f:
  73. r = requests.get(url, headers=headers, stream=True)
  74. if r.status_code == 404:
  75. return False
  76. for chunk in r.iter_content(chunk_size=1024):
  77. if chunk:
  78. f.write(chunk)
  79. return True
  80. def text_to_short_vedio_create(read_csv_use="導盲犬協會.csv",pwd_use="導盲犬協會影片素材2/",op="input_self/LOGO_OP_4.mp4",ed="input_self/LOGO_ED.mp4",bg="input_self/xchoozmo_long.mp4",input_zip="input/input_data.zip"):
  81. files=os.listdir("input/")
  82. print(files)
  83. for i in files:
  84. if i[-4:]==".zip":
  85. input_zip="input/"+i
  86. break
  87. try:
  88. with zipfile.ZipFile(input_zip, 'r') as zf:
  89. for fn in zf.namelist():
  90. right_fn = fn.encode('cp437').decode('big5') # 將檔名正確編碼
  91. check_p=right_fn.split("/")
  92. try:
  93. if right_fn[-1]=="/" :
  94. os.mkdir("input/"+right_fn[:-1])
  95. pwd_use=right_fn
  96. break
  97. if len(check_p)==2:
  98. os.mkdir("input/"+check_p[0])
  99. pwd_use=check_p[0]+"/"
  100. break
  101. except:
  102. print("裡面應該只包含zip檔案,請只留下zip")
  103. return
  104. except:
  105. print("裡面無檔案,請放入zip")
  106. return
  107. read_csv_use = 0
  108. with zipfile.ZipFile(input_zip, 'r') as zf:
  109. for fn in zf.namelist():
  110. right_fn = fn.encode('cp437').decode('big5') # 將檔名正確編碼
  111. check_p=right_fn.split("/")
  112. if right_fn[-1]=="/" :
  113. continue
  114. if right_fn[-4:]==".csv" :
  115. read_csv_use = right_fn
  116. with open("input/"+right_fn, 'wb') as output_file: # 建立並開啟新檔案
  117. with zf.open(fn, 'r') as origin_file: # 開啟原檔案
  118. shutil.copyfileobj(origin_file, output_file) # 將原檔案內容複製到新檔案
  119. # 去背參數
  120. # ck=cKey(0,254,0,270)
  121. ck=cKey(0,255,0,320)
  122. ck_anchor=None
  123. #時間
  124. time_= 0
  125. csv_use=pd.read_csv("input/"+read_csv_use)
  126. csv_use=csv_use.dropna(how='all')
  127. csv_use.reset_index(inplace=True)
  128. t1 = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  129. t1.Open()
  130. frames = 0
  131. for i in range(len(csv_use)):
  132. # for i in range(3):
  133. pwd_=str(csv_use.loc[i,['音檔']].values[0])
  134. locals()['anchor_music_t'+str(i)] = openshot.FFmpegReader("input/"+pwd_use+pwd_)
  135. locals()['anchor_music_t'+str(i)].Open()
  136. locals()['anchor_music_t'+str(i)+'clip'] = video_photo_clip(video=locals()['anchor_music_t'+str(i)],layer=3,scale_x=0,scale_y=0,
  137. location_x=0,location_y=0,position=time_, end=locals()['anchor_music_t'+str(i)].info.duration,ck=ck_anchor,audio=True)
  138. t1.AddClip(locals()['anchor_music_t'+str(i)+'clip'])
  139. locals()['anchor_music_t'+str(i)].Close()
  140. time_+=locals()['anchor_music_t'+str(i)].info.duration
  141. w = video_writer_init("input_self/AI_girl/%s.mp4"%('anchor_music_t'))
  142. w.Open()
  143. frames = int(t1.info.fps)*int(time_)
  144. for n in range(frames):
  145. f=t1.GetFrame(n)
  146. w.WriteFrame(f)
  147. w.Close()
  148. t1.Close()
  149. fname=mp3_to_anchor("input_self/AI_girl/%s.mp4"%('anchor_music_t'))
  150. # print(fname)
  151. time.sleep(300)
  152. while True:
  153. result = download_mp4(fname)
  154. if result:
  155. break
  156. print('等待...')
  157. time.sleep(60)
  158. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  159. t.Open()
  160. ck=cKey(0,255,0,320)
  161. ck_anchor=None
  162. #時間
  163. time_= 0
  164. csv_use=pd.read_csv("input/"+read_csv_use)
  165. csv_use=csv_use.dropna(how='all')
  166. csv_use.reset_index(inplace=True)
  167. anchor_op = openshot.FFmpegReader(op)
  168. anchor_op.Open()
  169. anchor_clip_op = video_photo_clip(video=anchor_op,layer=2,scale_x=1,scale_y=1,
  170. location_x=0,location_y=0,position=time_, end=anchor_op.info.duration,ck=ck_anchor,audio=True)
  171. t.AddClip(anchor_clip_op)
  172. anchor_op.Close()
  173. time_+=anchor_op.info.duration
  174. start_time = time_
  175. for i in range(len(csv_use)):
  176. # for i in range(3):
  177. pwd_=str(csv_use.loc[i,['音檔']].values[0])
  178. layer_choose = 4
  179. location_x_choose=-0.04
  180. location_y_choose=-0.04
  181. locals()['anchor_music'+str(i)] = openshot.FFmpegReader("input/"+pwd_use+pwd_)
  182. locals()['anchor_music'+str(i)].Open()
  183. locals()['anchor_music'+str(i)+'clip'] = video_photo_clip(video=locals()['anchor_music'+str(i)],layer=3,scale_x=0,scale_y=0,
  184. location_x=0,location_y=0,position=time_, end=locals()['anchor_music'+str(i)].info.duration,ck=ck_anchor,audio=True)
  185. t.AddClip(locals()['anchor_music'+str(i)+'clip'])
  186. locals()['anchor_music'+str(i)].Close()
  187. if str(csv_use.loc[i,['是否要場景']].values[0])=="是":
  188. scale_x_use = 0.59
  189. scale_y_use = 0.59
  190. else:
  191. scale_x_use = 1
  192. scale_y_use = 1
  193. layer_choose = 8
  194. location_x_choose=0
  195. location_y_choose=0
  196. locals()['anchor_black'+str(i)] = openshot.QtImageReader("input_self/black.jpg")
  197. locals()['anchor_black'+str(i)].Open()
  198. locals()['anchor_black'+str(i)+'clip'] = video_photo_clip(video=locals()['anchor_black'+str(i)],layer=7,scale_x=scale_x_use,scale_y=scale_y_use,
  199. location_x=0,location_y=0,position=time_, end=locals()['anchor_music'+str(i)].info.duration,ck=ck_anchor,audio=False)
  200. t.AddClip(locals()['anchor_black'+str(i)+'clip'])
  201. locals()['anchor_black'+str(i)].Close()
  202. choose=str(csv_use.loc[i,['素材']].values[0]).split(".")[-1]
  203. pwd_p1=str(csv_use.loc[i,['素材']].values[0])
  204. if choose == 'mp4':
  205. locals()['anchor'+str(i)] = openshot.FFmpegReader("input/"+pwd_use+pwd_p1)
  206. locals()['anchor'+str(i)].Open()
  207. locals()['anchor'+str(i)+'clip'] = video_photo_clip(video=locals()['anchor'+str(i)],layer=layer_choose,scale_x=scale_x_use,scale_y=scale_y_use,
  208. location_x=location_x_choose,location_y=location_y_choose,position=time_, end=locals()['anchor_music'+str(i)].info.duration,ck=ck_anchor,audio=False)
  209. t.AddClip(locals()['anchor'+str(i)+'clip'])
  210. locals()['anchor'+str(i)].Close()
  211. elif choose == 'jpg' or choose == 'png':
  212. locals()['anchor'+str(i)] = openshot.QtImageReader("input/"+pwd_use+pwd_p1)
  213. locals()['anchor'+str(i)].Open()
  214. locals()['anchor'+str(i)+'clip'] = video_photo_clip(video=locals()['anchor'+str(i)],layer=layer_choose,scale_x=scale_x_use,scale_y=scale_y_use,
  215. location_x=location_x_choose,location_y=location_y_choose,position=time_, end=locals()['anchor_music'+str(i)].info.duration,ck=ck_anchor,audio=False)
  216. t.AddClip(locals()['anchor'+str(i)+'clip'])
  217. locals()['anchor'+str(i)].Close()
  218. time_+=locals()['anchor_music'+str(i)].info.duration
  219. locals()['anchor_bg'] = openshot.FFmpegReader(bg)
  220. locals()['anchor_bg'].Open()
  221. locals()['anchor_clip_bg'] = video_photo_clip(video=locals()['anchor_bg'],layer=5,scale_x=1,scale_y=1,
  222. location_x=0,location_y=0,position=start_time, end=time_-start_time,ck=ck,audio=False)
  223. t.AddClip(locals()['anchor_clip_bg'])
  224. locals()['anchor_bg'].Close()
  225. locals()['anchor_ad'] = openshot.FFmpegReader('input_self/AI_girl/ai_spokesgirl.mp4')
  226. locals()['anchor_ad'].Open()
  227. locals()['anchor_clip_ad'] = video_photo_clip(video=locals()['anchor_ad'],layer=6,scale_x=0.8,scale_y=0.8,
  228. location_x=0.38,location_y=0.35,position=start_time , end=time_-start_time,ck=ck,audio=False)
  229. t.AddClip(locals()['anchor_clip_ad'])
  230. locals()['anchor_ad'].Close()
  231. anchor_ed = openshot.FFmpegReader(ed)
  232. anchor_ed.Open()
  233. anchor_clip_ed = video_photo_clip(video=anchor_ed,layer=2,scale_x=1,scale_y=1,
  234. location_x=0,location_y=0,position=time_, end=anchor_ed.info.duration,ck=ck_anchor,audio=True)
  235. time_+=anchor_ed.info.duration
  236. t.AddClip(anchor_clip_ed)
  237. anchor_ed.Close()
  238. w = video_writer_init("output/no_captions/test.mp4")
  239. w.Open()
  240. frames = int(t.info.fps)*int(time_)
  241. for n in range(frames):
  242. f=t.GetFrame(n)
  243. w.WriteFrame(f)
  244. t.Close()
  245. w.Close()
  246. shutil.rmtree('input')
  247. os.mkdir('input')
  248. shutil.rmtree('input_self/AI_girl')
  249. os.mkdir('input_self/AI_girl')
  250. #文字轉圖片
  251. def txt2image(content, save_target,lang='zh',size=26,fon="input_self/font/DFT_B7.ttc"):
  252. unicode_text = trim_punctuation(content)
  253. font = ''
  254. if lang=='zh':
  255. font = ImageFont.truetype(font=fon, size=size)
  256. else :
  257. font = ImageFont.truetype(font="input_self/font/arial.ttf", size=size)
  258. W, H = (1280,500)
  259. canvas = Image.new('RGB', (W, H), "#00FF00")
  260. draw = ImageDraw.Draw(canvas)
  261. text= content
  262. if "\n" in text:
  263. w, h = draw.textsize(text.split("\n")[0],font = font)
  264. #draw.text(((W-w)/2,0), text[0:18],'black', font)
  265. text_border(draw,(W-w)/2,0,text.split("\n")[0],font,'black','white')
  266. w, h = draw.textsize(text.split("\n")[1],font = font)
  267. #draw.text(((W-w)/2,h+2), text[18:],'black', font)
  268. text_border(draw,(W-w)/2,h+2,text.split("\n")[1],font,'black','white')
  269. else:
  270. w, h = draw.textsize(content,font = font)
  271. #draw.text(((W-w)/2,0), text,'black', font)
  272. text_border(draw,(W-w)/2,0,text,font,'black','white')
  273. canvas.save(save_target, "PNG")
  274. def text_border(draw,x,y,text,font,shadowcolor,fillcolor):
  275. draw.text((x-1, y), text, font=font, fill=shadowcolor)
  276. draw.text((x+1, y), text, font=font, fill=shadowcolor)
  277. draw.text((x, y-1), text, font=font, fill=shadowcolor)
  278. draw.text((x, y+1), text, font=font, fill=shadowcolor)
  279. draw.text((x-1, y+1), text, font=font, fill=shadowcolor)
  280. draw.text((x+1, y-1), text, font=font, fill=shadowcolor)
  281. draw.text((x-1, y-1), text, font=font, fill=shadowcolor)
  282. draw.text((x+1, y+1), text, font=font, fill=shadowcolor)
  283. # thicker border
  284. draw.text((x-2, y-2), text, font=font, fill=shadowcolor)
  285. draw.text((x+2, y-2), text, font=font, fill=shadowcolor)
  286. draw.text((x-2, y+2), text, font=font, fill=shadowcolor)
  287. draw.text((x+2, y+2), text, font=font, fill=shadowcolor)
  288. # now draw the text over it
  289. draw.text((x, y), text, font=font, fill=fillcolor)
  290. def srt_to_csv(srt_file):
  291. subs = pysrt.open(srt_file)
  292. # csv_file = srt_file.split('.')[0] + ".csv"
  293. with open("output/csv_produce/test.csv", 'w', newline='',encoding="big5") as csvfile:
  294. # 建立 CSV 檔寫入器
  295. writer = csv.writer(csvfile)
  296. j=0
  297. for context in subs:
  298. writer.writerow([context.index, context.start,context.end, context.text])
  299. j+=1
  300. return
  301. def csv_to_text(csv_file,text_font):
  302. text_form = []
  303. with open(csv_file, newline='',encoding="big5") as csvfile:
  304. # 讀取 CSV 檔案內容
  305. rows = csv.reader(csvfile)
  306. # 以迴圈輸出每一列
  307. for row in rows:
  308. start = datetime.strptime(row[1], "%H:%M:%S,%f")
  309. end = datetime.strptime(row[2], "%H:%M:%S,%f") - datetime.strptime(row[1], "%H:%M:%S,%f")
  310. end_timeStamp=end.seconds+0.000001*end.microseconds
  311. start_timeStamp=start.minute*60+start.second+ 0.000001*start.microsecond
  312. text_form.append({'text':row[3],'start':start_timeStamp,'end':end_timeStamp,'size':36,'font':text_font})
  313. return text_form
  314. def text_to_short_vedio(mp4_file ,sound_file,output_filename,text_font):
  315. t = openshot.Timeline(1280, 720, openshot.Fraction(30000, 1000), 44100, 2, openshot.LAYOUT_STEREO)
  316. t.Open()
  317. # 去背參數
  318. ck = cKey(0, 254, 0, 270)
  319. ck_anchor = cKey(0, 255, 0, 320)
  320. anchor = openshot.FFmpegReader(mp4_file)
  321. anchor.Open()
  322. anchor_clip = video_photo_clip(video=anchor,layer=2,scale_x=1,scale_y=1,
  323. location_x=0,location_y=0,position=0, end=anchor.info.duration,audio=True)
  324. t.AddClip(anchor_clip)
  325. anchor.Close()
  326. number = 0
  327. sound_srt_file = ""
  328. #音檔自動產生srt(逐字稿)
  329. if ".srt" in sound_file:
  330. sound_srt_file = sound_file
  331. elif not sound_file is None:
  332. cmd = "autosub -S zh-TW -D zh-TW " + sound_file
  333. os.system(cmd)
  334. sound_srt_file = sound_file.split('.')[0] + ".srt"
  335. csv_file = srt_to_csv(sound_srt_file)
  336. text_form = csv_to_text(csv_file,text_font)
  337. print(sound_srt_file)
  338. #開啟srt檔
  339. try:
  340. number = 0
  341. for text_tmp in text_form:
  342. file_name = "input_self/tmp/save_target_" + str(number) + ".png"
  343. txt2image(text_tmp['text'], file_name,lang='zh',size = text_tmp['size'],fon = text_tmp['font'])
  344. exec('text_anchor_{} = openshot.QtImageReader("input_self/tmp/save_target_{}.png")'.format(number,number))
  345. exec('text_anchor_{}.Open()'.format(number))
  346. exec('text_anchor_{}.Open()'.format(number))
  347. exec('text_anchor_clip_{} = video_photo_clip(video=text_anchor_{},layer=4,scale_x=1,scale_y=1,\
  348. location_x=0,location_y=0.78,position=text_tmp["start"], end=text_tmp["end"],ck=ck_anchor,audio=True)'.format(number,number))
  349. exec('t.AddClip(text_anchor_clip_{})'.format(number))
  350. exec('text_anchor_{}.Close()'.format(number))
  351. number = number+1
  352. except:
  353. print("無法開啟srt檔案(字幕產生失敗)")
  354. w = video_writer_init(output_filename)
  355. w.Open()
  356. frames = int(t.info.fps)*int(anchor.info.duration)
  357. for n in range(frames):
  358. f=t.GetFrame(n)
  359. w.WriteFrame(f)
  360. t.Close()
  361. w.Close()
  362. # 刪除暫存檔案
  363. # shutil.rmtree('input_self/tmp')
  364. # os.mkdir('input_self/tmp')
  365. # shutil.rmtree('input_self/tmp1')
  366. # os.mkdir('input_self/tmp1')
  367. def vedio_to_csv(sound_file):
  368. cmd = "autosub -S zh-TW -D zh-TW " + sound_file
  369. os.system(cmd)
  370. sound_srt_file = sound_file.split('.')[0] + ".srt"
  371. srt_to_csv(sound_srt_file)
  372. if __name__ == '__main__':
  373. text_to_short_vedio_create()
  374. vedio_to_csv("output/no_captions/test.mp4")