Skip to content

Commit

Permalink
Merge branch 'main' into playlists
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-conde authored Aug 18, 2023
2 parents e31847d + 0f2022c commit 74058d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sources/youtube.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ async fn ytdl(uri: &str) -> Result<(Child, Metadata), SongbirdError> {
"infinite", // infinite number of download retries
"--no-playlist", // only download the video if URL also has playlist info
"--ignore-config", // disable all configuration files for a yt-dlp run
"--no-warnings", // don't print out warnings
uri,
"-o",
"-", // stream data to stdout
Expand Down Expand Up @@ -173,6 +174,7 @@ async fn _ytdl_metadata(uri: &str) -> SongbirdResult<Metadata> {
"infinite", // infinite number of download retries
"--no-playlist", // only download the video if URL also has playlist info
"--ignore-config", // disable all configuration files for a yt-dlp run
"--no-warnings", // don't print out warnings
uri,
"-o",
"-", // stream data to stdout
Expand Down

0 comments on commit 74058d6

Please sign in to comment.