Browse Source

[YoutubeDL] Skip postprocessing and archive report when outputting to stdout (Closes #8729)

totalwebcasting
Sergey M․ 8 years ago
parent
commit
e38cafe986
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/YoutubeDL.py

+ 1
- 1
youtube_dl/YoutubeDL.py View File

@ -1631,7 +1631,7 @@ class YoutubeDL(object):
self.report_error('content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded))
return
if success:
if success and filename != '-':
# Fixup content
fixup_policy = self.params.get('fixup')
if fixup_policy is None:


Loading…
Cancel
Save