|
@@ -442,10 +442,10 @@ def srt_to_csv(srt_file):
|
|
|
with open("output/csv_produce/test.csv", 'w', newline='',encoding="big5") as csvfile:
|
|
|
# 建立 CSV 檔寫入器
|
|
|
writer = csv.writer(csvfile)
|
|
|
- j=0
|
|
|
+ writer.writerow(["序號","開始時間","結束時間","字幕內容"])
|
|
|
for context in subs:
|
|
|
writer.writerow([context.index, context.start,context.end, context.text])
|
|
|
- j+=1
|
|
|
+
|
|
|
return
|
|
|
|
|
|
def csv_to_text(csv_file,text_font):
|
|
@@ -535,8 +535,9 @@ def vedio_to_csv(sound_file):
|
|
|
srt_to_csv(sound_srt_file)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
- down=text_to_short_vedio_create()
|
|
|
- if down:
|
|
|
- vedio_to_csv("output/no_captions/test.mp4")
|
|
|
+ # down=text_to_short_vedio_create()
|
|
|
+ # if down:
|
|
|
+ # vedio_to_csv("output/no_captions/test.mp4")
|
|
|
+ vedio_to_csv("output/no_captions/test.mp4")
|
|
|
|
|
|
|