devusman commited on
Commit
3c55f88
·
1 Parent(s): ca80fca
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -92,6 +92,9 @@ def convert_media():
92
  shutil.rmtree(temp_dir)
93
  print(f"[{time.strftime('%H:%M:%S')}] Cleaned up temp directory: {temp_dir}")
94
 
 
 
 
95
 
96
  if __name__ == '__main__':
97
  # For local development/testing of the FFmpeg service
 
92
  shutil.rmtree(temp_dir)
93
  print(f"[{time.strftime('%H:%M:%S')}] Cleaned up temp directory: {temp_dir}")
94
 
95
+ @ffmpeg_app.route('/', methods=['GET'])
96
+ def index():
97
+ return "FFmpeg Conversion Service is running."
98
 
99
  if __name__ == '__main__':
100
  # For local development/testing of the FFmpeg service