mirror of
https://github.com/guilhermewerner/video-converter
synced 2025-06-15 05:14:21 +00:00
Add mp4 converter
This commit is contained in:
5
converter.bat
Normal file
5
converter.bat
Normal file
@ -0,0 +1,5 @@
|
||||
@echo off
|
||||
|
||||
PowerShell.exe -Command "& './scripts/mp4.ps1'"
|
||||
|
||||
pause
|
1
scripts/mp4.ps1
Normal file
1
scripts/mp4.ps1
Normal file
@ -0,0 +1 @@
|
||||
Get-ChildItem -Filter '*.mkv' | % { &./ffmpeg/bin/ffmpeg.exe -i .\$($_.BaseName).mkv -c copy .\$($_.BaseName).mp4 }
|
Reference in New Issue
Block a user