From f1bc65470b1e93b04392ab6d3cc095068a10723a Mon Sep 17 00:00:00 2001 From: Alexander Plavin Date: Thu, 23 May 2024 13:46:17 -0600 Subject: [PATCH] don't remove underlying VideoStream file when doing save() --- src/ffmpeg-util.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ffmpeg-util.jl b/src/ffmpeg-util.jl index ec280481b85..7744b8b6e44 100644 --- a/src/ffmpeg-util.jl +++ b/src/ffmpeg-util.jl @@ -267,7 +267,6 @@ function save(path::String, io::VideoStream; video_options...) else cp(io.path, path; force=true) end - rm(io.path) return path end