aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/postprocessor/ffmpeg.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Add field `name` for subtitlespukkandan2021-05-151-3/+6
| | | | | | Co-authored by: pukkandan, tpikonen Based on: #310, https://github.com/ytdl-org/youtube-dl/pull/26112
* Add compat-option `no-attach-infojson`pukkandan2021-05-111-1/+2
|
* Add option `--convert-thumbnails`pukkandan2021-04-121-0/+70
| | | | Closes: https://github.com/yt-dlp/yt-dlp/issues/99 https://github.com/yt-dlp/yt-dlp/issues/102
* Ability to set a specific field in the file's metadatapukkandan2021-04-031-3/+9
| | | | | Eg: `--parse-metadata "description:(?s)(?P<meta_comment>.+)"` sets the "comment" field using `description`
* More consistent warning messages (#173)pukkandan2021-03-201-4/+4
| | | | Co-authored by: Damiano Amatruda <damiano.amatruda@outlook.com>
* Embed video URL metadata inside MP4 (#173)pukkandan2021-03-201-2/+2
| | | | | | | | | `mp4` has `comment` and `synopsis`; the synopsis is expected to have the long description So we save the `webpage_url` to `comment` and `description` to `synopsis` Related: https://github.com/ytdl-org/youtube-dl/issues/28478 Co-authored by: Damiano Amatruda <damiano.amatruda@outlook.com>
* [splitchapters] Fix for older ffmpegpukkandan2021-03-201-1/+1
| | | | | Older versions of ffmpeg doesn't allow `-to` as an input option Closes #180
* fix some typos and linterpukkandan2021-03-181-2/+0
|
* [movefiles] Fix bugs and make more robustpukkandan2021-03-181-6/+11
|
* Split video by chapters (#158)pukkandan2021-03-151-0/+38
| | | | | | | | | | | | | | | | | | | | * New options `--split-chapters` and `--no-split-chapters` * The output/path of the split files can be given using the key `chapter` * Additional keys `section_title`, `section_number`, `section_start`, `section_end` are available in the output template * Alias `--split-tracks` for parity with animelover/youtube-dl * `--sponskrub-cut` and `--split-chapter` cannot work together Closes: https://github.com/blackjack4494/yt-dlc/issues/277 https://github.com/ytdl-org/youtube-dl/issues/28438 https://github.com/ytdl-org/youtube-dl/issues/12907 https://github.com/ytdl-org/youtube-dl/issues/6480 https://github.com/ytdl-org/youtube-dl/pull/25005 Rewritten from the implementation by: femaref and Wattux https://github.com/Wattux/youtube-dl/tree/split-at-timestamps https://github.com/ytdl-org/youtube-dl/pull/25005 https://github.com/femaref/youtube-dl/tree/split-track
* Refactor (See desc)pukkandan2021-03-141-8/+19
| | | | | | * Create `FFmpegPostProcessor.real_run_ffmpeg` that can accept multiple input/output files along with switches for each * Rewrite `cli_configuration_args` and related functions * Create `YoutubeDL._ensure_dir_exists` - this was previously defined in multiple places
* Completely change project name to yt-dlp (#85)Pccode662021-02-251-0/+760
* 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