aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-18[sponskrub] Encode filenames correctlypukkandan
2021-01-17[version] updatepukkandan
:skip ci all
2021-01-17Release 2021.01.162021.01.16pukkandan
2021-01-17Portable Configuration file (closes #19)pukkandan
Inspired by https://github.com/ytdl-org/youtube-dl/pull/27592
2021-01-16Update to ytdl-2021.01.16pukkandan
2021-01-16Add PyPI releasepukkandan
2021-01-14[version] updatepukkandan
:skip ci all
2021-01-14Release 2021.01.142021.01.14pukkandan
2021-01-14Documentation fixespukkandan
* Change all links to point to new fork URL * Changed sponskrub links to my fork of the same * Other typos
2021-01-14[tiktok] Fix for when share_info is emptypukkandan
(Related: https://github.com/blackjack4494/yt-dlc/pull/20)
2021-01-14[roosterteeth] Changed API endpoint (Closes #16)Felix Stupp
New endpoint allows to request metadata for bonus episodes Authored by Zocker1999NET
2021-01-14[issuetemplates] Change all links to point to new fork URLpukkandan
2021-01-14Print full error in verbose for sponskrubpukkandan
2021-01-14Fix write_debug in EmbedThumbnailpukkandan
Closes #17
2021-01-13Fix archive bug introduced in 8b0d7497d536b93610d469b6e3fd2935fb3cb8a0pukkandan
2021-01-13Added option `--break-on-reject`pukkandan
and modified `--break-on-existing`
2021-01-13[readme] Change all links to point to new fork URLpukkandan
2021-01-13[version] updatepukkandan
2021-01-13Release 2021.01.122021.01.12pukkandan
2021-01-13Changed repo name to yt-dlppukkandan
2021-01-13[roosterteeth.com] Add subtitle support ↵Samik Some
(https://github.com/ytdl-org/youtube-dl/pull/23985) Closes #15 Authored by samiksome
2021-01-13Added `--force-overwrites` option ↵alxnull
(https://github.com/ytdl-org/youtube-dl/pull/20405) Co-authored by alxnull
2021-01-12Fix typos (Closes #14)pukkandan
:skip ci all Co-authored by: FelixFrog
2021-01-11[CI] Option to skippukkandan
:skip ci all
2021-01-11Add changelog for the unreleased changes in blackjack4494/yt-dlcpukkandan
and made related changes in README
2021-01-11#13 [adobepass] Added Philo MSO ↵pukkandan
(https://github.com/ytdl-org/youtube-dl/pull/17821) Authored-by: Aniruddh Joshi <aniruddh@ebincoweb.com>
2021-01-11[version] updatepukkandan
2021-01-11Release 2021.01.102021.01.10pukkandan
2021-01-11[Animelab] Added (https://github.com/ytdl-org/youtube-dl/pull/13600)pukkandan
Authored by mariuszskon
2021-01-11[archive.org] Fix extractor and add support for audio and playlists ↵pukkandan
(https://github.com/ytdl-org/youtube-dl/pull/27156) Coauthored by wporr
2021-01-11[youtube:search] fix view_count ↵pukkandan
(https://github.com/ytdl-org/youtube-dl/pull/27588/) Authored by ohnonot
2021-01-10Create `to_screen` and similar functions in postprocessor/commonpukkandan
`to_screen`, `report_warning`, `report_error`, `write_debug`, `get_param` This is a first step in standardizing these function. This has to be done eventually for extractors and downloaders too
2021-01-10Enable test_youtube_search_matchingpukkandan
I forgot to enable this when the search url extractor was reinstated
2021-01-09Update version badge automatically in READMEpukkandan
Uses: https://github.com/Schneegans/dynamic-badges-action
2021-01-09[youtube] Show if video is embeddable in infopukkandan
Closes https://github.com/ytdl-org/youtube-dl/issues/27730
2021-01-09[version] updatepukkandan
2021-01-09Release 2021.01.092021.01.09pukkandan
2021-01-09Kill child processes when yt-dlc is killed ↵pukkandan
(https://github.com/ytdl-org/youtube-dl/pull/26592) Authored by: Unrud
2021-01-09Fix incorrect ANSI sequence for restoring console-window title ↵pukkandan
(https://github.com/ytdl-org/youtube-dl/pull/26637) Authored by: glenn-slayden
2021-01-09Stop immediately when reaching '--max-downloads' ↵pukkandan
(https://github.com/ytdl-org/youtube-dl/pull/26638) Authored by: glenn-slayden
2021-01-09batch-file enumeration improvements ↵pukkandan
(https://github.com/ytdl-org/youtube-dl/pull/26813) Co-authored by: glenn-slayden Modified from https://github.com/ytdl-org/youtube-dl/pull/26813/commits/c9a9ccf8a35e157e22afeaafc2851176ddd87e68 These improvements apply to reading the list of URLs from the file supplied via the `--batch-file` (`-a`) command line option. 1. Skip blank and empty lines in the file. Currently, lines with leading whitespace are only skipped when that whitespace is followed by a comment character (`#`, `;`, or `]`). This means that empty lines and lines consisting only of whitespace are returned as (trimmed) empty strings in the list of URLs to process. 2. [bug fix] Detect and remove the Unicode BOM when the file descriptor is already decoding Unicode. With Python 3, the `batch_fd` enumerator returns the lines of the file as Unicode. For UTF-8, this means that the raw BOM bytes from the file `\xef \xbb \xbf` show up converted into a single `\ufeff` character prefixed to the first enumerated text line. This fix solves several buggy interactions between the presence of BOM, the skipping of comments and/or blank lines, and ensuring the list of URLs is consistently trimmed. For example, if the first line of the file is blank, the BOM is incorrectly returned as a URL standing alone. If the first line contains a URL, it will be prefixed with this unwanted single character--but note that its being there will have inhibited the proper trimming of any leading whitespace. Currently, the `UnicodeBOMIE` helper attempts to recover from some of these error cases, but this fix prevents the error from happening in the first place (at least on Python3). In any case, the `UnicodeBOMIE` approach is flawed, because it is clearly illogical for a BOM to appear in the (non-batch) URL(s) specified directly on the command line (and for that matter, on URLs *after the first line* of a batch list, also) 3. Adds proper trimming of the " #" into the read_batch_urls processing so that the URLs it enumerates are cleaned and trimmed more consistently.
2021-01-09Add post_hooks option to YoutubeDL.py ↵Alex Merkel
(https://github.com/ytdl-org/youtube-dl/pull/27573) Authored by: alexmerkel
2021-01-08[youtube] Fix bug (Closes https://github.com/pukkandan/yt-dlc/issues/10)pukkandan
2021-01-08[version] updatepukkandan
2021-01-08Release 2021.01.082021.01.08pukkandan
2021-01-08Move changelog to seperate filepukkandan
2021-01-08Update to ytdl-2021.01.08pukkandan
2021-01-08[CI] Created quick-testpukkandan
2021-01-08Release 2021.01.07-1pukkandan
2021-01-08Allow passing different arguments to different postprocessorspukkandan
* Also deprecated --sponskrub-args Closes: https://github.com/ytdl-org/youtube-dl/issues/27593 Eg: `--postprocessor-args "VideoConvertor:-c:v h264_nvenc -preset slow"` Eg: `--postprocessor-args "SponsKrub:-include-selfpromo"` For backward compatibility, `--postprocessor-args args` is equivalent to: `--post-processor-args "sponskrub:" --post-processor-args "default:args"`