thealphamerc commited on
Commit
fea35c3
·
1 Parent(s): 003983b

Fix file not found issue

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -80,10 +80,9 @@ def transcribe(inputs, microphone):
80
  srtFilename = os.path.join("output/SrtFiles", inputs.split(
81
  '/')[-1].split('.')[0]+'.srt')
82
 
83
- # --------------------------------------------------- Clear the file ---------------------------------------------------
84
- with open(srtFilename, 'w', encoding='utf-8') as srtFile:
85
- srtFile.seek(0)
86
- srtFile.truncate()
87
 
88
  # --------------------------------------------------- Write the file ---------------------------------------------------
89
  segments = result['segments']
 
80
  srtFilename = os.path.join("output/SrtFiles", inputs.split(
81
  '/')[-1].split('.')[0]+'.srt')
82
 
83
+ # --------------------------------------------------- Clear the file if exists ---------------------------------------------------
84
+ if os.path.exists(srtFilename):
85
+ os.remove(srtFilename)
 
86
 
87
  # --------------------------------------------------- Write the file ---------------------------------------------------
88
  segments = result['segments']