save changes

This commit is contained in:
2025-09-22 17:15:05 +02:00
parent c7279b4e8b
commit 8532a33988
3 changed files with 1420 additions and 20 deletions

View File

@ -42,8 +42,8 @@ interface Server {
name: string;
}
const DEFAULT_SIZE: Size = { width: 720, height: 1280 };
const FOLDER = process.argv[2] || process.env.MUSICSPOT_FOLDER || 'zagreb';
const DEFAULT_SIZE: Size = { width: 1280, height: 720 };
const FOLDER = process.argv[2] || process.env.MUSICSPOT_FOLDER || 'infinitydance';
const FOLDER_SAFE = FOLDER.replace(/[/\\?%*:|"<>]/g, '_');
const GENERATED_DIR = path.resolve('generated');
@ -234,7 +234,7 @@ async function main() {
serverForVideo.baseUrl!,
serverForVideo.outputDir!,
DEFAULT_SIZE,
false,
true,
true
);