-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add progress tracking to ffmpeg operations #2475
Open
Kenshin9977
wants to merge
15
commits into
yt-dlp:master
Choose a base branch
from
Kenshin9977:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+471
−117
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Kenshin9977
force-pushed
the
master
branch
3 times, most recently
from
February 15, 2022 20:02
85844eb
to
6da033d
Compare
Kenshin9977
force-pushed
the
master
branch
2 times, most recently
from
February 26, 2022 23:52
15eee53
to
31895a1
Compare
Kenshin9977
force-pushed
the
master
branch
5 times, most recently
from
March 4, 2022 17:19
3ac6bbc
to
93de570
Compare
pukkandan
reviewed
Mar 5, 2022
9 tasks
Lesmiscore
reviewed
Mar 5, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kenshin9977
force-pushed
the
master
branch
2 times, most recently
from
March 6, 2022 14:55
6345c68
to
e8ab421
Compare
Some of the newer commits are seriously overreaching beyond the scope of this PR. Please revert them |
Kenshin9977
force-pushed
the
master
branch
5 times, most recently
from
March 13, 2022 14:56
feea2a8
to
76ca101
Compare
Kenshin9977
force-pushed
the
master
branch
2 times, most recently
from
March 13, 2022 15:18
a8c84f9
to
cf1e742
Compare
Kenshin9977
force-pushed
the
master
branch
8 times, most recently
from
October 31, 2023 22:27
74a96db
to
d18889c
Compare
Add ffmpeg progress tracking to FFmpegPostProcessor Apply changes from the code review Fix a bug where the subprocess didn't capture any output thus an empty stdout and stderr were sent back Add missing hooks Revert "Add missing hooks" This reverts commit a359c5e. Add support of -ss=132 timestamp format Infer filename from ffmpeg args instead of info_dic Remove redundant parenthesis and switch from to_stodout to to_screen Add info kwarg with multiple files and ffmpeg to track progress Moved format progress function to util Moved format progress function to util Add progress tracking to postprocessing operations Fix typing error Handle self._downloader is None at __init__ Move format progress functions to utils Move format progress functions to utils Handle case where ydl passed is None Handle case where ydl passed is None Handle case where _multiline isn't initialized Handle case where _multiline isn't initialized Fix streams incorrectly returned Fix case where ydl is nested in the downloader Add progress_hook attribute Fix bug after merge Fix import bugs after merge Catch up with upstream Fix merge errors #1 Adapt tests and implementatation for ffmpeg progress tracking args
coletdjnz
added
core:post-processor
post-processor related
core:downloader
downloader related
labels
Nov 22, 2024
bashonly
reviewed
Nov 26, 2024
9 tasks
Please @pukkandan @Grub4K, if y'all could review this PR, that would be amazing. Would be great to have the download logger for my project. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
core:downloader
downloader related
core:post-processor
post-processor related
enhancement
New feature or request
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please follow the guide below
x
into all the boxes [ ] relevant to your pull request (like that [x])Before submitting a pull request make sure you have:
In order to be accepted and merged into yt-dlp each piece of code must be in public domain or released under Unlicense. Check one of the following options:
What is the purpose of your pull request?
Description of your pull request and other information
Add progress tracking to ffmpeg operations, both downloading and postprocessing.
Some methods are marked as static because I found them to be too thematically linked to FFmpegProgressTracker to seperate them. If someone has a better idea because he thinks it needs to be changed, I'm open to suggestions.
Closes #1720, #2826, Closes #1317, Replaces #1133, #1947