I am trying to download TED Talks with subtitles in Gpodder without success.
I use Ubuntu 14.04 and gpodder 3.5.2. I made test subscriptions in TED HD talks (http://feeds.feedburner.com/TedtalksHD/) and regular talks (http://feeds.feedburner.com/tedtalks_video). It works well for video, but without downloading subtitles.
In tools-Preferences-Extensions, TED Talks subtitles downloader is active.
How can I make it work?
Looks like TED Talks subtitles downloader is currently broken, here what I get in terminal:
But it's Python and can be easily fixed!
As I see, TED description page format changed.
To fix it:
'introDuration%22%3A'
with'introDuration":'
and'%2C'
with','
in
/usr/share/gpodder/extensions/ted_subtitles.py
.I.e. starting from line 89 this code:
should became:
After this subtitles should be downloaded in the same directory with downloaded video (under same as video with but with
.srt
extension).Tested on Ubuntu 14.04 with gPodder 3.5.2.
EDIT: I made pull request to gPodder with fix: https://github.com/gpodder/gpodder/pull/121