FFMPEG
Browse files- funciones/motion.py +3 -3
funciones/motion.py
CHANGED
@@ -10,11 +10,11 @@ async def motion(imagen):
|
|
10 |
|
11 |
print("Esto es imagen en monomotion: ", imagen)
|
12 |
|
13 |
-
ffmpeg_path = "/usr/bin/ffmpeg"
|
14 |
|
15 |
ffmpeg_command = [
|
16 |
-
|
17 |
-
f'{ffmpeg_path}', '-y',
|
18 |
'-loop', '1',
|
19 |
'-i',
|
20 |
f'{imagen}',
|
|
|
10 |
|
11 |
print("Esto es imagen en monomotion: ", imagen)
|
12 |
|
13 |
+
#ffmpeg_path = "/usr/bin/ffmpeg"
|
14 |
|
15 |
ffmpeg_command = [
|
16 |
+
'ffmpeg', '-y',
|
17 |
+
#f'{ffmpeg_path}', '-y',
|
18 |
'-loop', '1',
|
19 |
'-i',
|
20 |
f'{imagen}',
|