fix: Windows环境下进度条因stdout阻塞迟迟未能显示

顺便重构一下`hevc_encode`,这样就“轻”多了。
This commit is contained in:
2026-04-20 13:50:49 +08:00
parent 2013d2e61d
commit ef7965d274
2 changed files with 63 additions and 38 deletions

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File with Arguments",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": "${command:pickArgs}"
}
]
}