-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
238 lines (195 loc) · 7.54 KB
/
Program.cs
File metadata and controls
238 lines (195 loc) · 7.54 KB
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
namespace SrtMerge
{
internal class Program
{
/*
static SrtFile CompactData( SrtFile input )
{
var InputData = input;
string CurrentText = "";
SrtFile CondensedData = new();
TimeSpan LastTime = new TimeSpan( 0, 0, 0, 0, 0 );
int LastIndex = 1;
for ( int iblock = 0; iblock < InputData.Blocks.Count; iblock++ )
{
var b = InputData.Blocks[iblock];
if ( CurrentText.Length + b.Content.Length > 500 )
{
CondensedData.Blocks.Add( new SrtBlock( LastIndex, LastTime, LastTime + new TimeSpan( 0, 1, 30 ), CurrentText ) );
LastTime = LastTime + new TimeSpan( 0, 1, 30 );
LastIndex++;
CurrentText = b.Content;
}
else
{
if ( !string.IsNullOrWhiteSpace( CurrentText ) )
{
CurrentText += " ";
}
CurrentText += b.Content;
}
}
if ( !string.IsNullOrWhiteSpace( CurrentText ) )
{
CondensedData.Blocks.Add( new SrtBlock( LastIndex, LastTime, LastTime + new TimeSpan( 0, 1, 30 ), CurrentText ) );
}
return CondensedData;
}
*/
static SrtBlock MergeBlocks( List<SrtBlock> blocks, int idx, TimeSpan start, int duration )
{
SrtBlock o = new();
o.Start = start;
o.End = o.Start + new TimeSpan( 0, 0, duration );
o.Index = idx;
o.Content = string.Join( " ", blocks.Select( x => x.Content ) );
return o;
}
static SrtFile CompactData2( SrtFile input, int lineLen, int duration, bool ignoreEnding )
{
SrtFile CondensedData = new();
List<(int, bool)> DataProcess = new();
foreach ( var b in input.Blocks )
{
var goodEnding = b.Content.Trim().EndsWith( "." ) || b.Content.Trim().EndsWith( "?" ) || b.Content.Trim().EndsWith( ";" );
if ( ignoreEnding )
{
goodEnding = true;
}
DataProcess.Add( (b.Content.Length, goodEnding) );
}
bool done = false;
int startIdx = 0;
int blockIdx = 1;
TimeSpan blockStart = new TimeSpan( 0, 0, 0 );
while ( !done )
{
int acc = 0;
int i;
for ( i = startIdx; i < DataProcess.Count; i++ )
{
acc += DataProcess[i].Item1;
acc += 1;
if ( acc >= lineLen )
{
break;
}
}
if ( i >= DataProcess.Count )
{
CondensedData.Blocks.Add( MergeBlocks( input.Blocks.Skip( startIdx ).ToList(), blockIdx, blockStart, duration ) );
done = true;
}
else
{
var lastValid = i - 1;
for ( ; lastValid > startIdx; lastValid-- )
{
if ( DataProcess[lastValid].Item2 )
{
break;
}
}
// Merge
CondensedData.Blocks.Add( MergeBlocks( input.Blocks.Skip( startIdx ).Take( 1 + lastValid - startIdx ).ToList(), blockIdx, blockStart, duration ) );
blockIdx++;
blockStart += new TimeSpan( 0, 0, duration );
startIdx = lastValid + 1;
}
}
return CondensedData;
}
static void ShowHelp()
{
Console.WriteLine( "Usage:" );
Console.WriteLine( "SrtMerge [options] [InputFile] [OutputFile]" );
Console.WriteLine( "" );
Console.WriteLine( "Options:" );
Console.WriteLine( "-l [lenght] Change merge block length (Default 500)" );
Console.WriteLine( "-d [duration s] Change the blocks' duration in the output (Default 60)" );
Console.WriteLine( "-a Skip checks for sentence end" );
Console.WriteLine( "-f Flatten text (i.e. remove endlines in blocks)" );
Console.WriteLine( "-h Show this help" );
Console.WriteLine( "" );
Console.WriteLine( "Example:" );
Console.WriteLine( "> SrtMerge -d 75 input.srt converted.srt" );
Console.WriteLine( "" );
}
static void Main( string[] args )
{
Console.WriteLine( "Srt Merger v1.03 - redy81" );
if ( args.Length < 2 )
{
Console.WriteLine( "Not enoug parameters!" );
Console.WriteLine();
ShowHelp();
return;
}
if ( args.Any( x => x == "-h" ) )
{
ShowHelp();
return;
}
string InputFile = "";
string OutputFile = "";
bool IgnoreEndings = false;
bool FlattenText = false;
int LineLength = 500;
int Duration = 60;
for ( int i = 0; i < args.Length; i++ )
{
switch ( args[i].ToLower() )
{
case "-a":
IgnoreEndings = true;
break;
case "-f":
FlattenText = true;
break;
case "-l":
try
{
LineLength = int.Parse( args[i + 1] );
i++;
}
catch
{
Console.WriteLine( "Invalid -l value" );
return;
}
break;
case "-d":
try
{
Duration = int.Parse( args[i + 1] );
i++;
}
catch
{
Console.WriteLine( "Invalid -d value" );
return;
}
break;
default:
{
if ( string.IsNullOrWhiteSpace( InputFile ) )
{
InputFile = args[i];
}
else if ( string.IsNullOrWhiteSpace( OutputFile ) )
{
OutputFile = args[i];
}
}
break;
}
}
var InputSrtFile = File.ReadAllLines( InputFile );
var InputData = new SrtFile( InputSrtFile.ToList() );
var CondensedData = CompactData2( InputData, LineLength, Duration, IgnoreEndings );
Console.WriteLine();
File.WriteAllText( OutputFile, CondensedData.GetFile( FlattenText) );
Console.WriteLine( $"Done! Blocks: {InputData.Blocks.Count} => {CondensedData.Blocks.Count}" );
}
}
}