File size: 11,990 Bytes
a9ffeb4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
const SubtitleManager = {
    subtitles: [],

    addSubtitle: function(start, end, text) {
        this.subtitles.push({
            start: start,
            end: end,
            text: text
        });
        this.sortSubtitles();
        this.renderSubtitleList();
        this.updateParentEditor();
    },

    loadSubtitles: function(content) {
        this.subtitles = []; // Clear existing subtitles
        if (!content || typeof content !== 'string') {
            console.error("Invalid subtitle content:", content);
            return;
        }
        console.log("Loading subtitles from content:", content);
        
        try {
            // Parse VTT format
            if (content.includes('WEBVTT')) {
                console.log("Detected VTT format");
                this.parseVTT(content);
            } else {
                // Assume SRT format
                console.log("Assuming SRT format");
                this.parseSRT(content);
            }
            console.log("Parsed subtitles:", this.subtitles);
            
            if (this.subtitles.length === 0) {
                console.warn("No subtitles were parsed from the content");
            }
            
            this.renderSubtitleList();
            TimelineManager.render(); // Update timeline after loading subtitles
        } catch (error) {
            console.error("Error parsing subtitles:", error);
        }
    },

    parseVTT: function(content) {
        this.subtitles = [];
        const lines = content.split('\n');
        let current = null;

        for (let line of lines) {
            line = line.trim();
            
            if (line.includes('-->')) {
                const [start, end] = line.split('-->').map(this.timeToSeconds);
                current = { start, end, text: '' };
            } else if (current && line && !line.includes('WEBVTT')) {
                current.text += line + '\n';
            } else if (line === '' && current) {
                current.text = current.text.trim();
                this.subtitles.push(current);
                current = null;
            }
        }
    },

    parseSRT: function(content) {
        console.log("Starting SRT parsing");
        this.subtitles = [];
        
        // Normalize line endings and split into blocks
        const normalizedContent = content.replace(/\r\n/g, '\n').replace(/\r/g, '\n');
        const blocks = normalizedContent.split('\n\n').filter(block => block.trim());
        
        console.log(`Found ${blocks.length} subtitle blocks`);
        
        for (let i = 0; i < blocks.length; i++) {
            try {
                const lines = blocks[i].split('\n').map(line => line.trim()).filter(line => line);
                console.log(`Block ${i + 1} has ${lines.length} lines:`, lines);
                
                // Skip invalid blocks
                if (lines.length < 2) {
                    console.warn(`Block ${i + 1} has insufficient lines, skipping`);
                    continue;
                }
                
                // Find time line
                const timeLine = lines.find(line => line.includes('-->'));
                if (!timeLine) {
                    console.warn(`Block ${i + 1} has no time line, skipping`);
                    continue;
                }
                
                // Parse time values
                const [startStr, endStr] = timeLine.split('-->').map(t => t.trim());
                console.log(`Time values - Start: "${startStr}", End: "${endStr}"`);
                
                const start = this.timeToSeconds(startStr);
                const end = this.timeToSeconds(endStr);
                
                if (isNaN(start) || isNaN(end)) {
                    console.warn(`Block ${i + 1} has invalid time values:`, { start, end });
                    continue;
                }
                
                console.log(`Converted times - Start: ${start}s, End: ${end}s`);
                
                // Get text lines (exclude index number and time line)
                const textLines = lines.filter(line => 
                    !line.includes('-->') && 
                    !line.match(/^\d+$/) &&
                    line.trim().length > 0
                );
                
                const text = textLines.join('\n').trim();
                console.log(`Extracted text: "${text}"`);
                
                if (text) {
                    this.subtitles.push({ start, end, text });
                    console.log(`Successfully added subtitle ${i + 1}`);
                } else {
                    console.warn(`Block ${i + 1} has no text content, skipping`);
                }
            } catch (error) {
                console.error(`Error parsing block ${i + 1}:`, error);
            }
        }
        
        this.subtitles.sort((a, b) => a.start - b.start);
        console.log(`Successfully parsed ${this.subtitles.length} subtitles`);
    },

    timeToSeconds: function(timeStr) {
        try {
            timeStr = timeStr.trim().replace(',', '.');  // Convert SRT format to decimal
            console.log(`Processing time string: "${timeStr}"`);
            
            // Handle missing milliseconds
            if (!timeStr.includes('.')) {
                timeStr += '.000';
            }
            
            const [time, ms] = timeStr.split('.');
            const [hours, minutes, seconds] = time.split(':').map(str => {
                const num = Number(str);
                if (isNaN(num)) {
                    throw new Error(`Invalid time component: "${str}"`);
                }
                return num;
            });
            
            const msSeconds = ms ? Number('0.' + ms) : 0;
            if (isNaN(msSeconds)) {
                throw new Error(`Invalid milliseconds: "${ms}"`);
            }
            
            const totalSeconds = hours * 3600 + minutes * 60 + seconds + msSeconds;
            console.log(`Converted "${timeStr}" to ${totalSeconds} seconds`);
            return totalSeconds;
            
        } catch (error) {
            console.error(`Error converting time "${timeStr}":`, error);
            return NaN;
        }
    },

    secondsToTime: function(seconds) {
        const date = new Date(seconds * 1000);
        const hh = date.getUTCHours();
        const mm = date.getUTCMinutes();
        const ss = date.getUTCSeconds();
        const ms = date.getUTCMilliseconds();
        return `${hh.toString().padStart(2, '0')}:${mm.toString().padStart(2, '0')}:${ss.toString().padStart(2, '0')}.${ms.toString().padStart(3, '0')}`;
    },

    sortSubtitles: function() {
        this.subtitles.sort((a, b) => a.start - b.start);
    },

    onTimelineUpdate: null,
    
    setTimelineUpdateCallback: function(callback) {
        this.onTimelineUpdate = callback;
    },
    
    renderSubtitleList: function() {
        const listElement = document.getElementById('subtitle-list');
        if (!listElement) return;
        
        listElement.innerHTML = '';
        this.sortSubtitles();
        
        this.subtitles.forEach((subtitle, index) => {
            const subtitleElement = document.createElement('div');
            subtitleElement.className = 'subtitle-item';
            subtitleElement.innerHTML = `
                <div class="d-flex justify-content-between align-items-center">
                    <small class="text-muted">
                        ${this.secondsToTime(subtitle.start)} - ${this.secondsToTime(subtitle.end)}
                    </small>
                    <div>
                        <button class="btn btn-sm btn-primary edit-subtitle" data-index="${index}">
                            <i class="fas fa-edit"></i>
                        </button>
                        <button class="btn btn-sm btn-danger delete-subtitle" data-index="${index}">
                            <i class="fas fa-trash"></i>
                        </button>
                    </div>
                </div>
                <div class="mt-1">${subtitle.text}</div>
            `;
            
            // Add click handlers
            const editBtn = subtitleElement.querySelector('.edit-subtitle');
            const deleteBtn = subtitleElement.querySelector('.delete-subtitle');
            
            editBtn.addEventListener('click', () => {
                const modal = new bootstrap.Modal(document.getElementById('editSubtitleModal'));
                const textArea = document.getElementById('subtitleText');
                textArea.value = subtitle.text;
                
                const saveHandler = () => {
                    subtitle.text = textArea.value;
                    this.renderSubtitleList();
                    this.updateParentEditor();
                    modal.hide();
                    document.getElementById('saveSubtitle').removeEventListener('click', saveHandler);
                };
                
                document.getElementById('saveSubtitle').addEventListener('click', saveHandler);
                modal.show();
            });
            
            deleteBtn.addEventListener('click', () => {
                if (confirm('Are you sure you want to delete this subtitle?')) {
                    this.subtitles.splice(index, 1);
                    this.renderSubtitleList();
                    TimelineManager.render();
                    this.updateParentEditor();
                }
            });
            
            listElement.appendChild(subtitleElement);
        });
        
        TimelineManager.render();
    },

    updateParentEditor: function() {
        const srt = this.exportSRT();
        
        // Aktualizace editoru v rodičovském okně
        window.parent.postMessage({
            type: 'updateSubtitles',
            content: srt
        }, '*');

        // Získání video_path ze sessionStorage a úprava cesty
        const video_path = window.parent.sessionStorage.getItem('video_path');
        if (!video_path) {
            console.error('video_path není k dispozici v sessionStorage');
            return;
        }

        // Odstranění '\video.mp4' a 'exports\' z cesty
        const project_path = video_path.replace('\\video.mp4', '').replace('exports\\', '');
        console.log('Ukládám titulky do projektu:', project_path);

        // Okamžité uložení do souboru
        fetch('/save_srt', {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json'
            },
            body: JSON.stringify({
                srt_content: srt,
                project_name: project_path
            })
        })
        .then(response => response.json())
        .then(data => {
            if (!data.success) {
                console.error('Chyba při ukládání titulků:', data.error);
            } else {
                console.log('Titulky byly úspěšně uloženy do:', project_path + '/titulky.srt');
            }
        })
        .catch(error => {
            console.error('Chyba při komunikaci se serverem:', error);
        });
    },

    exportVTT: function() {
        let output = 'WEBVTT\n\n';
        this.subtitles.forEach((subtitle, index) => {
            output += `${index + 1}\n`;
            output += `${this.secondsToTime(subtitle.start)} --> ${this.secondsToTime(subtitle.end)}\n`;
            output += `${subtitle.text}\n\n`;
        });
        return output;
    },

    exportSRT: function() {
        let output = '';
        this.subtitles.forEach((subtitle, index) => {
            output += `${index + 1}\n`;
            output += `${this.secondsToTime(subtitle.start).replace('.', ',')} --> ${this.secondsToTime(subtitle.end).replace('.', ',')}\n`;
            output += `${subtitle.text}\n\n`;
        });
        return output;
    },

    getSubtitles: function() {
        return this.subtitles;
    }
};