nrotem commited on
Commit
ee9492d
·
1 Parent(s): 4c38de2
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -21,6 +21,8 @@ def combine_video_subtitle(video_file, subtitle_file):
21
  ]
22
 
23
  subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
 
 
24
 
25
  return output_file
26
 
 
21
  ]
22
 
23
  subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
24
+ print("ffmpeg stdout:", process.stdout.decode())
25
+ print("ffmpeg stderr:", process.stderr.decode())
26
 
27
  return output_file
28