Merge pull request from jhorchler/master

FEAT: added powershell script for parallel converting
This commit is contained in:
Tusko Trush 2022-09-19 12:58:31 +03:00 committed by GitHub
commit 8f31840570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
vimeo-combine.ps1 Normal file

@ -0,0 +1,5 @@
$Message = "File:"
(Get-ChildItem ".\parts\" -Filter "*.m4v").BaseName | ForEach-Object -Parallel {
"$using:Message $_"
ffmpeg -y -v quiet -i "parts\$_.m4a" -i "parts\$_.m4v" -c copy "converted\$_.mp4"
} -ThrottleLimit 4