mirror of
https://github.com/muskit/MercuryConverter.git
synced 2026-06-02 20:24:26 -07:00
7 lines
238 B
Batchfile
7 lines
238 B
Batchfile
|
|
@echo off
|
||
|
|
|
||
|
|
:: Set paths here first before running!!!
|
||
|
|
set video_path="\app\WindowsNoEditor\Mercury\Content\Movie"
|
||
|
|
set export_path=".\data\movies"
|
||
|
|
|
||
|
|
for %%i in (%video_path%\*.usm) do ffmpeg -n -f mpegvideo -i "%%i" "%export_path%\%%~ni.mp4"
|