Добавить fs.ps1

This commit is contained in:
2026-03-19 02:27:54 +00:00
commit 3c46828a24

11
fs.ps1 Normal file
View File

@@ -0,0 +1,11 @@
# Список файлов, которые надо обработать
$files = @(
"БАЙКЕРСКИЕ РАЗБОРКИ ► Resident Evil Requiem #7.mp4",
"ДРУГОЕ ВИДЕО #8.mp4",
"ТРЕТЬЕ ВИДЕО #9.mp4"
)
# Запускаем каждый в отдельном фоновом процессе
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'"
}