-
Notifications
You must be signed in to change notification settings - Fork 1
/
subtitle.class.php
355 lines (313 loc) · 12 KB
/
subtitle.class.php
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
<?php
/**
* @author: Wojciech Bajon
* @version: $Id: subtitle.class.php,v 1.8 2009/11/06 08:16:06 wojtekb Exp $
* @license: Commercial.
* Udziela się nieodpłatnej licencji dla serwisu fansubis.pl.
* Każda modyfikacja musi zostać zgłoszona do mnie,
* czyli na adres: wojciech.bajon@gmail.com oraz zaznacz się, że nie można
* modyfikować metody subtitle::getAuthor().
* Dodanie kolejnych elementów jest możliwe w przypadku napisania obsługi
* formatu filmu.
*/
class SubtitleException extends Exception{}
class UploadException extends SubtitleException{}
class UnknownSubtitleException extends SubtitleException{}
/**
* Klasa bazowa reprezentująca zawatość pliku z napisami.
* Właściwe metody zaimplemntowane w klasach odpowiadających samym napisom :D
virtual class subtitle{
* Tablica pojedyńczych krotek napisów, array(start, end, text).
* Przy ASS zawiera pozostałe dane
array $events;
* Zmienne na przyszłość
string $head; /// - wszystko co nie jest krotkami napisów,
/// z pominięciem komentarzy
float $fps;
* Dane o autorze - prezentacja punbliczna, np. na www, patrz licencja
array final public static function getAuthor()
* Zwracana wartość jest dodawana na końcu tablicy zwracanej przez getAuthor()
array public function getGreetings()
}
*/
abstract class Subtitle /*throws SubtitleException, UploadException*/{
protected $events = Array();
protected $orginName=null;
private $encoding = null;
/**
* Set orginal file encoding.
* Ustaw kodowanie znaków w oryginalnym pliku. Jeżeli <strong>nie zostanie
* podane</strong>, system postara się wykryć, windows-1250 i przekoduje
* na utf-8.
* <strong>UWAGA</strong>: iso-8859-2 też wykrywa jako windows-1250
* Aby przekodować z innych formatów należy ustawić kodowanie.
*
* @param string file encoding
* @return void
*/
public function setEncoding($enc){
$this->encoding = $enc;
}
public function getEncoding(){
return $this->encoding;
}
protected $displayTime = 0.8;
/**
* Set time used, if end time is empty (TMPlayer).
* Ustawia czas, którzy będzie wykorzystywany w przypadku, kiedy nie ma
* czasu końcowego (w TMPlayer).
* @param float $t time.
*/
final public function setDisplayTime($t){
$this->displayTime = $t;
}
/**
* Open and parse subtitle file.
* Może otwierać plik przesłany przez przegłądarkę (Element tablicy $_FILES)
* lub bezpośrednio z dysku (nazwa na dysku).
* Metoda rzuca wyjątkami:
* <b>UploadException</b>
* err == -1: to nie jest prawidłowa tablica $_FILES
* err == -2: !is_uploaded_file
* err > 0: Błędy przesyłania, zobacz: http://pl.php.net/manual/pl/features.file-upload.errors.php
* <b>SubtitleException</b>
* err == 1: plik nie istnieje
* err == 2: nie mogę odczytać zawartości
*
* @param string -v1:$f - file name
* @param array -v2:$f - $_FILES[fieldname] (array from upload proccess)
* @return bool parse status
*/
public function open($f){
//print_pre($f);
if(is_array($f)){
if(isset($f['error']) && $f['error'] != 0)
throw new UploadException('Upload error', $f['error']);
if(empty($f['name']) || empty($f['tmp_name']) || empty($f['size']))
throw new UploadException('Invalid _FILES array', -1);
if(!is_uploaded_file($f['tmp_name']))
throw new UploadException('Possible upload attack', -2);
$fname = $f['tmp_name'];
$this->orginName = $f['name'];
} else {
$fname = $f;
$this->orginName = $f;
}
if(!file_exists($fname))
throw new SubtitleException(sprintf('Subtitle file: "%s" don\'t exists',
$this->orginName),
1);
$c = file_get_contents($fname);
if($c === false)
throw new SubtitleException(sprintf('I can\'t load subtitle file: "%s"',
$this->orginName),
2);
return $this->load($c);
}
//==========================================================================
public function openFromMultiUplad($name,$idx){
return $this->open(Array(
'name'=>$_FILES[$name]['name'][$idx],
'tmp_name'=>$_FILES[$name]['tmp_name'][$idx],
'size'=>$_FILES[$name]['size'][$idx],
'error'=>$_FILES[$name]['error'][$idx],
'type'=>$_FILES[$name]['type'][$idx]
));
}
//===========================================================================
/**
* Load and parse string with subtitle.
* Ładuje i przetwarza napisy (podane jako string).
*
* @param string $f: subtitle string
* @param string $orginName: Orginal filename
* @return bool parse status
*/
public function load(&$f, $orginName=null){
if(!empty($orginName))
$this->orginName = $orginName;
if($this->encoding != null)
$f = iconv($this->encoding,'utf-8',$f);
return $this->_parse($f);
}
//===========================================================================
/**
* Method to parse specified subtitle type.
* @param string $f: subtitle string
*/
abstract protected function _parse(&$f);
/**
* Get subtitle content.
* @return: string: Return subtitle after changes.
*/
abstract public function get();
//===========================================================================
/**
* Save subtitle as file on disk.
* @param: string $fname: Flename to save on disk
* @param: bool/string $encoding:
* - bool: true: add BOM, false: without adds and return conversion
* - string: 'AUTO': encoding from UTF-8 to self::setEncoding,
* otherwise encoding to setting value
* @return: bool save status (file_get_contents)
*/
public function save($fname,$forceUtf8y=false, $verbose = true){
if(is_bool($forceUtf8y))
return file_put_contents($fname,
($forceUtf8y?'ďťż':'').$this->get($verbose));
if($this->encoding != null)
return file_put_contents($fname, iconv('utf-8',
strtolower($forceUtf8y)=='auto'?$this->encoding:$forceUtf8y,
$this->get($verbose)));
return file_put_contents($fname, $this->get($verbose));
}
public function getInEncoding($enc,$verbose){
return iconv('utf-8', $enc, $verbose);
}
//===========================================================================
/**
* Decode time from subtitle format to private format.
* To convert use class MTime.
* Przetwarza czas z formatu natywnego napisów na wewnętrzny parsera napisów.
* Używać klasy MTime metody: from{$format_napisów}, np: MTime::fromMpl
*
* @param string $v: czas w formacie natywnym napisów.
* @return float: czas w formacie wewnętrznym. (timestamp z milisekundami,
* jako część dziesiętna)
*/
abstract public function decodeTime($v);
/**
* Encode private format to fubtitle format. To convert use class MTime.
* More info @see:Subtitle::decodeTime
*
* @param float $t: time in inner format.
* @return string formatted time
*/
abstract public function encodeTime($t);
//===========================================================================
/**
* Shift time.
* Przesuwa czas napisów o zadaną wartość od czasu $st do czsu $et.
* @param $t - float liczba sekund o jakie ma być przesunięty czas.
* @param $st - float od któej sekundy filmu ma być przesuwany czas.
* @param $et - float do której sekundy filmu ba być przesunięty czas.
* @return liczba odrzuconych linii (komnetarze, problemy z formatowaniem)
*/
public function addTime(/*float*/$t, /*float*/$st=0, /*float*/$et=null){
/*
* @pa_ram $t - array tablica, której elementami są czas z kórego ma być
* przesunięcie do czasu do kórego ma być przesunięcie, w formacie natywanym.
*/
//make sure, that this is copy
$ev = Array($this->events);
$ev = array_pop($ev);
$this->events = Array();
foreach($ev AS $ll){
//$ct = $this->decodeTime(trim($ll['start']));
if($ll['start'] >= $st && (empty($et) || $ll['start'] <= $end)){
$ll['start'] += $t;
if(!empty($ll['end']))
$ll['end'] += $t;
else
$ll['end'] = $ll['start'] + $this->displayTime;
}
$this->_addLine($ll);
}
}
//===========================================================================
/**
* Zwraca różnicę pomiędzy czasami $ft i $tt, gdzie dane te są
* podane w formacie natywnym.
*
* @param: string czas 1 w formacie natywnym napisów
* @param: string czas 2 w formacie natywnym napisów
* @return float róznica czasów w formacie wewnętrznym
*/
function diffTime($ft, $tt){
return $this->decodeTime($tt) - $this->decodeTime($ft);
}
//===========================================================================
/**
* Dodaje kolejną linię do bufora events.
* @param: $l - array pojedyncza linia.
*/
protected function _addLine($l){
$k = $l['start']+0.00001;
while(array_key_exists((string)($k*1000), $this->events))
$k+=0.00001;
$this->events[(string)($k*1000)] = $l;
}
//===========================================================================
final public function getSubTable(){
ksort($this->events);
return $this->events;
}
final public function setSubTable($t){
$this->events = $t;
}
/* final public function callFunc($f, $m=null){
foreach($this->events as $k=>$ev)
$this->events[$k] = $m::$f($ev);
}*/
final public function fixPunctuation(){
foreach($this->events as $k=>$ev)
$this->events[$k] = MText::fixPunctuation($ev);
}
final public function getFileName(){
return $this->orginName;
}
final public function setFileName($n){
$this->orginName = $n;
}
/**
# current() - Return the current element in an array
# end() - Set the internal pointer of an array to its last element
# prev() - Rewind the internal array pointer
# reset() - Set the internal pointer of an array to its first element
*/
final public function reset(){
ksort($this->events);
return reset($this->events);
}
final public function current(){
return current($this->events);
}
final public function end(){
return end($this->events);
}
final public function next(){
return next($this->events);
}
final public function prev(){
return prev($this->events);
}
//===========================================================================
final public static function getAuthor(){
// Do not modify this function
return Array(array_merge(Array('name'=>'Wojciech Bajon', 'contact'=>'callto://wojteb_ess'), self::getGreetings()));
}
//===========================================================================
private static function getGreetings(){
return Array();
//return Array(Array('name'=>'nazwa do wyświetlania ', 'contact'=>'adres HREF do kontaktu'));
}
public static function getVersion(){
return '$Id: subtitle.class.php,v 1.8 2009/11/06 08:16:06 wojtekb Exp $';
}
public static function factory($type){
switch(strtolower($type)){
case 'ass':
case 'ssa':
return new AssSubtitle();
case 'srt':
return new SrtSubtitle();
case 'mdvd':
case 'microdvd':
return new MdvdSubtitle();
case 'tmp':
return new TmpSubtitle();
default:
throw new UnknownSubtitleException();
}
}
}