mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-09-26 23:55:50 +00:00
Merge pull request #342 from internetarchive/noplaylist-ydl
youtube-dl --no-playlist
This commit is contained in:
@@ -456,7 +456,8 @@ public class ExtractorYoutubeDL extends Extractor
|
||||
*/
|
||||
ProcessBuilder pb = new ProcessBuilder("youtube-dl", "--ignore-config",
|
||||
"--simulate", "--dump-single-json", "--format=best[height <=? 576]",
|
||||
"--no-cache-dir", "--playlist-end=" + MAX_VIDEOS_PER_PAGE, uri.toString());
|
||||
"--no-cache-dir", "--no-playlist",
|
||||
"--playlist-end=" + MAX_VIDEOS_PER_PAGE, uri.toString());
|
||||
logger.info("running: " + String.join(" ", pb.command()));
|
||||
|
||||
Process proc = null;
|
||||
|
||||
Reference in New Issue
Block a user