add video exporting

This commit is contained in:
Alex
2025-08-31 22:07:14 -07:00
parent 11a9af5778
commit 1c2400cb3f
6 changed files with 91 additions and 15 deletions
+7
View File
@@ -0,0 +1,7 @@
@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"