dry run skip the download
This commit is contained in:
parent
ccd58b94d8
commit
570f615560
1 changed files with 12 additions and 10 deletions
|
|
@ -137,6 +137,7 @@ class SoundcloudAlbumsAndSinglesDownloader(
|
|||
if self.download_options.skip_premiere_tracks and track.is_premiere():
|
||||
continue
|
||||
|
||||
if not self.is_dry_run:
|
||||
_ = self.extract_info(
|
||||
url=album.kwargs("webpage_url"),
|
||||
ytdl_options_overrides={
|
||||
|
|
@ -166,6 +167,7 @@ class SoundcloudAlbumsAndSinglesDownloader(
|
|||
if self.download_options.skip_premiere_tracks and track.is_premiere():
|
||||
continue
|
||||
|
||||
if not self.is_dry_run:
|
||||
_ = self.extract_info(
|
||||
url=track.kwargs("webpage_url"), ytdl_options_overrides={"writeinfojson": False}
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue