Some enhancements to UI functionality

This commit is contained in:
riversedge
2026-02-04 18:57:18 -05:00
parent 39960f0961
commit 16f5af6435
9 changed files with 374 additions and 33 deletions
+8 -1
View File
@@ -9,6 +9,7 @@ import json
import os
import sys
import time
import torch
# Get ACE-Step path from environment or use default
ACESTEP_PATH = os.environ.get('ACESTEP_PATH', '/home/ambsd/Desktop/aceui/ACE-Step-1.5')
@@ -27,12 +28,18 @@ def get_llm_handler():
# Initialize the LLM with the 0.6B model (lighter on VRAM)
checkpoint_dir = os.path.join(ACESTEP_PATH, "checkpoints")
lm_model_path = "acestep-5Hz-lm-0.6B" # Use the smaller 0.6B model
if torch.cuda.is_available():
device = "cuda"
elif torch.backends.mps.is_available():
device = "mps"
else:
device = "cpu"
status, success = _llm_handler.initialize(
checkpoint_dir=checkpoint_dir,
lm_model_path=lm_model_path,
backend="pt", # Use PyTorch backend
device="cuda",
device=device,
offload_to_cpu=True,
)
+8 -3
View File
@@ -34,13 +34,15 @@ const audioUpload = multer({
'audio/flac',
'audio/x-flac',
'audio/mp4',
'audio/x-m4a',
'audio/aac',
'audio/ogg',
'audio/webm',
'video/mp4',
];
// Also check file extension as fallback
const allowedExtensions = ['.mp3', '.wav', '.flac', '.m4a', '.aac', '.ogg', '.webm', '.opus'];
const allowedExtensions = ['.mp3', '.wav', '.flac', '.m4a', '.mp4', '.aac', '.ogg', '.webm', '.opus'];
const fileExt = file.originalname.toLowerCase().match(/\.[^.]+$/)?.[0];
if (allowedTypes.includes(file.mimetype) || (fileExt && allowedExtensions.includes(fileExt))) {
@@ -141,10 +143,13 @@ router.post('/upload-audio', authMiddleware, audioUpload.single('audio'), async
case 'audio/ogg':
return '.ogg';
case 'audio/mp4':
case 'audio/x-m4a':
case 'audio/aac':
return '.m4a';
case 'audio/webm':
return '.webm';
case 'video/mp4':
return '.mp4';
default:
return '';
}
@@ -370,7 +375,8 @@ router.get('/status/:jobId', authMiddleware, async (req: AuthenticatedRequest, r
const { buffer } = await downloadAudioToBuffer(audioUrl);
const ext = audioUrl.includes('.flac') ? '.flac' : '.mp3';
const storageKey = `${req.user!.id}/${songId}${ext}`;
const storedPath = await storage.upload(storageKey, buffer, `audio/${ext.slice(1)}`);
await storage.upload(storageKey, buffer, `audio/${ext.slice(1)}`);
const storedPath = storage.getPublicUrl(storageKey);
await pool.query(
`INSERT INTO songs (id, user_id, title, lyrics, style, caption, audio_url,
@@ -593,7 +599,6 @@ router.post('/format', authMiddleware, async (req: AuthenticatedRequest, res: Re
cwd: ACESTEP_DIR,
env: {
...process.env,
CUDA_VISIBLE_DEVICES: '0',
ACESTEP_PATH: ACESTEP_DIR,
},
});
+14 -3
View File
@@ -11,11 +11,22 @@ const upload = multer({
storage: multer.memoryStorage(),
limits: { fileSize: 50 * 1024 * 1024 }, // 50MB max
fileFilter: (_req, file, cb) => {
const allowedTypes = ['audio/mpeg', 'audio/wav', 'audio/flac', 'audio/mp3', 'audio/x-wav', 'audio/x-flac'];
if (allowedTypes.includes(file.mimetype) || file.originalname.match(/\.(mp3|wav|flac)$/i)) {
const allowedTypes = [
'audio/mpeg',
'audio/wav',
'audio/flac',
'audio/mp3',
'audio/x-wav',
'audio/x-flac',
'audio/mp4',
'audio/x-m4a',
'audio/aac',
'video/mp4',
];
if (allowedTypes.includes(file.mimetype) || file.originalname.match(/\.(mp3|wav|flac|m4a|mp4)$/i)) {
cb(null, true);
} else {
cb(new Error('Invalid file type. Only MP3, WAV, and FLAC are allowed.'));
cb(new Error('Invalid file type. Only MP3, WAV, FLAC, M4A, and MP4 are allowed.'));
}
}
});
+4 -1
View File
@@ -18,7 +18,7 @@ export class LocalStorageProvider implements StorageProvider {
const filepath = path.join(this.audioDir, key);
await mkdir(path.dirname(filepath), { recursive: true });
await writeFile(filepath, data);
return `/audio/${key}`;
return key;
}
async getUrl(key: string, _expiresIn?: number): Promise<string> {
@@ -26,6 +26,9 @@ export class LocalStorageProvider implements StorageProvider {
}
getPublicUrl(key: string): string {
if (key.startsWith('/audio/')) {
return key;
}
return `/audio/${key}`;
}