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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
|
using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Forms;
using Handbrake.Functions;
namespace Handbrake.Controls
{
public partial class Subtitles : UserControl
{
readonly IDictionary<string, string> LangMap = new Dictionary<string, string>();
List<SubtitleInfo> SubList = new List<SubtitleInfo>();
private int _fileContainer;
public Subtitles()
{
InitializeComponent();
LangMap = Main.mapLanguages();
foreach (string key in LangMap.Keys)
srt_lang.Items.Add(key);
srt_charcode.SelectedIndex = 28;
srt_lang.SelectedIndex = 40;
}
// Primary Controls
private void btn_addSubTrack_Click(object sender, EventArgs e)
{
// Logic
string forcedVal = check_forced.CheckState == CheckState.Checked ? "Yes" : "No";
string defaultSub = check_default.CheckState == CheckState.Checked ? "Yes" : "No";
string burnedVal = check_burned.CheckState == CheckState.Checked && (!drp_subtitleTracks.Text.Contains("Text")) ? "Yes" : "No";
string srtCode = "-", srtLangVal = "-", srtPath = "-", srtFile = "-";
int srtOffsetMs = 0;
if (drp_subtitleTracks.SelectedItem.ToString().Contains(".srt"))
{
burnedVal = "No";
forcedVal = "No";
srtPath = openFileDialog.FileName;
srtFile = Path.GetFileName(openFileDialog.FileName);
srtLangVal = srt_lang.SelectedItem.ToString();
srtCode = srt_charcode.SelectedItem.ToString();
srtOffsetMs = (int)srt_offset.Value;
if (defaultSub == "Yes") setNoSrtDefault();
} else
{
if (defaultSub == "Yes") SetNoDefault();
if (burnedVal == "Yes") SetNoBurned();
if (_fileContainer == 0)
burnedVal = "Yes"; // MP4 must have bitmap subs burned in.
}
if (_fileContainer == 0) // MP4 and M4V file extension
{
// Make sure we only have 1 bitmap track.
if (drp_subtitleTracks.SelectedItem != null && drp_subtitleTracks.SelectedItem.ToString().Contains("Bitmap"))
{
foreach (ListViewItem item in lv_subList.Items)
{
if (item.SubItems[0].Text.Contains("Bitmap"))
{
MessageBox.Show(this, "More than one vobsub is not supported in mp4... Your first vobsub track will now be used.",
"Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
}
}
}
string trackName = (drp_subtitleTracks.SelectedItem.ToString().Contains(".srt"))
? srtLangVal + " (" + srtFile + ")"
: drp_subtitleTracks.SelectedItem.ToString();
SubtitleInfo track = new SubtitleInfo
{
Track = trackName,
Forced = forcedVal,
Burned = burnedVal,
Default = defaultSub,
SrtLang = srtLangVal,
SrtCharCode = srtCode,
SrtOffset = srtOffsetMs,
SrtPath = srtPath,
SrtFileName = srtFile
};
lv_subList.Items.Add(track.ListView);
SubList.Add(track);
}
private void btn_srtAdd_Click(object sender, EventArgs e)
{
if (openFileDialog.ShowDialog() != DialogResult.OK)
return;
drp_subtitleTracks.Items.Add(Path.GetFileName(openFileDialog.FileName));
drp_subtitleTracks.SelectedItem = Path.GetFileName(openFileDialog.FileName);
}
private void btn_RemoveSubTrack_Click(object sender, EventArgs e)
{
RemoveTrack();
}
// Secondary Controls
private void lb_subList_SelectedIndexChanged(object sender, EventArgs e)
{
// Set the dropdown controls based on the selected item in the List.
if (lv_subList.Items.Count != 0 && lv_subList.SelectedIndices.Count != 0)
{
SubtitleInfo track = SubList[lv_subList.SelectedIndices[0]];
int c = 0;
if (lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[0].Text.ToLower().Contains(".srt")) // We have an SRT
{
foreach (var item in drp_subtitleTracks.Items)
{
if (item.ToString() == track.SrtFileName)
drp_subtitleTracks.SelectedIndex = c;
c++;
}
srt_lang.SelectedItem = track.SrtLang;
srt_offset.Value = track.SrtOffset;
srt_charcode.SelectedItem = track.SrtCharCode;
check_default.CheckState = track.Default == "Yes" ? CheckState.Checked : CheckState.Unchecked;
SubGroupBox.Text = "Selected Track: " + track.Track;
}
else // We have Bitmap/CC
{
foreach (var item in drp_subtitleTracks.Items)
{
if (item.ToString() == track.Track)
drp_subtitleTracks.SelectedIndex = c;
c++;
}
check_forced.CheckState = track.Forced == "Yes" ? CheckState.Checked : CheckState.Unchecked;
check_burned.CheckState = track.Burned == "Yes" ? CheckState.Checked : CheckState.Unchecked;
check_default.CheckState = track.Default == "Yes" ? CheckState.Checked : CheckState.Unchecked;
SubGroupBox.Text = "Selected Track: " + lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[0].Text;
}
}
else
SubGroupBox.Text = "Selected Track: None (Click \"Add\" to add another track to the list)";
}
// Bitmap / CC / SRT Controls
private void drp_subtitleTracks_SelectedIndexChanged(object sender, EventArgs e)
{
if (drp_subtitleTracks.SelectedItem.ToString().Contains(".srt"))
{
check_forced.Enabled = false;
check_burned.Enabled = false;
srt_lang.Enabled = true;
srt_charcode.Enabled = true;
srt_offset.Enabled = true;
}
else
{
check_forced.Enabled = true;
check_burned.Enabled = true;
srt_lang.Enabled = false;
srt_charcode.Enabled = false;
srt_offset.Enabled = false;
}
// Update an item in the list if required.
if (lv_subList.Items.Count == 0 || lv_subList.SelectedIndices.Count == 0) return;
if (drp_subtitleTracks.SelectedItem.ToString().Contains(".srt"))
{
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[0].Text = srt_lang.SelectedItem + "(" +
drp_subtitleTracks.SelectedItem + ")";
lv_subList.Select();
} else
{
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[0].Text =
drp_subtitleTracks.SelectedItem.ToString();
lv_subList.Select();
}
SubList[lv_subList.SelectedIndices[0]].Track = drp_subtitleTracks.SelectedItem.ToString(); // Update SubList List<SubtitleInfo>
}
private void check_forced_CheckedChanged(object sender, EventArgs e)
{
if (lv_subList.Items.Count == 0 || lv_subList.SelectedIndices.Count == 0) return;
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[1].Text = check_forced.Checked ? "Yes" : "No";
lv_subList.Select();
SubList[lv_subList.SelectedIndices[0]].Forced = check_forced.Checked ? "Yes" : "No"; // Update SubList List<SubtitleInfo>
}
private void check_burned_CheckedChanged(object sender, EventArgs e)
{
if (lv_subList.Items.Count == 0 || lv_subList.SelectedIndices.Count == 0) return;
if (check_burned.Checked) // Make sure we only have 1 burned track
SetNoBurned();
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[2].Text = check_burned.Checked ? "Yes" : "No";
lv_subList.Select();
SubList[lv_subList.SelectedIndices[0]].Burned = check_burned.Checked ? "Yes" : "No"; // Update SubList List<SubtitleInfo>
}
private void check_default_CheckedChanged(object sender, EventArgs e)
{
if (lv_subList.Items.Count == 0 || lv_subList.SelectedIndices.Count == 0) return;
if (check_default.Checked) // Make sure we only have 1 default track
if (lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[0].Text.Contains(".srt"))
setNoSrtDefault();
else
SetNoDefault();
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[3].Text = check_default.Checked ? "Yes" : "No";
lv_subList.Select();
SubList[lv_subList.SelectedIndices[0]].Default = check_default.Checked ? "Yes" : "No"; // Update SubList List<SubtitleInfo>
}
private void srt_offset_ValueChanged(object sender, EventArgs e)
{
// Update an item in the list if required.
if (lv_subList.Items.Count == 0 || lv_subList.SelectedIndices.Count == 0)
return;
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[6].Text = srt_offset.Value.ToString();
lv_subList.Select();
SubList[lv_subList.SelectedIndices[0]].SrtOffset = (int)srt_offset.Value; // Update SubList List<SubtitleInfo>
}
private void srt_charcode_SelectedIndexChanged(object sender, EventArgs e)
{
if (lv_subList.Items.Count == 0 || lv_subList.SelectedIndices.Count == 0) return;
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[5].Text = srt_charcode.SelectedItem.ToString();
lv_subList.Select();
SubList[lv_subList.SelectedIndices[0]].SrtCharCode = srt_charcode.SelectedItem.ToString(); // Update SubList List<SubtitleInfo>
}
private void srt_lang_SelectedIndexChanged(object sender, EventArgs e)
{
if (lv_subList.Items.Count == 0 || lv_subList.SelectedIndices.Count == 0) return;
lv_subList.Items[lv_subList.SelectedIndices[0]].SubItems[4].Text = srt_lang.SelectedItem.ToString();
lv_subList.Select();
SubList[lv_subList.SelectedIndices[0]].SrtLang = srt_lang.SelectedItem.ToString(); // Update SubList List<SubtitleInfo>
}
// Right Click Menu
private void mnu_moveup_Click(object sender, EventArgs e)
{
if (lv_subList.SelectedIndices.Count != 0)
{
ListViewItem item = lv_subList.SelectedItems[0];
int index = item.Index;
index--;
if (lv_subList.Items.Count > index && index >= 0)
{
lv_subList.Items.Remove(item);
lv_subList.Items.Insert(index, item);
item.Selected = true;
lv_subList.Focus();
}
}
}
private void mnu_movedown_Click(object sender, EventArgs e)
{
if (lv_subList.SelectedIndices.Count != 0)
{
ListViewItem item = lv_subList.SelectedItems[0];
int index = item.Index;
index++;
if (index < lv_subList.Items.Count)
{
lv_subList.Items.Remove(item);
lv_subList.Items.Insert(index, item);
item.Selected = true;
lv_subList.Focus();
}
}
}
private void mnu_remove_Click(object sender, EventArgs e)
{
RemoveTrack();
}
// Functions
private void SetNoDefault()
{
int c = 0;
foreach (ListViewItem item in lv_subList.Items)
{
if (SubList[c].SrtPath == "-")
{
if (item.SubItems[3].Text == "Yes")
{
item.SubItems[3].Text = "No";
SubList[c].Default = "No";
}
}
c++;
}
}
private void setNoSrtDefault()
{
int c = 0;
foreach (ListViewItem item in lv_subList.Items)
{
if (SubList[c].SrtPath != "-")
{
if (item.SubItems[3].Text == "Yes")
{
item.SubItems[3].Text = "No";
SubList[c].Default = "No";
}
}
c++;
}
}
private void SetNoBurned()
{
int c = 0;
foreach (ListViewItem item in lv_subList.Items)
{
if (item.SubItems[2].Text == "Yes")
{
item.SubItems[2].Text = "No";
SubList[c].Burned = "No";
}
c++;
}
}
private void RemoveTrack()
{
// Remove the Item and reselect the control if the following conditions are met.
if (lv_subList.SelectedItems.Count != 0)
{
// Record the current selected index.
int currentPosition = lv_subList.SelectedIndices[0];
int selectedInd = lv_subList.SelectedIndices[0];
lv_subList.Items.RemoveAt(selectedInd);
SubList.RemoveAt(selectedInd);
// Now reslect the correct item and give focus to the list.
if (lv_subList.Items.Count != 0)
{
if (currentPosition <= (lv_subList.Items.Count - 1))
lv_subList.Items[currentPosition].Selected = true;
else if (currentPosition > (lv_subList.Items.Count - 1))
lv_subList.Items[lv_subList.Items.Count - 1].Selected = true;
lv_subList.Select();
}
}
}
// Public Functions
public void Clear()
{
lv_subList.Items.Clear();
SubList.Clear();
}
public void SmartClear()
{
/* Smart clear will only remove subtitle tracks that do not have an equivlent
for the new source / title which the user has selected. */
throw new NotImplementedException();
}
public Boolean RequiresM4V()
{
foreach (ListViewItem item in lv_subList.Items)
{
if (item.SubItems.Count != 5)
return true;
if (item.SubItems[1].Text.Contains("(Text)"))
return true;
}
return false;
}
public void SetSubtitleTrackAuto(object[] subs)
{
drp_subtitleTracks.Items.Clear();
drp_subtitleTracks.Items.Add("Foreign Audio Search (Bitmap)");
drp_subtitleTracks.Items.AddRange(subs);
drp_subtitleTracks.SelectedIndex = 0;
Clear();
// Handle Native Language and "Dub Foreign language audio" and "Use Foreign language audio and Subtitles" Options
if (Properties.Settings.Default.NativeLanguage != "Any")
{
if (!Properties.Settings.Default.DubAudio) // We need to add a subtitle track if this is false.
{
int i = 0;
foreach (object item in drp_subtitleTracks.Items)
{
if (item.ToString().Contains(Properties.Settings.Default.NativeLanguage))
drp_subtitleTracks.SelectedIndex = i;
i++;
}
btn_addSubTrack_Click(this, new EventArgs());
}
}
}
public void SetContainer(int value)
{
_fileContainer = value;
Boolean trigger = false;
if (_fileContainer != 1)
foreach (ListViewItem item in lv_subList.Items)
{
if (item.SubItems[1].Text.Contains("Bitmap"))
{
if (trigger)
lv_subList.Items.Remove(item);
trigger = true;
}
}
}
public List<SubtitleInfo> GetSubtitleInfoList()
{
return SubList;
}
}
public class SubtitleInfo
{
public string Track { get; set; }
public string Forced { get; set; }
public string Burned { get; set; }
public string Default { get; set; }
public string SrtLang { get; set; }
public string SrtCharCode { get; set; }
public int SrtOffset { get; set; }
public string SrtPath { get; set; }
public string SrtFileName { get; set; }
public ListViewItem ListView
{
get
{
ListViewItem listTrack = new ListViewItem(Track);
listTrack.SubItems.Add(Forced);
listTrack.SubItems.Add(Burned);
listTrack.SubItems.Add(Default);
listTrack.SubItems.Add(SrtLang);
listTrack.SubItems.Add(SrtCharCode);
listTrack.SubItems.Add(SrtOffset.ToString());
return listTrack;
}
}
}
}
|