youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit a93ce61bd5cbe7779e4eff0f8ab74a8a02211285
parent c18142da6e0e99a7b4c9ab488ddb285ad1e8dad9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed,  2 May 2018 01:29:44 +0700

[tunein] Use live title for live streams (closes #16347)

Diffstat:
Myoutube_dl/extractor/tunein.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/tunein.py b/youtube_dl/extractor/tunein.py @@ -62,7 +62,7 @@ class TuneInBaseIE(InfoExtractor): return { 'id': content_id, - 'title': title, + 'title': self._live_title(title) if is_live else title, 'formats': formats, 'thumbnail': thumbnail, 'location': location,