You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
3 years ago
|
import re
|
||
|
from .subrip import SubripFormat
|
||
|
from .time import make_time
|
||
|
|
||
|
|
||
|
class WebVTTFormat(SubripFormat):
|
||
|
"""
|
||
|
Web Video Text Tracks (WebVTT) subtitle format implementation
|
||
|
|
||
|
Currently, this shares implementation with :class:`pysubs2.subrip.SubripFormat`.
|
||
|
"""
|
||
|
TIMESTAMP = re.compile(r"(\d{0,4}:)?(\d{2}):(\d{2})\.(\d{2,3})")
|
||
|
|
||
|
@staticmethod
|
||
|
def timestamp_to_ms(groups):
|
||
|
_h, _m, _s, _ms = groups
|
||
|
if not _h:
|
||
|
h = 0
|
||
|
else:
|
||
|
h = int(_h.strip(":"))
|
||
|
m, s, ms = map(int, (_m, _s, _ms))
|
||
|
return make_time(h=h, m=m, s=s, ms=ms)
|
||
|
|
||
|
@classmethod
|
||
|
def guess_format(cls, text):
|
||
|
"""See :meth:`pysubs2.formats.FormatBase.guess_format()`"""
|
||
|
if text.lstrip().startswith("WEBVTT"):
|
||
|
return "vtt"
|
||
|
|
||
|
@classmethod
|
||
|
def to_file(cls, subs, fp, format_, **kwargs):
|
||
|
"""
|
||
|
See :meth:`pysubs2.formats.FormatBase.to_file()`
|
||
|
"""
|
||
|
print("WEBVTT\n", file=fp)
|
||
|
return SubripFormat.to_file(subs=subs, fp=fp, format_=format_, **kwargs)
|