feat: adiciona suporte para sobrescrever arquivos de saída no FFmpeg e atualiza ícones de estado na interface

This commit is contained in:
2026-02-28 20:53:19 -03:00
parent d69ce92e32
commit 3e38c51e3a
4 changed files with 12 additions and 7 deletions
+1
View File
@@ -13,6 +13,7 @@ pub async fn run_ffmpeg_async(
) -> Result<()> {
let mut child = Command::new("ffmpeg")
.args(&args)
.stdin(std::process::Stdio::null())
.stderr(std::process::Stdio::piped())
.stdout(std::process::Stdio::null())
.spawn()