Files
script_h265_nvidia/fs.ps1
2026-03-19 02:28:09 +00:00

12 lines
517 B
PowerShell
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Список файлов, которые надо обработать
$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'"
}