Download YouTube Video and Audio: Difference between revisions
From WickyWiki
mNo edit summary |
mNo edit summary |
||
| Line 2: | Line 2: | ||
[[Category:202208]] | [[Category:202208]] | ||
Guide: | The tool: | ||
* https://yt-dl.org/ | |||
A Guide: | |||
* https://acceptdefaults.com/2021/10/12/youtube-to-mp3-with-youtube-dl/ | * https://acceptdefaults.com/2021/10/12/youtube-to-mp3-with-youtube-dl/ | ||
A fork with many useful improvements (for example a fix for slow download speed/throttling): | |||
* https://github.com/yt-dlp/yt-dlp#release-files | * https://github.com/yt-dlp/yt-dlp#release-files | ||
Revision as of 17:53, 1 September 2022
The tool:
A Guide:
A fork with many useful improvements (for example a fix for slow download speed/throttling):
MS VC++ 2010 x86 Redistributable (needed for Windows)
For additional encoding formats: ffmpeg.exe (in the subfolder 'essentials'):
Some of the many options:
| extract-audio | Audio only | |
| audio-format | mp3 | ffmpeg.exe required |
| audio-quality | 0 | Best quality |
| output | %%(title)s.%%(ext)s | Filename |
| write-thumbnail | Create a thumbnail from the video | |
| embed-thumbnail | Embed the thumbnail in the mp3 | |
| default-search | ytsearch | Example |
Example batch file:
set /p Search="Type query and press ENTER: " yt-dlp.exe --extract-audio --audio-format mp3 --audio-quality 0 --write-thumbnail --embed-thumbnail --output %%(title)s.%%(ext)s --default-search ytsearch "%Search%"
Mp3Gain to normalize volume level:
Example batch file:
MP3Gain\mp3gain.exe /r *.mp3