Обновить fs.ps1

This commit is contained in:
2026-03-19 02:28:09 +00:00
parent 3c46828a24
commit 16f8b90826

2
fs.ps1
View File

@@ -7,5 +7,5 @@ $files = @(
# Запускаем каждый в отдельном фоновом процессе
foreach ($f in $files) {
Start-Process powershell -ArgumentList "-NoExit", "-Command", ".\ffmpeg.exe -i '$f' -c:v hevc_nvenc -rc vbr -cq 28 -preset p6 -tag:v hvc1 -c:a copy 'new_$f'"
Start-Process powershell -ArgumentList "-NoExit", "-Command", "ffmpeg.exe -i '$f' -c:v hevc_nvenc -rc vbr -cq 28 -preset p6 -tag:v hvc1 -c:a copy 'new_$f'"
}