ffmpeg_exec {ari} | R Documentation |
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")'
## Not run:
if (have_ffmpeg_exec()) {
ffmpeg_exec()
}
## End(Not run)