DEV Community

Haider Saiyed
Haider Saiyed

Posted on

What is missing in Python script

While using import yt_dlp, how do I modify this code

ydl_opts = {
    'outtmpl': save_path + '/%(title)s.%(ext)s',
    'postprocessors': [{
        'key': 'FFmpegExtractAudio',
        'preferredcodec': 'mp3',
        'preferredquality': '0',
    }],
}
Enter fullscreen mode Exit fullscreen mode

to retrieve both artists and album information along with title for a complete profile of downloaded song?

Top comments (0)