Skip to content

Instantly share code, notes, and snippets.

@devster31
Created April 23, 2017 23:04
Show Gist options
  • Save devster31/80f114aefa6653ab5b808e7bd4c0a05c to your computer and use it in GitHub Desktop.
Save devster31/80f114aefa6653ab5b808e7bd4c0a05c to your computer and use it in GitHub Desktop.
Convert .mov files into .mp4 files on Windows without re-encoding video
$oldvids = Get-ChildItem -Filter "*.mov" -Recurse
foreach ($oldvid in $oldvids) {
$newvid = [io.path]::ChangeExtension($oldvid.FullName, '.mp4')
ffmpeg -i $oldvid.FullName -y -c:v copy -c:a libvo_aacenc -b:a 256k $newvid
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment