aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2021-08-02[test:download] Support testing with `ignore_no_formats_error`pukkandan
2021-08-01[utils] Fix slicing of reversed `LazyList`pukkandan
Closes #589
2021-07-29Add format types `j`, `l`, `q` for outtmplpukkandan
Closes #345
2021-07-29Expand and escape environment variables correctly in outtmplpukkandan
Fixes: https://www.reddit.com/r/youtubedl/comments/otfmq3/ytdlp_same_parameters_different_results
2021-07-24[youtube] Simplify `_get_text` earlypukkandan
2021-07-23[test] Use `pytest` instead of `nosetests` (#482)pukkandan
`nosetests` is no longer being maintained : https://github.com/nose-devs/nose/issues/1099 and will stop working in py 3.10 as can be seen in #480
2021-07-22Add option `--cookies-from-browser` to load cookies from a browser (#488)Matt Broadway
* also adds `--no-cookies-from-browser` Original PR: https://github.com/ytdl-org/youtube-dl/pull/29201 Authored by: mbway
2021-07-14[utils] Improve `js_to_json` comment regexfelix
Capture the newline character as part of a single-line comment From #497, Authored by: fstirlitz
2021-07-07Fix selectors `all`, `mergeall` and add testspukkandan
Bug from: 981052c9c6febb33b6547140a67a49ac0f5f4578
2021-07-02Some minor fixes and refactoring (see desc)pukkandan
* [utils] Fix issues with reversal * check_formats should catch `DownloadError`, not `ExtractorError` * Simplify format selectors with `LazyList` and `yield from`
2021-06-17Fix id sanitization in filenamespukkandan
Closes #415
2021-06-13[utils] Improve `LazyList`pukkandan
* Add `repr` and `str` that mimics `list` * Add `reversed`. Unlike `[::-1]`, reversed does not exhaust the iterable and modifies the `LazyList` in-place * Add tests
2021-06-11Better error handling of syntax errors in `-f`pukkandan
2021-06-09Improve offset parsing in outtmplpukkandan
2021-06-09[test] More rigorous tests for `prepare_filename`pukkandan
All tests of `prepare_outtmpl` is now also run on `prepare_filename`
2021-06-09Fix `%d` and empty default in outtmplpukkandan
Closes #388
2021-06-09[build] Build Windows x86 version with py3.8pukkandan
and remove redundant tests :ci skip Ao-authored by: pukkandan, shirt-dev
2021-06-08Make outtmpl more robust and catch errors earlypukkandan
2021-06-06Fix filename sanitizationpukkandan
Bug from 752cda3880f30a46bed1d27b69188ab93ad1a368
2021-06-06Fix and refactor `prepare_outtmpl`pukkandan
The following tests would have failed previously: %(id)d %(id)r %(ext)s-%(ext|def)d %(width|)d %(id)r %(height)r %(formats.0)r %s
2021-06-06[cleanup] Mark unused filespukkandan
2021-06-06[cleanup] Point all shebang to `python3` (#372)felix
Authored by: fstirlitz
2021-06-01[utils] Escape URLs in `sanitized_Request`, not `sanitize_url`pukkandan
d2558234cf5dd12d6896eed5427b7dcdb3ab7b5a added escaping of URLs while sanitizing. However, `sanitize_url` may not always receive an actual URL. Eg: When using `yt-dlp "search query" --default-search ytsearch`, `search query` gets escaped to `search%20query` before being prefixed with `ytsearch:` which is not the intended behavior. So the escaping is moved to `sanitized_Request` instead.
2021-05-29[embedthumbnail] Correctly escape filenamepukkandan
Closes #352 The approach in [1] is faulty as can be seen in the test cases 1. https://github.com/ytdl-org/youtube-dl/commit/bff857a8af696e701482208617bf0b7564951326
2021-05-29[cleanup] `_match_entry`pukkandan
2021-05-26[extractor] Always prefer native hls downloader by defaultpukkandan
When the manifest is not downloadable by native downloader, it already is able to detect it and switch to `ffmpeg`. So there doesn't seem to be a reason anymore to use ffmpeg as the preferred downloader
2021-05-24Handle Basic Auth `user:pass` in URLsHubert Hirtz
Fixes https://github.com/ytdl-org/youtube-dl/issues/20258, https://github.com/ytdl-org/youtube-dl/issues/26211 Authored by: hhirtz, pukkandan
2021-05-19[test] Fix `test_YoutubeDL.TestYoutubeDL`pukkandan
Test `test_ignoreerrors_for_playlist_with_url_transparent_iterable_entries` was broken due to `__original_infodict` being added to the dict
2021-05-18[cleanup] youtube testspukkandan
2021-05-18[test:download] Only extract enough videos for `playlist_mincount`pukkandan
2021-04-28[test] Test SSTR manifest parsingFelix S
2021-04-28[test] Test subtitle extraction from DASH manifestsFelix S
2021-04-28[test] Test subtitle extraction from HLS manifestsFelix S
2021-04-28[extractor/common] Extract HLS subtitle tracksFelix S
_extract_m3u8_formats is renamed to _extract_m3u8_formats_and_subtitles and extended to handle subtitle tracks instead of skipping them; a wrapper with the old name is provided for compatibility. _parse_m3u8_formats is likewise renamed and extended, but without adding the compatibility wrapper; the test suite is adjusted to test the enhanced method instead.
2021-04-22Update to ytdl-commit-7e8b3f9pukkandan
[youtube] Remove unused code https://github.com/ytdl-org/youtube-dl/commit/7e8b3f9439ebefb3a3a4e5da9c0bd2b595976438
2021-04-22Improve output template (see desc)pukkandan
* Objects can be traversed like `%(field.key1.key2)s` * A number can be added to the field as `%(field+n)s` * Deprecates `--autonumber-start`
2021-04-21[MetadataFromField] Improve regex and add testspukkandan
2021-04-20Improve --sub-langs (see desc)pukkandan
* Treat `--sub-langs` entries as regex * `all` can be used to refer to all the subtitles * the language code can be prefixed with `-` to exclude it * Deprecates `--all-subs` Closes #253
2021-04-16Fix some linter and typospukkandan
2021-04-07[utils] Add `datetime_from_str` to parse relative time (#221)colethedj
and `datetime_add_months` to accurately add/subtract months Authored by: colethedj
2021-04-03Ability to set a specific field in the file's metadatapukkandan
Eg: `--parse-metadata "description:(?s)(?P<meta_comment>.+)"` sets the "comment" field using `description`
2021-03-04[youtube] Fix history, trending and mix playlists (#136)pukkandan
Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com> Co-authored-by: Matthew <colethedj@protonmail.com>
2021-02-25Completely change project name to yt-dlp (#85)Pccode66
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
2021-02-24Better support HLS media discontinuity and fully support media ↵shirt-dev
initialization (#105) * Added options: `--hls-split-discontinuity` and `--no-hls-split-discontinuity` Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com>
2021-02-20Update to ytdl-commit-cf2dbecpukkandan
https://github.com/ytdl-org/youtube-dl/commit/cf2dbec6301177a1fddf72862de05fa912d9869d Except: [kakao] improve info extraction and detect geo restriction https://github.com/ytdl-org/youtube-dl/commit/d8085580f63ad3b146a31712ff76cf41d5a4558a
2021-02-11Update to ytdl-2021.02.10pukkandan
Except: [archiveorg] Fix and improve extraction (5fc53690cbe6abb11941a3f4846b566a7472753e)
2021-02-09#64 Implement self updatershirt-dev
Co-authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com> (shirt-dev) Co-authored-by: pukkandan <pukkandan@gmail.com>
2021-02-04[youtube] Update to ytdl-2021.02.04.1pukkandan
2021-01-29Refactor `update-version`, `pyinst.py` and related filespukkandan
* Refactor update-version * Moved pyinst, update-version and icon into devscripts * pyinst doesn't bump version anymore * Merge pyinst and pyinst32. Usage: `pyinst.py [32|64]` * Add mutagen as requirement * Remove make_win and related files
2021-01-26Add option `--parse-metadata`pukkandan
* The fields extracted by this can be used in `--output` * Deprecated `--metadata-from-title` :ci skip dl