[utils,common] Merge format_srt_time and _subtitles_timecode
[youtube-dl] / youtube_dl / extractor / common.py
index 981e34bc7ccce5a87b2ec518efaa016afbd27002..65bb7708638a20a7e162c8ad8a06321434461ae6 100644 (file)
@@ -1072,9 +1072,6 @@ class InfoExtractor(object):
     def _get_automatic_captions(self, *args, **kwargs):
         raise NotImplementedError("This method must be implemented by subclasses")
 
-    def _subtitles_timecode(self, seconds):
-        return '%02d:%02d:%02d.%03d' % (seconds / 3600, (seconds % 3600) / 60, seconds % 60, (seconds % 1) * 1000)
-
 
 class SearchInfoExtractor(InfoExtractor):
     """