Skip to content

Commit

Permalink
[ffmpeg] do not pad 0s for speed rate in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
Lesmiscore committed Dec 31, 2021
1 parent acc0df0 commit 411def6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/postprocessor/_attachments.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def format_speed(speed):
def format_speed_rate(rate):
if rate is None:
return '---x'
return '%.2dx' % rate
return '%.1dx' % rate

@staticmethod
def format_retries(retries):
Expand Down

0 comments on commit 411def6

Please sign in to comment.