aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-03-13 21:40:34 +0600
committerSergey M․ <dstftw@gmail.com>2015-03-13 21:40:34 +0600
commit545315a9856743541f7f7b9b0ab42f2af9dd05c7 (patch)
treebd9018da5a8e6481e9db09fc3f53f08b24d05c18 /youtube_dl
parent3f4327520c316043912ca9a8cd6f70d8121c3aa1 (diff)
downloadyoutube-dl-545315a9856743541f7f7b9b0ab42f2af9dd05c7.tar.xz
[nrk] Use generic subtitles timecode formatter
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/nrk.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/youtube_dl/extractor/nrk.py b/youtube_dl/extractor/nrk.py
index 1e4cfa2e7..bff36f9d3 100644
--- a/youtube_dl/extractor/nrk.py
+++ b/youtube_dl/extractor/nrk.py
@@ -149,9 +149,6 @@ class NRKTVIE(InfoExtractor):
}
]
- def _seconds2str(self, s):
- return '%02d:%02d:%02d.%03d' % (s / 3600, (s % 3600) / 60, s % 60, (s % 1) * 1000)
-
def _debug_print(self, txt):
if self._downloader.params.get('verbose', False):
self.to_screen('[debug] %s' % txt)
@@ -168,8 +165,8 @@ class NRKTVIE(InfoExtractor):
for pos, p in enumerate(ps):
begin = parse_duration(p.get('begin'))
duration = parse_duration(p.get('dur'))
- starttime = self._seconds2str(begin)
- endtime = self._seconds2str(begin + duration)
+ starttime = self._subtitles_timecode(begin)
+ endtime = self._subtitles_timecode(begin + duration)
srt += '%s\r\n%s --> %s\r\n%s\r\n\r\n' % (compat_str(pos), starttime, endtime, p.text)
return {lang: [
{'ext': 'ttml', 'url': url},