Get Path to ffmpeg Executable
ffmpeg_exec(quote = FALSE) have_ffmpeg_exec()
quote | should |
---|
The path to the ffmpeg
executable, or an error.
This looks using `Sys.getenv("ffmpeg")` and `Sys.which("ffmpeg")` to find `ffmpeg`. If `ffmpeg` is not in your PATH, then please set the path to `ffmpeg` using `Sys.setenv(ffmpeg = "/path/to/ffmpeg")`
if (FALSE) { if (have_ffmpeg_exec()) { ffmpeg_exec() } }