FFMPEG_jll.ffmpegMethod
ffmpeg(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of ffmpeg.

Example

ffmpeg() do exe
    run(`$exe $arguments`)
end
Julia 1.3
FFMPEG_jll.ffmpegMethod
ffmpeg(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of ffmpeg. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(ffmpeg()) $arguments`)
Julia 1.6
FFMPEG_jll.ffprobeMethod
ffprobe(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of ffprobe.

Example

ffprobe() do exe
    run(`$exe $arguments`)
end
Julia 1.3
FFMPEG_jll.ffprobeMethod
ffprobe(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of ffprobe. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(ffprobe()) $arguments`)
Julia 1.6
FFMPEG_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.