Don't make the missing movie.sh file fatal

This commit is contained in:
Martijn Braam
2024-12-23 15:40:34 +01:00
parent a9f6291c3e
commit 1b5a871641

View File

@@ -176,8 +176,7 @@ setup(MPPipeline *pipeline, const void *data)
state_proc.mode_focus = AAA_DISABLED; state_proc.mode_focus = AAA_DISABLED;
if (!mp_process_find_processor(movie_script, "movie.sh")) { if (!mp_process_find_processor(movie_script, "movie.sh")) {
printf("movie.sh not found\n"); fprintf(stderr,"movie.sh not found, video pipeline disabled\n");
exit(1);
} }
setup_capture(); setup_capture();
} }