aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/crunchyroll.py
AgeCommit message (Collapse)Author
2015-10-25Use a wrapper around xml.etree.ElementTree.fromstring in python 2.x (#7178)Jaime Marquínez Ferrándiz
Attributes aren't unicode objects, so they couldn't be directly used in info_dict fields (for example '--write-description' doesn't work with bytes).
2015-10-22[crunchyroll] Improve subtitle regex (Closes #7262)Sergey M․
2015-10-18[crunchyroll] Add maturity wall reference tests (#7202)Sergey M․
2015-10-18[crunchyroll] Bypass maturity wall (Closes #7202)Sergey M․
2015-09-08[crunchyroll] Fix uploader and upload date extractionSergey M․
2015-09-08[crunchyroll] Force Accept-Language to any for all requests (Closes #6797)Sergey M․
2015-09-03[crunchyroll] Extract width and height (closes #6749)Jaime Marquínez Ferrándiz
2015-08-26[crunchyroll] Fix typoSergey M․
2015-08-26[crunchyroll] Use raise_login_requiredSergey M․
2015-08-26[crunchyroll] Detect required login (#6677)Sergey M․
2015-08-18[crunchyroll] Workaround fplive.net rtmp URLs (Closes #5881)Sergey M․
2015-07-17[crunchyroll] Use compat_urllib_parse_unquoteSergey M․
2015-07-05[crunchyroll] Fix extraction (Closes #5855, closes #5881)Sergey M․
2015-05-30[crunchyroll] Fix python 3.2Sergey M․
2015-05-30[crunchyroll] Extract subtitles extraction routineSergey M․
2015-04-24[Crunchyroll] Fix extraction on Python 2.6Yen Chi Hsuan
XPath with recursive children selection not supported
2015-03-21[crunchyroll] Remove unused classJaime Marquínez Ferrándiz
2015-03-03Make sure netrc works for all extractors with login supportPhilipp Hagemeister
Fixes #5112
2015-02-16[crunchyroll] Convert to new subtitles systemJaime Marquínez Ferrándiz
2015-01-02[crunchyroll] Fix format extractionJaime Marquínez Ferrándiz
Reported in https://github.com/rg3/youtube-dl/issues/2782#issuecomment-68556780
2014-12-22[crunchyroll] Add .fr domain (#4537)Sergey M․
2014-12-17Improve code stylePhilipp Hagemeister
2014-12-13Fix imports and general cleanupPhilipp Hagemeister
· Import from compat what comes from compat. Yes, some names are available in utils too, but that's an implementation detail. · Use _match_id consistently whenever possible · Fix some outdated tests · Use consistent valid URL (always match the whole protocol, no ^ at start required) · Use modern test definitions
2014-11-23Fix all PEP8 issues except E501Philipp Hagemeister
2014-11-23PEP8: E225,E227Jouke Waleson
2014-11-23PEP8: more appliedJouke Waleson
2014-11-23PEP8 appliedJouke Waleson
2014-11-15[crunchyroll] Remove NOP code (#2782)Philipp Hagemeister
2014-11-02[util] Move compatibility functions out of utilPhilipp Hagemeister
utils is large enough without these compatibility functions. Everything that is present in newer versions of Python (i.e. with dev Python it's just an import) goes into compat.py . Everything else (i.e. youtube-dl-specific helpers) goes into utils.py .
2014-10-29[crunchycroll] Fix building of ass subtitles (reported in #4019)Jaime Marquínez Ferrándiz
Parse the xml document instead of using regexes, otherwise unicode characters are left unescaped.
2014-10-26[crunchyroll:playlist] Simplify (#3988)Philipp Hagemeister
2014-10-26Merge remote-tracking branch 'gabeos/crunchyroll-show-playlist'Philipp Hagemeister
2014-10-23[crunchyroll] Correct parsing (Fixes #4014)Philipp Hagemeister
2014-10-20Forgot to reverse extracted video urls so they are in correct order for ↵Gabriel Schubiner
video selection args
2014-10-19Added extractor for crunchyroll 'playlists' i.e. series. so that one can, ↵Gabriel Schubiner
e.g. download all episodes of a series
2014-09-25[crunchyroll] Allow to list subtitles (fixes #3805)Naglis Jonaitis
2014-08-30Add SSA (.ass) subtitle output for CrunchyrollAdam
2014-08-29Add login support to Crunchyroll extractorAdam
2014-02-25[crunchyroll] Use `enumerate`Jaime Marquínez Ferrándiz
2014-02-25[crunchyroll] Handle error messageSergey M.
2014-02-25[crunchyroll] Fix subtitle lang code extractionSergey M
2014-02-25[crunchyroll] Tidy and modernizeSergey M
2014-01-30[crunchyroll] Add support for mobile URLs and use unicode literalsdst
2013-12-20[crunchyroll] Fix test (#1721)Philipp Hagemeister
2013-11-09Add support for crunchyroll.comrzhxeo