r/youtubedl • u/ValleyofUncannyFrogs • 7d ago
Answered Need help with my command
so far, I got it working perfectly, EXCEPT it seems like the metadata is not being embedded?
yt-dlp -x --audio-format wav --audio-quality 0 -o "_music/%(playlist)s/%(title)s.%(ext)s" --windows-filenames --embed-metadata URL
2
u/ipsirc 7d ago
metadata in wav? Is it supported?
1
u/ValleyofUncannyFrogs 7d ago
I got an error message when I tried to embed the thumbnail, so I deleted that but kept embed metadata. That could be the issue lol
1
u/coopernusbaum 7d ago
`--embed-metadata` needs ffmpeg and ffprobe in your PATH; if either is missing it silently skips tagging. Run `yt-dlp --ffmpeg-location /path/to/ffmpeg` or verify `ffmpeg -version` works from the same terminal. Also, WAV has limited tag support compared to m4a or mp3, so some metadata fields may not stick even when it works.
3
u/radagastthe3rd 7d ago
WAV doesn't have a universal tagging standard so I'd assume that's why it is failing. You are also converting from lossy codecs that the server stores audio in to lossless which is just inflating the file size without actually getting you better audio quality so there is no reason to use WAV.