aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | [periscope] Add support for videos with broadcast_id (Closes #7359)Sergey M․2015-11-051-2/+3
| |
* | [prosiebensat1] Add support for .ch domains (Closes #7365)Sergey M․2015-11-051-1/+1
| |
* | [youtube] Clarify rationale for preferring a video info with token (#7362)Sergey M․2015-11-041-0/+9
| |
* | [youtube] Prefer video_info with token availableSergey M․2015-11-041-0/+2
| |
* | [vimeo] Remove unused importJaime Marquínez Ferrándiz2015-11-041-1/+0
| |
* | [vk] Fix view count extraction (Closes #7353)Sergey M․2015-11-041-3/+7
| |
* | [globo] Add more testsSergey M․2015-11-041-2/+11
| |
* | [globo:article] Fix testSergey M․2015-11-041-1/+1
| |
* | [globo] Force uploader id to be stringSergey M․2015-11-041-3/+4
| |
* | [globo] Update testsSergey M․2015-11-041-9/+21
| |
* | [globo] Improve http formatsSergey M․2015-11-041-2/+2
| |
* | [globo] Remove like countSergey M․2015-11-041-5/+0
| | | | | | | | It's no longer provided
* | [globo] Remove non available testSergey M․2015-11-041-12/+0
| |
* | [globo] Prefer native m3u8Sergey M․2015-11-041-1/+2
| |
* | [globo] Skip unsupported smooth streamingSergey M․2015-11-041-1/+1
| |
* | [globo] Improve m3u8 extractionSergey M․2015-11-041-1/+4
| |
* | [globo] Separate article extractorSergey M․2015-11-042-66/+79
| |
* | Merge remote-tracking branch 'upstream/master'Yen Chi Hsuan2015-11-041-6/+7
|\ \
| * | [vimeo] Fix non-ASCII album passwordsSergey M․2015-11-031-1/+1
| | |
| * | [vimeo] Fix non-ASCII loginSergey M․2015-11-031-2/+2
| | |
| * | [vimeo] Fix non-ASCII video passwords (2)Sergey M․2015-11-031-1/+1
| | |
| * | [vimeo] Fix non-ASCII video passwords (Closes #7352)Sergey M․2015-11-031-2/+3
| | |
* | | [test/subtitles] Add test for DemocracynowIEYen Chi Hsuan2015-11-041-0/+21
| | |
* | | Merge branch 'atomicdryad-pr-democracynow'Yen Chi Hsuan2015-11-042-0/+89
|\ \ \ | |/ / |/| |
| * | [democracynow] Prevent required fields to be NoneYen Chi Hsuan2015-11-041-2/+2
| | |
| * | [democracynow] Rename js to json_dataYen Chi Hsuan2015-11-041-6/+6
| | |
| * | [democracynow] Add MD5 sumsYen Chi Hsuan2015-11-031-0/+2
| | |
| * | [democracynow] SimplifyYen Chi Hsuan2015-11-031-39/+41
| | |
| * | [democracynow] Fix _TESTSYen Chi Hsuan2015-10-311-4/+3
| | |
| * | Merge branch 'pr-democracynow' of https://github.com/atomicdryad/youtube-dl ↵Yen Chi Hsuan2015-10-312-0/+86
| |\ \ | | | | | | | | | | | | into atomicdryad-pr-democracynow
| | * | democracynow: correct syntaxfnord2015-07-171-29/+14
| | | |
| | * | Add support for democracynow.orgfnord2015-07-132-0/+101
| | | | | | | | | | | | | | | | Supports downloading clips or entire shows. Subtitle support
* | | | release 2015.11.02Philipp Hagemeister2015-11-021-1/+1
| | | |
* | | | [utils] unified_strdate: Return None if the date format can't be recognized ↵Jaime Marquínez Ferrándiz2015-11-022-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | (fixes #7340) This issue was introduced with ae12bc3ebb4cb377c2b4337ec255e652b36f5143, it returned 'None'.
* | | | [videofy.me] fix info extractionremitamine2015-11-021-19/+21
| | | | | | | | | | | | | | | | Closes #7339.
* | | | [mitele] Fix extraction and update test checksum (fixes #7343)Jaime Marquínez Ferrándiz2015-11-021-2/+6
| | | |
* | | | [utils:sanitize_path] Disallow trailing whitespace in path segment (Closes ↵Sergey M․2015-11-021-1/+1
| | | | | | | | | | | | | | | | #7332)
* | | | release 2015.11.01Philipp Hagemeister2015-11-012-2/+3
| | | |
* | | | [eitb] Improve hds extractionSergey M․2015-11-011-2/+3
| | | |
* | | | [eitb] Improve, make more robust and extract f4m formats (Closes #7328)Sergey M․2015-11-011-21/+50
| | | |
* | | | [eitb] fix info extractionremitamine2015-11-011-21/+44
| | | |
* | | | Merge pull request #7296 from jaimeMF/xml_attrib_unicodeSergey M2015-10-3113-48/+89
|\ \ \ \ | | | | | | | | | | Use a wrapper around xml.etree.ElementTree.fromstring in python 2.x (…
| * | | | [compat] compat_etree_fromstring: clarify commentJaime Marquínez Ferrándiz2015-10-291-2/+2
| | | | |
| * | | | [compat] compat_etree_fromstring: also decode the text attributeJaime Marquínez Ferrándiz2015-10-265-30/+30
| | | | | | | | | | | | | | | | | | | | Deletes parse_xml from utils, because it also does it.
| * | | | [compat] compat_etree_fromstring: only decode bytes objectsJaime Marquínez Ferrándiz2015-10-252-4/+5
| | | | |
| * | | | Use a wrapper around xml.etree.ElementTree.fromstring in python 2.x (#7178)Jaime Marquínez Ferrándiz2015-10-2511-21/+61
| | | | | | | | | | | | | | | | | | | | 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).
* | | | | [extractor/common] Fix m3u8 extraction on failureSergey M․2015-11-011-3/+4
| | | | |
* | | | | [mdr] Fix failed formats processingSergey M․2015-11-011-5/+6
| | | | |
* | | | | [extractor/common] Make ie_key and IE_NAME return unicode stringSergey M․2015-10-311-2/+2
| | | | |
* | | | | [utils] Make unified_strdate always return unicode stringSergey M․2015-10-311-1/+1
| | | | |