Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
youtube-dl display redirection #1031
Comments
|
That's not specific to youtube-dl, but how every program works: You have two output streams, stdout and stderr. (Exceptional) error messages go on stderr, whereas normal log output (which some applications parse from youtube-dl) goes to stdout. Use
|
Hello, since some days I redirect youtube-dl displays in log files to get a trace of some broken downloads with this command:
youtube-dl http://youtube.zzz/zzz?v=zzz | tee logfile.txt
but i just noticed it doesnt save the whole text, certain parts like "Raise" text are displayed but not saved in the file, however, the "Print" text is saved correctly.
Does someone have any idea on how to save the whole content displayed when downloading a file with youtube-dl ?
Thanks.