From c695410e44ad09937daf530c949fbaf5f903d7e6 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Tue, 28 Nov 2023 15:23:43 -0500 Subject: [PATCH] try remove write refs --- src/encoding.jl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/encoding.jl b/src/encoding.jl index 5bac1bc5..72190b33 100644 --- a/src/encoding.jl +++ b/src/encoding.jl @@ -468,7 +468,7 @@ occurred. - `thread_count::Union{Nothing, Int} = nothing`: The number of threads the codec is allowed to use, or `nothing` for default codec behavior. Defaults to `nothing`. -See also: [`write`](@ref), [`close_video_out!`](@ref) +See also: [`close_video_out!`](@ref) """ open_video_out(s::AbstractString, args...; kwargs...) = VideoWriter(s, args...; kwargs...) @@ -494,8 +494,7 @@ Encoding options, restrictions on frame size and element type, and other details are described in [`open_video_out`](@ref). All keyword arguments are passed to `open_video_out`. -See also: [`open_video_out`](@ref), [`write`](@ref), -[`close_video_out!`](@ref) +See also: [`open_video_out`](@ref), [`close_video_out!`](@ref) """ function save(filename::String, imgstack; kwargs...) open_video_out(filename, first(imgstack); kwargs...) do writer