aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_downloader_external.py
Commit message (Collapse)AuthorAgeFilesLines
* [fd/external] Fix ffmpeg input from stdin (#7655)bashonly2023-07-221-0/+5
| | | | | Bugfix for 1ceb657bdd254ad961489e5060f2ccc7d556b729 Authored by: bashonly
* [fd/external] Fixes to cookie handlingbashonly2023-07-151-4/+5
| | | | | | | | | - Fix bug in `axel` Cookie header arg - Pass cookies to `curl` as strings - Write session cookies for `aria2c` and `wget` Closes #7539 Authored by: bashonly
* [fd/external] Scope cookiesbashonly2023-07-061-0/+133
- ffmpeg: Calculate cookies from cookiejar and pass with `-cookies` arg instead of `-headers` - aria2c, curl, wget: Write cookiejar to file and use external FD built-in cookiejar support - httpie: Calculate cookies from cookiejar instead of `http_headers` - axel: Calculate cookies from cookiejar and disable http redirection if cookies are passed - May break redirects, but axel simply don't have proper cookie support Ref: https://github.com/yt-dlp/yt-dlp/security/advisories/GHSA-v8mc-9377-rwjj Authored by: bashonly, coletdjnz