This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
forked from chenyanghotstar/go-astisub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssa.go
1263 lines (1183 loc) · 35.1 KB
/
ssa.go
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package astisub
import (
"bufio"
"fmt"
"io"
"regexp"
"sort"
"strconv"
"strings"
"time"
"github.com/asticode/go-astilog"
astiptr "github.com/asticode/go-astitools/ptr"
"github.com/pkg/errors"
)
// https://www.matroska.org/technical/specs/subtitles/ssa.html
// http://moodub.free.fr/video/ass-specs.doc
// https://en.wikipedia.org/wiki/SubStation_Alpha
// SSA alignment
const (
ssaAlignmentCentered = 2
ssaAlignmentLeft = 1
ssaAlignmentLeftJustifiedTopTitle = 5
ssaAlignmentMidTitle = 8
ssaAlignmentRight = 3
ssaAlignmentTopTitle = 4
)
// SSA border styles
const (
ssaBorderStyleOpaqueBox = 3
ssaBorderStyleOutlineAndDropShadow = 1
)
// SSA collisions
const (
ssaCollisionsNormal = "Normal"
ssaCollisionsReverse = "Reverse"
)
// SSA event categories
const (
ssaEventCategoryCommand = "Command"
ssaEventCategoryComment = "Comment"
ssaEventCategoryDialogue = "Dialogue"
ssaEventCategoryMovie = "Movie"
ssaEventCategoryPicture = "Picture"
ssaEventCategorySound = "Sound"
)
// SSA event format names
const (
ssaEventFormatNameEffect = "Effect"
ssaEventFormatNameEnd = "End"
ssaEventFormatNameLayer = "Layer"
ssaEventFormatNameMarginL = "MarginL"
ssaEventFormatNameMarginR = "MarginR"
ssaEventFormatNameMarginV = "MarginV"
ssaEventFormatNameMarked = "Marked"
ssaEventFormatNameName = "Name"
ssaEventFormatNameStart = "Start"
ssaEventFormatNameStyle = "Style"
ssaEventFormatNameText = "Text"
)
// SSA script info names
const (
ssaScriptInfoNameCollisions = "Collisions"
ssaScriptInfoNameOriginalEditing = "Original Editing"
ssaScriptInfoNameOriginalScript = "Original Script"
ssaScriptInfoNameOriginalTiming = "Original Timing"
ssaScriptInfoNameOriginalTranslation = "Original Translation"
ssaScriptInfoNamePlayDepth = "PlayDepth"
ssaScriptInfoNamePlayResX = "PlayResX"
ssaScriptInfoNamePlayResY = "PlayResY"
ssaScriptInfoNameScriptType = "ScriptType"
ssaScriptInfoNameScriptUpdatedBy = "Script Updated By"
ssaScriptInfoNameSynchPoint = "Synch Point"
ssaScriptInfoNameTimer = "Timer"
ssaScriptInfoNameTitle = "Title"
ssaScriptInfoNameUpdateDetails = "Update Details"
ssaScriptInfoNameWrapStyle = "WrapStyle"
)
// SSA section names
const (
ssaSectionNameEvents = "events"
ssaSectionNameScriptInfo = "script.info"
ssaSectionNameStyles = "styles"
ssaSectionNameUnknown = "unknown"
)
// SSA style format names
const (
ssaStyleFormatNameAlignment = "Alignment"
ssaStyleFormatNameAlphaLevel = "AlphaLevel"
ssaStyleFormatNameAngle = "Angle"
ssaStyleFormatNameBackColour = "BackColour"
ssaStyleFormatNameBold = "Bold"
ssaStyleFormatNameBorderStyle = "BorderStyle"
ssaStyleFormatNameEncoding = "Encoding"
ssaStyleFormatNameFontName = "Fontname"
ssaStyleFormatNameFontSize = "Fontsize"
ssaStyleFormatNameItalic = "Italic"
ssaStyleFormatNameMarginL = "MarginL"
ssaStyleFormatNameMarginR = "MarginR"
ssaStyleFormatNameMarginV = "MarginV"
ssaStyleFormatNameName = "Name"
ssaStyleFormatNameOutline = "Outline"
ssaStyleFormatNameOutlineColour = "OutlineColour"
ssaStyleFormatNamePrimaryColour = "PrimaryColour"
ssaStyleFormatNameScaleX = "ScaleX"
ssaStyleFormatNameScaleY = "ScaleY"
ssaStyleFormatNameSecondaryColour = "SecondaryColour"
ssaStyleFormatNameShadow = "Shadow"
ssaStyleFormatNameSpacing = "Spacing"
ssaStyleFormatNameStrikeout = "Strikeout"
ssaStyleFormatNameTertiaryColour = "TertiaryColour"
ssaStyleFormatNameUnderline = "Underline"
)
// SSA wrap style
const (
ssaWrapStyleEndOfLineWordWrapping = "1"
ssaWrapStyleNoWordWrapping = "2"
ssaWrapStyleSmartWrapping = "0"
ssaWrapStyleSmartWrappingWithLowerLinesGettingWider = "3"
)
// SSA regexp
var ssaRegexpEffect = regexp.MustCompile("\\{[^\\{]+\\}")
// ReadFromSSA parses an .ssa content
func ReadFromSSA(i io.Reader) (o *Subtitles, err error) {
// Init
o = NewSubtitles()
var scanner = bufio.NewScanner(i)
var si = &ssaScriptInfo{}
var ss = []*ssaStyle{}
var es = []*ssaEvent{}
// Scan
var line, sectionName string
var format map[int]string
isFirstLine := true
for scanner.Scan() {
// Fetch line
line = strings.TrimSpace(scanner.Text())
// Remove BOM header
if isFirstLine {
line = strings.TrimPrefix(line, string(BytesBOM))
isFirstLine = false
}
// Empty line
if len(line) == 0 {
continue
}
// Section name
if strings.HasPrefix(line, "[") && strings.HasSuffix(line, "]") {
switch strings.ToLower(line[1 : len(line)-1]) {
case "events":
sectionName = ssaSectionNameEvents
format = make(map[int]string)
continue
case "script info":
sectionName = ssaSectionNameScriptInfo
continue
case "v4 styles", "v4+ styles", "v4 styles+":
sectionName = ssaSectionNameStyles
format = make(map[int]string)
continue
default:
astilog.Debugf("astisub: unknown section: %s", line)
sectionName = ssaSectionNameUnknown
continue
}
}
// Unknown section
if sectionName == ssaSectionNameUnknown {
continue
}
// Comment
if len(line) > 0 && line[0] == ';' {
si.comments = append(si.comments, strings.TrimSpace(line[1:]))
continue
}
// Split on ":"
var split = strings.Split(line, ":")
if len(split) < 2 || split[0] == "" {
astilog.Debugf("astisub: not understood: '%s', ignoring", line)
continue
}
var header = strings.TrimSpace(split[0])
var content = strings.TrimSpace(strings.Join(split[1:], ":"))
// Switch on section name
switch sectionName {
case ssaSectionNameScriptInfo:
if err = si.parse(header, content); err != nil {
err = errors.Wrap(err, "astisub: parsing script info block failed")
return
}
case ssaSectionNameEvents, ssaSectionNameStyles:
// Parse format
if header == "Format" {
for idx, item := range strings.Split(content, ",") {
format[idx] = strings.TrimSpace(item)
}
} else {
// No format provided
if len(format) == 0 {
err = fmt.Errorf("astisub: no %s format provided", sectionName)
return
}
// Switch on section name
switch sectionName {
case ssaSectionNameEvents:
var e *ssaEvent
if e, err = newSSAEventFromString(header, content, format); err != nil {
err = errors.Wrap(err, "astisub: building new ssa event failed")
return
}
es = append(es, e)
case ssaSectionNameStyles:
var s *ssaStyle
if s, err = newSSAStyleFromString(content, format); err != nil {
err = errors.Wrap(err, "astisub: building new ssa style failed")
return
}
ss = append(ss, s)
}
}
}
}
// Set metadata
o.Metadata = si.metadata()
// Loop through styles
for _, s := range ss {
var st = s.style()
o.Styles[st.ID] = st
}
// Loop through events
for _, e := range es {
// Only process dialogues
if e.category == ssaEventCategoryDialogue {
// Build item
var item *Item
if item, err = e.item(o.Styles); err != nil {
return
}
// Append item
o.Items = append(o.Items, item)
}
}
return
}
// newColorFromSSAColor builds a new color based on an SSA color
func newColorFromSSAColor(i string) (_ *Color, _ error) {
// Empty
if len(i) == 0 {
return
}
// Check whether input is decimal or hexadecimal
var s = i
var base = 10
if strings.HasPrefix(i, "&H") {
s = i[2:]
base = 16
}
return newColorFromSSAString(s, base)
}
// newSSAColorFromColor builds a new SSA color based on a color
func newSSAColorFromColor(i *Color) string {
return "&H" + i.SSAString()
}
// ssaScriptInfo represents an SSA script info block
type ssaScriptInfo struct {
collisions string
comments []string
originalEditing string
originalScript string
originalTiming string
originalTranslation string
playDepth *int
playResX, playResY *int
scriptType string
scriptUpdatedBy string
synchPoint string
timer *float64
title string
updateDetails string
wrapStyle string
}
// newSSAScriptInfo builds an SSA script info block based on metadata
func newSSAScriptInfo(m *Metadata) (o *ssaScriptInfo) {
// Init
o = &ssaScriptInfo{}
// Add metadata
if m != nil {
o.collisions = m.SSACollisions
o.comments = m.Comments
o.originalEditing = m.SSAOriginalEditing
o.originalScript = m.SSAOriginalScript
o.originalTiming = m.SSAOriginalTiming
o.originalTranslation = m.SSAOriginalTranslation
o.playDepth = m.SSAPlayDepth
o.playResX = m.SSAPlayResX
o.playResY = m.SSAPlayResY
o.scriptType = m.SSAScriptType
o.scriptUpdatedBy = m.SSAScriptUpdatedBy
o.synchPoint = m.SSASynchPoint
o.timer = m.SSATimer
o.title = m.Title
o.updateDetails = m.SSAUpdateDetails
o.wrapStyle = m.SSAWrapStyle
}
return
}
// parse parses a script info header/content
func (b *ssaScriptInfo) parse(header, content string) (err error) {
switch header {
case ssaScriptInfoNameCollisions:
b.collisions = content
case ssaScriptInfoNameOriginalEditing:
b.originalEditing = content
case ssaScriptInfoNameOriginalScript:
b.originalScript = content
case ssaScriptInfoNameOriginalTiming:
b.originalTiming = content
case ssaScriptInfoNameOriginalTranslation:
b.originalTranslation = content
case ssaScriptInfoNameScriptType:
b.scriptType = content
case ssaScriptInfoNameScriptUpdatedBy:
b.scriptUpdatedBy = content
case ssaScriptInfoNameSynchPoint:
b.synchPoint = content
case ssaScriptInfoNameTitle:
b.title = content
case ssaScriptInfoNameUpdateDetails:
b.updateDetails = content
case ssaScriptInfoNameWrapStyle:
b.wrapStyle = content
// Int
case ssaScriptInfoNamePlayResX, ssaScriptInfoNamePlayResY, ssaScriptInfoNamePlayDepth:
var v int
if v, err = strconv.Atoi(content); err != nil {
err = errors.Wrapf(err, "astisub: atoi of %s failed", content)
}
switch header {
case ssaScriptInfoNamePlayDepth:
b.playDepth = astiptr.Int(v)
case ssaScriptInfoNamePlayResX:
b.playResX = astiptr.Int(v)
case ssaScriptInfoNamePlayResY:
b.playResY = astiptr.Int(v)
}
// Float
case ssaScriptInfoNameTimer:
var v float64
if v, err = strconv.ParseFloat(strings.Replace(content, ",", ".", -1), 64); err != nil {
err = errors.Wrapf(err, "astisub: parseFloat of %s failed", content)
}
b.timer = astiptr.Float(v)
}
return
}
// metadata returns the block as Metadata
func (b *ssaScriptInfo) metadata() *Metadata {
return &Metadata{
Comments: b.comments,
SSACollisions: b.collisions,
SSAOriginalEditing: b.originalEditing,
SSAOriginalScript: b.originalScript,
SSAOriginalTiming: b.originalTiming,
SSAOriginalTranslation: b.originalTranslation,
SSAPlayDepth: b.playDepth,
SSAPlayResX: b.playResX,
SSAPlayResY: b.playResY,
SSAScriptType: b.scriptType,
SSAScriptUpdatedBy: b.scriptUpdatedBy,
SSASynchPoint: b.synchPoint,
SSATimer: b.timer,
SSAUpdateDetails: b.updateDetails,
SSAWrapStyle: b.wrapStyle,
Title: b.title,
}
}
// bytes returns the block as bytes
func (b *ssaScriptInfo) bytes() (o []byte) {
o = []byte("[Script Info]")
o = append(o, bytesLineSeparator...)
for _, c := range b.comments {
o = appendStringToBytesWithNewLine(o, "; "+c)
}
if len(b.collisions) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameCollisions+": "+b.collisions)
}
if len(b.originalEditing) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameOriginalEditing+": "+b.originalEditing)
}
if len(b.originalScript) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameOriginalScript+": "+b.originalScript)
}
if len(b.originalTiming) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameOriginalTiming+": "+b.originalTiming)
}
if len(b.originalTranslation) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameOriginalTranslation+": "+b.originalTranslation)
}
if b.playDepth != nil {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNamePlayDepth+": "+strconv.Itoa(*b.playDepth))
}
if b.playResX != nil {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNamePlayResX+": "+strconv.Itoa(*b.playResX))
}
if b.playResY != nil {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNamePlayResY+": "+strconv.Itoa(*b.playResY))
}
if len(b.scriptType) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameScriptType+": "+b.scriptType)
}
if len(b.scriptUpdatedBy) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameScriptUpdatedBy+": "+b.scriptUpdatedBy)
}
if len(b.synchPoint) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameSynchPoint+": "+b.synchPoint)
}
if b.timer != nil {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameTimer+": "+strings.Replace(strconv.FormatFloat(*b.timer, 'f', -1, 64), ".", ",", -1))
}
if len(b.title) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameTitle+": "+b.title)
}
if len(b.updateDetails) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameUpdateDetails+": "+b.updateDetails)
}
if len(b.wrapStyle) > 0 {
o = appendStringToBytesWithNewLine(o, ssaScriptInfoNameWrapStyle+": "+b.wrapStyle)
}
return
}
// ssaStyle represents an SSA style
type ssaStyle struct {
alignment *int
alphaLevel *float64
angle *float64 // degrees
backColour *Color
bold *bool
borderStyle *int
encoding *int
fontName string
fontSize *float64
italic *bool
outline *float64 // pixels
outlineColour *Color
marginLeft *int // pixels
marginRight *int // pixels
marginVertical *int // pixels
name string
primaryColour *Color
scaleX *float64 // %
scaleY *float64 // %
secondaryColour *Color
shadow *float64 // pixels
spacing *float64 // pixels
strikeout *bool
underline *bool
}
// newSSAStyleFromStyle returns an SSA style based on a Style
func newSSAStyleFromStyle(i Style) *ssaStyle {
return &ssaStyle{
alignment: i.InlineStyle.SSAAlignment,
alphaLevel: i.InlineStyle.SSAAlphaLevel,
angle: i.InlineStyle.SSAAngle,
backColour: i.InlineStyle.SSABackColour,
bold: i.InlineStyle.SSABold,
borderStyle: i.InlineStyle.SSABorderStyle,
encoding: i.InlineStyle.SSAEncoding,
fontName: i.InlineStyle.SSAFontName,
fontSize: i.InlineStyle.SSAFontSize,
italic: i.InlineStyle.SSAItalic,
outline: i.InlineStyle.SSAOutline,
outlineColour: i.InlineStyle.SSAOutlineColour,
marginLeft: i.InlineStyle.SSAMarginLeft,
marginRight: i.InlineStyle.SSAMarginRight,
marginVertical: i.InlineStyle.SSAMarginVertical,
name: i.ID,
primaryColour: i.InlineStyle.SSAPrimaryColour,
scaleX: i.InlineStyle.SSAScaleX,
scaleY: i.InlineStyle.SSAScaleY,
secondaryColour: i.InlineStyle.SSASecondaryColour,
shadow: i.InlineStyle.SSAShadow,
spacing: i.InlineStyle.SSASpacing,
strikeout: i.InlineStyle.SSAStrikeout,
underline: i.InlineStyle.SSAUnderline,
}
}
// newSSAStyleFromString returns an SSA style based on an input string and a format
func newSSAStyleFromString(content string, format map[int]string) (s *ssaStyle, err error) {
// Split content
var items = strings.Split(content, ",")
// Not enough items
if len(items) < len(format) {
err = fmt.Errorf("astisub: content has %d items whereas style format has %d items", len(items), len(format))
return
}
// Loop through items
s = &ssaStyle{}
for idx, item := range items {
// Index not found in format
var attr string
var ok bool
if attr, ok = format[idx]; !ok {
err = fmt.Errorf("astisub: index %d not found in style format %+v", idx, format)
return
}
// Switch on attribute name
switch attr {
// Bool
case ssaStyleFormatNameBold, ssaStyleFormatNameItalic, ssaStyleFormatNameStrikeout,
ssaStyleFormatNameUnderline:
var b = item == "-1"
switch attr {
case ssaStyleFormatNameBold:
s.bold = astiptr.Bool(b)
case ssaStyleFormatNameItalic:
s.italic = astiptr.Bool(b)
case ssaStyleFormatNameStrikeout:
s.strikeout = astiptr.Bool(b)
case ssaStyleFormatNameUnderline:
s.underline = astiptr.Bool(b)
}
// Color
case ssaStyleFormatNamePrimaryColour, ssaStyleFormatNameSecondaryColour,
ssaStyleFormatNameTertiaryColour, ssaStyleFormatNameOutlineColour, ssaStyleFormatNameBackColour:
// Build color
var c *Color
if c, err = newColorFromSSAColor(item); err != nil {
err = errors.Wrapf(err, "astisub: building new %s from ssa color %s failed", attr, item)
return
}
// Set color
switch attr {
case ssaStyleFormatNameBackColour:
s.backColour = c
case ssaStyleFormatNamePrimaryColour:
s.primaryColour = c
case ssaStyleFormatNameSecondaryColour:
s.secondaryColour = c
case ssaStyleFormatNameTertiaryColour, ssaStyleFormatNameOutlineColour:
s.outlineColour = c
}
// Float
case ssaStyleFormatNameAlphaLevel, ssaStyleFormatNameAngle, ssaStyleFormatNameFontSize,
ssaStyleFormatNameScaleX, ssaStyleFormatNameScaleY,
ssaStyleFormatNameOutline, ssaStyleFormatNameShadow, ssaStyleFormatNameSpacing:
// Parse float
var f float64
if f, err = strconv.ParseFloat(item, 64); err != nil {
err = errors.Wrapf(err, "astisub: parsing float %s failed", item)
return
}
// Set float
switch attr {
case ssaStyleFormatNameAlphaLevel:
s.alphaLevel = astiptr.Float(f)
case ssaStyleFormatNameAngle:
s.angle = astiptr.Float(f)
case ssaStyleFormatNameFontSize:
s.fontSize = astiptr.Float(f)
case ssaStyleFormatNameScaleX:
s.scaleX = astiptr.Float(f)
case ssaStyleFormatNameScaleY:
s.scaleY = astiptr.Float(f)
case ssaStyleFormatNameOutline:
s.outline = astiptr.Float(f)
case ssaStyleFormatNameShadow:
s.shadow = astiptr.Float(f)
case ssaStyleFormatNameSpacing:
s.spacing = astiptr.Float(f)
}
// Int
case ssaStyleFormatNameAlignment, ssaStyleFormatNameBorderStyle, ssaStyleFormatNameEncoding,
ssaStyleFormatNameMarginL, ssaStyleFormatNameMarginR, ssaStyleFormatNameMarginV:
// Parse int
var i int
if i, err = strconv.Atoi(item); err != nil {
err = errors.Wrapf(err, "astisub: atoi of %s failed", item)
return
}
// Set int
switch attr {
case ssaStyleFormatNameAlignment:
s.alignment = astiptr.Int(i)
case ssaStyleFormatNameBorderStyle:
s.borderStyle = astiptr.Int(i)
case ssaStyleFormatNameEncoding:
s.encoding = astiptr.Int(i)
case ssaStyleFormatNameMarginL:
s.marginLeft = astiptr.Int(i)
case ssaStyleFormatNameMarginR:
s.marginRight = astiptr.Int(i)
case ssaStyleFormatNameMarginV:
s.marginVertical = astiptr.Int(i)
}
// String
case ssaStyleFormatNameFontName, ssaStyleFormatNameName:
switch attr {
case ssaStyleFormatNameFontName:
s.fontName = item
case ssaStyleFormatNameName:
s.name = item
}
}
}
return
}
// ssaUpdateFormat updates an SSA format
func ssaUpdateFormat(n string, formatMap map[string]bool, format []string) []string {
if _, ok := formatMap[n]; !ok {
formatMap[n] = true
format = append(format, n)
}
return format
}
// updateFormat updates the format based on the non empty fields
func (s ssaStyle) updateFormat(formatMap map[string]bool, format []string) []string {
if s.alignment != nil {
format = ssaUpdateFormat(ssaStyleFormatNameAlignment, formatMap, format)
}
if s.alphaLevel != nil {
format = ssaUpdateFormat(ssaStyleFormatNameAlphaLevel, formatMap, format)
}
if s.angle != nil {
format = ssaUpdateFormat(ssaStyleFormatNameAngle, formatMap, format)
}
if s.backColour != nil {
format = ssaUpdateFormat(ssaStyleFormatNameBackColour, formatMap, format)
}
if s.bold != nil {
format = ssaUpdateFormat(ssaStyleFormatNameBold, formatMap, format)
}
if s.borderStyle != nil {
format = ssaUpdateFormat(ssaStyleFormatNameBorderStyle, formatMap, format)
}
if s.encoding != nil {
format = ssaUpdateFormat(ssaStyleFormatNameEncoding, formatMap, format)
}
if len(s.fontName) > 0 {
format = ssaUpdateFormat(ssaStyleFormatNameFontName, formatMap, format)
}
if s.fontSize != nil {
format = ssaUpdateFormat(ssaStyleFormatNameFontSize, formatMap, format)
}
if s.italic != nil {
format = ssaUpdateFormat(ssaStyleFormatNameItalic, formatMap, format)
}
if s.marginLeft != nil {
format = ssaUpdateFormat(ssaStyleFormatNameMarginL, formatMap, format)
}
if s.marginRight != nil {
format = ssaUpdateFormat(ssaStyleFormatNameMarginR, formatMap, format)
}
if s.marginVertical != nil {
format = ssaUpdateFormat(ssaStyleFormatNameMarginV, formatMap, format)
}
if s.outline != nil {
format = ssaUpdateFormat(ssaStyleFormatNameOutline, formatMap, format)
}
if s.outlineColour != nil {
format = ssaUpdateFormat(ssaStyleFormatNameOutlineColour, formatMap, format)
}
if s.primaryColour != nil {
format = ssaUpdateFormat(ssaStyleFormatNamePrimaryColour, formatMap, format)
}
if s.scaleX != nil {
format = ssaUpdateFormat(ssaStyleFormatNameScaleX, formatMap, format)
}
if s.scaleY != nil {
format = ssaUpdateFormat(ssaStyleFormatNameScaleY, formatMap, format)
}
if s.secondaryColour != nil {
format = ssaUpdateFormat(ssaStyleFormatNameSecondaryColour, formatMap, format)
}
if s.shadow != nil {
format = ssaUpdateFormat(ssaStyleFormatNameShadow, formatMap, format)
}
if s.spacing != nil {
format = ssaUpdateFormat(ssaStyleFormatNameSpacing, formatMap, format)
}
if s.strikeout != nil {
format = ssaUpdateFormat(ssaStyleFormatNameStrikeout, formatMap, format)
}
if s.underline != nil {
format = ssaUpdateFormat(ssaStyleFormatNameUnderline, formatMap, format)
}
return format
}
// string returns the block as a string
func (s ssaStyle) string(format []string) string {
var ss = []string{s.name}
for _, attr := range format {
var v string
var found = true
switch attr {
// Bool
case ssaStyleFormatNameBold, ssaStyleFormatNameItalic, ssaStyleFormatNameStrikeout,
ssaStyleFormatNameUnderline:
var b *bool
switch attr {
case ssaStyleFormatNameBold:
b = s.bold
case ssaStyleFormatNameItalic:
b = s.italic
case ssaStyleFormatNameStrikeout:
b = s.strikeout
case ssaStyleFormatNameUnderline:
b = s.underline
}
if b != nil {
v = "0"
if *b {
v = "1"
}
}
// Color
case ssaStyleFormatNamePrimaryColour, ssaStyleFormatNameSecondaryColour,
ssaStyleFormatNameOutlineColour, ssaStyleFormatNameBackColour:
var c *Color
switch attr {
case ssaStyleFormatNameBackColour:
c = s.backColour
case ssaStyleFormatNamePrimaryColour:
c = s.primaryColour
case ssaStyleFormatNameSecondaryColour:
c = s.secondaryColour
case ssaStyleFormatNameOutlineColour:
c = s.outlineColour
}
if c != nil {
v = newSSAColorFromColor(c)
}
// Float
case ssaStyleFormatNameAlphaLevel, ssaStyleFormatNameAngle, ssaStyleFormatNameFontSize,
ssaStyleFormatNameScaleX, ssaStyleFormatNameScaleY,
ssaStyleFormatNameOutline, ssaStyleFormatNameShadow, ssaStyleFormatNameSpacing:
var f *float64
switch attr {
case ssaStyleFormatNameAlphaLevel:
f = s.alphaLevel
case ssaStyleFormatNameAngle:
f = s.angle
case ssaStyleFormatNameFontSize:
f = s.fontSize
case ssaStyleFormatNameScaleX:
f = s.scaleX
case ssaStyleFormatNameScaleY:
f = s.scaleY
case ssaStyleFormatNameOutline:
f = s.outline
case ssaStyleFormatNameShadow:
f = s.shadow
case ssaStyleFormatNameSpacing:
f = s.spacing
}
if f != nil {
v = strconv.FormatFloat(*f, 'f', 3, 64)
}
// Int
case ssaStyleFormatNameAlignment, ssaStyleFormatNameBorderStyle, ssaStyleFormatNameEncoding,
ssaStyleFormatNameMarginL, ssaStyleFormatNameMarginR, ssaStyleFormatNameMarginV:
var i *int
switch attr {
case ssaStyleFormatNameAlignment:
i = s.alignment
case ssaStyleFormatNameBorderStyle:
i = s.borderStyle
case ssaStyleFormatNameEncoding:
i = s.encoding
case ssaStyleFormatNameMarginL:
i = s.marginLeft
case ssaStyleFormatNameMarginR:
i = s.marginRight
case ssaStyleFormatNameMarginV:
i = s.marginVertical
}
if i != nil {
v = strconv.Itoa(*i)
}
// String
case ssaStyleFormatNameFontName:
switch attr {
case ssaStyleFormatNameFontName:
v = s.fontName
}
default:
found = false
}
if found {
ss = append(ss, v)
}
}
return strings.Join(ss, ",")
}
// style converts ssaStyle to Style
func (s ssaStyle) style() (o *Style) {
o = &Style{
ID: s.name,
InlineStyle: &StyleAttributes{
SSAAlignment: s.alignment,
SSAAlphaLevel: s.alphaLevel,
SSAAngle: s.angle,
SSABackColour: s.backColour,
SSABold: s.bold,
SSABorderStyle: s.borderStyle,
SSAEncoding: s.encoding,
SSAFontName: s.fontName,
SSAFontSize: s.fontSize,
SSAItalic: s.italic,
SSAOutline: s.outline,
SSAOutlineColour: s.outlineColour,
SSAMarginLeft: s.marginLeft,
SSAMarginRight: s.marginRight,
SSAMarginVertical: s.marginVertical,
SSAPrimaryColour: s.primaryColour,
SSAScaleX: s.scaleX,
SSAScaleY: s.scaleY,
SSASecondaryColour: s.secondaryColour,
SSAShadow: s.shadow,
SSASpacing: s.spacing,
SSAStrikeout: s.strikeout,
SSAUnderline: s.underline,
},
}
o.InlineStyle.propagateSSAAttributes()
return
}
// ssaEvent represents an SSA event
type ssaEvent struct {
category string
effect string
end time.Duration
layer *int
marked *bool
marginLeft *int // pixels
marginRight *int // pixels
marginVertical *int // pixels
name string
start time.Duration
style string
text string
}
// newSSAEventFromItem returns an SSA Event based on an input item
func newSSAEventFromItem(i Item) (e *ssaEvent) {
// Init
e = &ssaEvent{
category: ssaEventCategoryDialogue,
end: i.EndAt,
start: i.StartAt,
}
// Style
if i.Style != nil {
e.style = i.Style.ID
}
// Inline style
if i.InlineStyle != nil {
e.effect = i.InlineStyle.SSAEffect
e.layer = i.InlineStyle.SSALayer
e.marginLeft = i.InlineStyle.SSAMarginLeft
e.marginRight = i.InlineStyle.SSAMarginRight
e.marginVertical = i.InlineStyle.SSAMarginVertical
e.marked = i.InlineStyle.SSAMarked
}
// Text
var lines []string
for _, l := range i.Lines {
var items []string
for _, item := range l.Items {
var s string
if item.InlineStyle != nil && len(item.InlineStyle.SSAEffect) > 0 {
s += item.InlineStyle.SSAEffect
}
s += item.Text
items = append(items, s)
}
if len(l.VoiceName) > 0 {
e.name = l.VoiceName
}
lines = append(lines, strings.Join(items, ""))
}
e.text = strings.Join(lines, "\\n")
return
}
// newSSAEventFromString returns an SSA event based on an input string and a format
func newSSAEventFromString(header, content string, format map[int]string) (e *ssaEvent, err error) {
// Split content
var items = strings.Split(content, ",")
// Not enough items
if len(items) < len(format) {
err = fmt.Errorf("astisub: content has %d items whereas style format has %d items", len(items), len(format))
return
}
// Last item may contain commas, therefore we need to fix it
items[len(format)-1] = strings.Join(items[len(format)-1:], ",")
items = items[:len(format)]
// Loop through items
e = &ssaEvent{category: header}
for idx, item := range items {
// Index not found in format
var attr string
var ok bool
if attr, ok = format[idx]; !ok {
err = fmt.Errorf("astisub: index %d not found in event format %+v", idx, format)
return
}
// Switch on attribute name
switch attr {
// Duration
case ssaEventFormatNameStart, ssaEventFormatNameEnd:
// Parse duration
var d time.Duration
if d, err = parseDurationSSA(item); err != nil {
err = errors.Wrapf(err, "astisub: parsing ssa duration %s failed", item)
return
}
// Set duration
switch attr {
case ssaEventFormatNameEnd:
e.end = d
case ssaEventFormatNameStart:
e.start = d
}
// Int
case ssaEventFormatNameLayer, ssaEventFormatNameMarginL, ssaEventFormatNameMarginR,
ssaEventFormatNameMarginV:
// Parse int
var i int
if i, err = strconv.Atoi(item); err != nil {
err = errors.Wrapf(err, "astisub: atoi of %s failed", item)
return
}
// Set int
switch attr {
case ssaEventFormatNameLayer:
e.layer = astiptr.Int(i)
case ssaEventFormatNameMarginL:
e.marginLeft = astiptr.Int(i)
case ssaEventFormatNameMarginR:
e.marginRight = astiptr.Int(i)
case ssaEventFormatNameMarginV:
e.marginVertical = astiptr.Int(i)