shrink release pkg, fix app directory resolution

This commit is contained in:
Alex
2025-09-02 13:19:59 -07:00
parent a2d123e953
commit c609e35b8b
6 changed files with 16 additions and 16 deletions
Vendored Executable
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
# Set paths here first before running!!!
video_path="App/WindowsNoEditor/Mercury/Content/Movie/"
output_path="./data/movies/"
for file in "$video_path"/*.usm; do
output_file="$output_path/$(basename "$file" .usm).mp4"
echo $file
echo $output_file
ffmpeg -n -f mpegvideo -i "$file" "$output_file"
done