summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/app/search/video.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/app/search/video.py b/cli/app/search/video.py
index c87edb5..c5ef8ce 100644
--- a/cli/app/search/video.py
+++ b/cli/app/search/video.py
@@ -7,7 +7,7 @@ from app.settings import app_cfg
def export_video(fp_frames, fps=30):
print("Exporting video...")
cmd = [
- '/home/lens/bin/ffmpeg',
+ '/usr/bin/ffmpeg',
'-hide_banner',
'-y', # '-v', 'quiet',
'-r', str(fps),
@@ -26,7 +26,7 @@ def export_video_final(fp_frames, fp_out, fps=25):
print("Exporting video...")
cmd = [
- '/home/lens/bin/ffmpeg',
+ '/usr/bin/ffmpeg',
'-hide_banner',
'-y', # '-v', 'quiet',
'-r', str(fps),