tweak
Browse files
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
|