diff --git a/frontend/app/video/subtitles/page.tsx b/frontend/app/video/subtitles/page.tsx index 2afc2ea..89469fa 100644 --- a/frontend/app/video/subtitles/page.tsx +++ b/frontend/app/video/subtitles/page.tsx @@ -88,6 +88,13 @@ export default function SubtitlesPage() { return; } + // Debug: Check file state + console.log('🎬 Starting subtitle processing...'); + console.log(' File object:', file); + console.log(' File name:', file.name); + console.log(' File size:', file.size, 'bytes'); + console.log(' File type:', file.type); + setLoading(true); setResults(null);