Share Script PowerShell chuyển đổi video hàng loạt sang MP4 bằng FFMPEG

Cập nhật ngày 10/03/2023
Lượt xem: 34

Tạo 1 script ffmpeg.ps1 đặt tại thư mục chứa video và chạy nó!

Script này đang chuyển đổi .mkv thành ..mp4

$files = Get-ChildItem *.mkv

foreach ($file in $files) {
    $fileName = $file.FullName
    $fileNameOut = [io.path]::ChangeExtension($fileName, '.mp4')

    ffmpeg.exe -i $fileName -codec copy -c:a aac $fileNameOut
}