Skip to content

Instantly share code, notes, and snippets.

@gut5
Created March 19, 2023 17:58
Show Gist options
  • Save gut5/e6066ced772ed17ada294c3539ff20b7 to your computer and use it in GitHub Desktop.
Save gut5/e6066ced772ed17ada294c3539ff20b7 to your computer and use it in GitHub Desktop.
ffmpeg batch convert mp4 to webm
$folder = "C:\path\to\folder"
$webm = "C:\path\to\webm\folder"
$mp4Files = Get-ChildItem -Path $folder -Filter "*.mp4"
foreach ($file in $mp4Files) {
$fileName = $file.Name
$input = $folder + "\" + $fileName
$output = $webm + "\" + $fileName.Replace(".mp4", ".webm")
ffmpeg -i $input $output
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment