Update app.py
Browse files
app.py
CHANGED
|
@@ -108,7 +108,7 @@ def blur_video(input_path: str) -> str:
|
|
| 108 |
cmd = [
|
| 109 |
"ffmpeg", "-y", "-i", input_path,
|
| 110 |
"-filter_complex", filter_graph,
|
| 111 |
-
"-c:v", "libx264", "-preset", "
|
| 112 |
"-c:a", "copy", output
|
| 113 |
]
|
| 114 |
log("Blurring video")
|
|
|
|
| 108 |
cmd = [
|
| 109 |
"ffmpeg", "-y", "-i", input_path,
|
| 110 |
"-filter_complex", filter_graph,
|
| 111 |
+
"-c:v", "libx264", "-preset", "veryfast", "-crf", "23",
|
| 112 |
"-c:a", "copy", output
|
| 113 |
]
|
| 114 |
log("Blurring video")
|