File size: 10,648 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | /**
* Server-side media and TTS generation for classrooms.
*
* Generates image/video files and TTS audio for a classroom,
* writes them to disk, and returns serving URL mappings.
*/
import { promises as fs } from 'fs';
import path from 'path';
import { createLogger } from '@/lib/logger';
import { CLASSROOMS_DIR } from '@/lib/server/classroom-storage';
import { generateImage } from '@/lib/media/image-providers';
import { generateVideo, normalizeVideoOptions } from '@/lib/media/video-providers';
import { generateTTS } from '@/lib/audio/tts-providers';
import { DEFAULT_TTS_VOICES, DEFAULT_TTS_MODELS, TTS_PROVIDERS } from '@/lib/audio/constants';
import { IMAGE_PROVIDERS } from '@/lib/media/image-providers';
import { VIDEO_PROVIDERS } from '@/lib/media/video-providers';
import { isMediaPlaceholder } from '@/lib/store/media-generation';
import {
getServerImageProviders,
getServerVideoProviders,
getServerTTSProviders,
resolveImageApiKey,
resolveImageBaseUrl,
resolveVideoApiKey,
resolveVideoBaseUrl,
resolveTTSApiKey,
resolveTTSBaseUrl,
} from '@/lib/server/provider-config';
import type { SceneOutline } from '@/lib/types/generation';
import type { Scene } from '@/lib/types/stage';
import type { SpeechAction } from '@/lib/types/action';
import type { ImageProviderId } from '@/lib/media/types';
import type { VideoProviderId } from '@/lib/media/types';
import type { TTSProviderId } from '@/lib/audio/types';
import { splitLongSpeechActions } from '@/lib/audio/tts-utils';
import { VOXCPM_AUTO_VOICE_ID, VOXCPM_TTS_PROVIDER_ID } from '@/lib/audio/voxcpm';
const log = createLogger('ClassroomMedia');
// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------
async function ensureDir(dir: string) {
await fs.mkdir(dir, { recursive: true });
}
const DOWNLOAD_TIMEOUT_MS = 120_000; // 2 minutes
const DOWNLOAD_MAX_SIZE = 100 * 1024 * 1024; // 100 MB
async function downloadToBuffer(url: string): Promise<Buffer> {
const resp = await fetch(url, { signal: AbortSignal.timeout(DOWNLOAD_TIMEOUT_MS) });
if (!resp.ok) throw new Error(`Download failed: ${resp.status} ${resp.statusText}`);
const contentLength = Number(resp.headers.get('content-length') || 0);
if (contentLength > DOWNLOAD_MAX_SIZE) {
throw new Error(`File too large: ${contentLength} bytes (max ${DOWNLOAD_MAX_SIZE})`);
}
return Buffer.from(await resp.arrayBuffer());
}
function mediaServingUrl(baseUrl: string, classroomId: string, subPath: string): string {
return `${baseUrl}/api/classroom-media/${classroomId}/${subPath}`;
}
// ---------------------------------------------------------------------------
// Image / Video generation
// ---------------------------------------------------------------------------
export async function generateMediaForClassroom(
outlines: SceneOutline[],
classroomId: string,
baseUrl: string,
): Promise<Record<string, string>> {
const mediaDir = path.join(CLASSROOMS_DIR, classroomId, 'media');
await ensureDir(mediaDir);
// Collect all media generation requests from outlines
const requests = outlines.flatMap((o) => o.mediaGenerations ?? []);
if (requests.length === 0) return {};
// Resolve providers
const imageProviderIds = Object.keys(getServerImageProviders());
const videoProviderIds = Object.keys(getServerVideoProviders());
const mediaMap: Record<string, string> = {};
// Separate image and video requests, generate each type sequentially
// but run the two types in parallel (providers often have limited concurrency).
const imageRequests = requests.filter((r) => r.type === 'image' && imageProviderIds.length > 0);
const videoRequests = requests.filter((r) => r.type === 'video' && videoProviderIds.length > 0);
const generateImages = async () => {
for (const req of imageRequests) {
try {
const providerId = imageProviderIds[0] as ImageProviderId;
const apiKey = resolveImageApiKey(providerId);
if (!apiKey) {
log.warn(`No API key for image provider "${providerId}", skipping ${req.elementId}`);
continue;
}
const providerConfig = IMAGE_PROVIDERS[providerId];
const model = providerConfig?.models?.[0]?.id;
const result = await generateImage(
{ providerId, apiKey, baseUrl: resolveImageBaseUrl(providerId), model },
{ prompt: req.prompt, aspectRatio: req.aspectRatio || '16:9' },
);
let buf: Buffer;
let ext: string;
if (result.base64) {
buf = Buffer.from(result.base64, 'base64');
ext = 'png';
} else if (result.url) {
buf = await downloadToBuffer(result.url);
const urlExt = path.extname(new URL(result.url).pathname).replace('.', '');
ext = ['png', 'jpg', 'jpeg', 'webp'].includes(urlExt) ? urlExt : 'png';
} else {
log.warn(`Image generation returned no data for ${req.elementId}`);
continue;
}
const filename = `${req.elementId}.${ext}`;
await fs.writeFile(path.join(mediaDir, filename), buf);
mediaMap[req.elementId] = mediaServingUrl(baseUrl, classroomId, `media/${filename}`);
log.info(`Generated image: ${filename}`);
} catch (err) {
log.warn(`Image generation failed for ${req.elementId}:`, err);
}
}
};
const generateVideos = async () => {
for (const req of videoRequests) {
try {
const providerId = videoProviderIds[0] as VideoProviderId;
const apiKey = resolveVideoApiKey(providerId);
if (!apiKey) {
log.warn(`No API key for video provider "${providerId}", skipping ${req.elementId}`);
continue;
}
const providerConfig = VIDEO_PROVIDERS[providerId];
const model = providerConfig?.models?.[0]?.id;
const normalized = normalizeVideoOptions(providerId, {
prompt: req.prompt,
aspectRatio: (req.aspectRatio as '16:9' | '4:3' | '1:1' | '9:16') || '16:9',
});
const result = await generateVideo(
{ providerId, apiKey, baseUrl: resolveVideoBaseUrl(providerId), model },
normalized,
);
const buf = await downloadToBuffer(result.url);
const filename = `${req.elementId}.mp4`;
await fs.writeFile(path.join(mediaDir, filename), buf);
mediaMap[req.elementId] = mediaServingUrl(baseUrl, classroomId, `media/${filename}`);
log.info(`Generated video: ${filename}`);
} catch (err) {
log.warn(`Video generation failed for ${req.elementId}:`, err);
}
}
};
await Promise.all([generateImages(), generateVideos()]);
return mediaMap;
}
// ---------------------------------------------------------------------------
// Placeholder replacement in scene content
// ---------------------------------------------------------------------------
export function replaceMediaPlaceholders(scenes: Scene[], mediaMap: Record<string, string>): void {
if (Object.keys(mediaMap).length === 0) return;
for (const scene of scenes) {
if (scene.type !== 'slide') continue;
const canvas = (
scene.content as {
canvas?: { elements?: Array<{ id: string; src?: string; type?: string }> };
}
)?.canvas;
if (!canvas?.elements) continue;
for (const el of canvas.elements) {
if (
(el.type === 'image' || el.type === 'video') &&
typeof el.src === 'string' &&
isMediaPlaceholder(el.src) &&
mediaMap[el.src]
) {
el.src = mediaMap[el.src];
}
}
}
}
// ---------------------------------------------------------------------------
// TTS generation
// ---------------------------------------------------------------------------
export async function generateTTSForClassroom(
scenes: Scene[],
classroomId: string,
baseUrl: string,
): Promise<void> {
const audioDir = path.join(CLASSROOMS_DIR, classroomId, 'audio');
await ensureDir(audioDir);
// Resolve TTS provider (exclude browser-native-tts)
const ttsProviderIds = Object.keys(getServerTTSProviders()).filter(
(id) => id !== 'browser-native-tts',
);
if (ttsProviderIds.length === 0) {
log.warn('No server TTS provider configured, skipping TTS generation');
return;
}
const providerId = ttsProviderIds[0] as TTSProviderId;
const apiKey = resolveTTSApiKey(providerId);
if (!apiKey) {
log.warn(`No API key for TTS provider "${providerId}", skipping TTS generation`);
return;
}
const ttsBaseUrl =
resolveTTSBaseUrl(providerId) ||
TTS_PROVIDERS[providerId as keyof typeof TTS_PROVIDERS]?.defaultBaseUrl;
const voice = DEFAULT_TTS_VOICES[providerId as keyof typeof DEFAULT_TTS_VOICES] || 'default';
const format =
TTS_PROVIDERS[providerId as keyof typeof TTS_PROVIDERS]?.supportedFormats?.[0] || 'mp3';
if (providerId === VOXCPM_TTS_PROVIDER_ID && voice === VOXCPM_AUTO_VOICE_ID) {
log.warn('VoxCPM Auto Voice requires agent context; skipping server-side TTS generation');
return;
}
for (const scene of scenes) {
if (!scene.actions) continue;
// Split long speech actions into multiple shorter ones before TTS generation,
// mirroring the client-side approach. Each sub-action gets its own audio file.
scene.actions = splitLongSpeechActions(scene.actions, providerId);
// Use scene order to make audio IDs unique across scenes
const sceneOrder = scene.order;
for (const action of scene.actions) {
if (action.type !== 'speech' || !(action as SpeechAction).text) continue;
const speechAction = action as SpeechAction;
// Include scene order in audioId to prevent collision across scenes
const audioId = `tts_s${sceneOrder}_${action.id}`;
try {
const result = await generateTTS(
{
providerId,
modelId: DEFAULT_TTS_MODELS[providerId as keyof typeof DEFAULT_TTS_MODELS] || '',
apiKey,
baseUrl: ttsBaseUrl,
voice,
speed: speechAction.speed,
},
speechAction.text,
);
const filename = `${audioId}.${result.format || format}`;
await fs.writeFile(path.join(audioDir, filename), result.audio);
speechAction.audioId = audioId;
speechAction.audioUrl = mediaServingUrl(baseUrl, classroomId, `audio/${filename}`);
log.info(`Generated TTS: ${filename} (${result.audio.length} bytes)`);
} catch (err) {
log.warn(`TTS generation failed for action ${action.id}:`, err);
}
}
}
}
|