ytmdl

ytmdl

YouTube音乐下载器与智能元数据标记工具

ytmdl是一款集成YouTube音乐下载和智能元数据标记功能的开源工具。它可从YouTube提取音频,并自动从iTunes、Spotify等多个数据源获取并添加完整的歌曲信息。支持多种音频格式和灵活配置,ytmdl为用户提供了一种简便方式来获取高质量音乐文件及其相关元数据。

YouTube音乐下载元数据命令行工具PythonGithub开源项目
<div align="center"> <img src=".github/ytmdl.png"> </div> <div align="center"> <h1>YouTube Music Downloader</h1> <h4>Download songs from YouTube by getting the audio from YouTube and the metadata from sources like Itunes, Spotify, Gaana etc.</h4> </div> <div align="center" width="60%" height="auto"> <br> <img src=".github/ytmdl.gif"> </div> <div align="center"> <br/>

forthebadge made-with-python<br/><br/> <img src="https://img.shields.io/badge/Maintained%3F-Yes-blueviolet?style=for-the-badge"> Travis (.org) RepoStatus License PyPI AUR Downloads PRs Welcome Telegram

<p> <a href="https://ko-fi.com/deepjyoti30"><img src="https://raw.githubusercontent.com/adi1090x/files/master/other/kofi.png" alt="Support me on ko-fi"></a> </p> <br/>

[Web App] [Why This?] [Support the Project] [Installation] [Configuration] [WiKi]

<br/> </div>

Web App

Ytmdl also has an web app, you can try it out here

Why this?

This app downloads a song by getting the audio from Youtube sources using youtube-dl and then adds song information like artist name, album name, release date, thumbnail etc by fetching it from sources like Itunes, Spotify, Gaana and other sources.

NO. YoutubeDL doesn't do that. All youtube-dl does is lets you download audio from a video that you specify. This app is not yet another youtube-dl clone.

Support the Project?

Help the development of this project by becoming a backer or a sponsor.

Become a Backer

Become a sponsor

If you like my work, consider buying me a coffee or donating. In case you want to become a patron, join my Pateron

<p align="left"> <a href="https://www.paypal.me/deepjyoti30" target="_blank"><img alt="undefined" src="https://img.shields.io/badge/paypal-deepjyoti30-blue?style=for-the-badge&logo=paypal"></a> <a href="https://www.patreon.com/deepjyoti30" target="_blank"><img alt="undefined" src="https://img.shields.io/badge/Patreon-deepjyoti30-orange?style=for-the-badge&logo=patreon"></a> <a href="https://ko-fi.com/deepjyoti30" target="_blank"><img alt="undefined" src="https://img.shields.io/badge/KoFi-deepjyoti30-red?style=for-the-badge&logo=ko-fi"></a> </p>

Requirements

  • Python 3.6.1
  • ffmpeg

Installation

PyPI

pip install ytmdl

NOTE: System wide installation requires sudo

Arch Linux

ytmdl is available in AUR as ytmdl. It can be found here

NOTE: The git version is availble as ytmdl-git in AUR.

Gentoo

ytmdl can be installed in Gentoo by the following commands

# First set up src_prepare-overlay (as root) emerge -av --noreplace app-eselect/eselect-repository eselect repository enable src_prepare-overlay emaint sync -r src_prepare-overlay # Finally emerge ytmdl (as root) emerge -av --autounmask net-misc/ytmdl

Available in src_prepare-overlay here

NixOS

ytmdl can be installed using Nix with the command

nix-env -iA nixos.ytmdl

Windows

You need to install ffmpeg in order for ytmdl to work properly. This can be done by downloading the ffmpeg binary from here. Once downloaded, extract the file and find the ffmpeg.exe file. Copy the directory's path and add it to PATH in the following way.

setx path "%path%;C:\your\path\here\"

Once ffmpeg is installed, install ytmdl using the following command

pip install ytmdl --upgrade

NOTE: You'll need to have Python 3.6.1 or more installed.

Optionally, also install the latest version of downloader-cli and simber using the following command:

pip install simber downloader-cli --upgrade

Manual

You can manually install ytmdl by cloning this repository and running the setup.py script.

  1. Install setuptools if it isn't already:

    pip install setuptools
  2. Clone this repo:

    git clone https://github.com/deepjyoti30/ytmdl
  3. Move into the ytmdl directory and run the setup.py script:

    cd ytmdl sudo python setup.py install

Usage

usage: ytmdl [-h] [-q] [-o OUTPUT_DIR] [--song SONG-METADATA] [--choice CHOICE] [--artist ARTIST] [--album ALBUM] [--disable-metaadd] [--skip-meta] [-m] [--itunes-id ITUNES_ID] [--spotify-id SPOTIFY_ID] [--disable-sort] [--ask-meta-name] [--on-meta-error ON_META_ERROR] [--proxy URL] [--url URL] [--list PATH TO LIST] [--nolocal] [--format FORMAT] [--trim] [--version] [--keep-chapter-name] [--download-archive FILE] [--ignore-chapters] [--ytdl-config PATH] [--dont-transcode] [--filename NAME] [--pl-start NUMBER] [--pl-end NUMBER] [--pl-items ITEM_SPEC] [--ignore-errors] [--title-as-name] [--level LEVEL] [--disable-file] [--list-level] [SONG_NAME ...] positional arguments: SONG_NAME Name of the song to download. Can be an URL to a playlist as well. It will be automatically recognized. optional arguments: -h, --help show this help message and exit -q, --quiet Don't ask the user to select songs if more than one search result. The first result in each case will be considered. -o OUTPUT_DIR, --output-dir OUTPUT_DIR The location for the song to be downloaded to. When no argument is passed, the default locations of SONG_DIR or XDG_MUSIC_DIR are used. --proxy URL Use the specified HTTP/HTTPS/SOCKS proxy. To enable SOCKS proxy, specify a proper scheme. For example socks5://127.0.0.1:1080/. Pass in an empty string (--proxy "") for direct connection --url URL Youtube song link. --list PATH TO LIST Download list of songs. The list should have one song name in every line. --nolocal Don't search locally for the song before downloading. --format FORMAT The format in which the song should be downloaded. Default is mp3, but can be set in config. Available options are ['mp3', 'm4a', 'opus'] --trim, -t Trim out the audio from the song. Use underlying speech and music segmentation engine to determine and keep only the music in the file. Useful in songs where there are speeches, noise etc before/after the start of the song. Default is false. --version show the program version number and exit --keep-chapter-name Keep the title extracted from the chapter in order to search for the metadata. If not passed, the user will be asked if they'd like to change the title with which the metadata will be searched. --download-archive FILE Skip downloading songs that are present in the passed file. The songs are matched by using the videoId. All downloaded song Id's are automatically added to the file. --ignore-chapters Ignore chapters if available in the video and treat it like one video --ytdl-config PATH Path to the youtube-dl config location or the directory --dont-transcode Don't transcode the audio after downloading. Applicable for OPUS format only. (Default: false) --filename NAME Final filename after the song is ready to be used. This will be given priority over automatic detection unless dynamic filename path is set through config Metadata: --song SONG-METADATA The song to search in Metadata. Particularly useful for songs that have the names in a different language in YouTube. For Example, greek songs. --choice CHOICE The choice that the user wants to go for. Usefull to pass along with --quiet. Choices start at 1 --artist ARTIST The name of the song's artist. Pass it with a song name. --album ALBUM The name of the song's album. Pass it with a song name. --disable-metaadd Disable addition of passed artist and album keyword to the youtube search in order to get a more accurate result. (Default: false) --skip-meta Skip setting the metadata and just copy the converted song to the destination directory. '--manual-meta' will override this option, pass only one of them. -m, --manual-meta Manually enter song details. --itunes-id ITUNES_ID Direct lookup from itunes. If passed, metadata will be automatically added. --spotify-id SPOTIFY_ID Direct lookup for Spotify tracks using the ID. If passed, metadata will be automatically added. --disable-sort Disable sorting of the metadata before asking for input. Useful if the song is in some other language and/or just a few providers are used. --ask-meta-name Ask the user to enter a separate name for searching the metadata (Default: false) --on-meta-error ON_META_ERROR What to do if adding the metadata fails for some reason like lack of metadata or perhaps a network issue. Options are ['exit', 'skip', 'manual', 'youtube'] Playlist: --pl-start NUMBER Playlist video to start at (default is 1) --pl-end NUMBER Playlist video to end at (default is last) --pl-items ITEM_SPEC Playlist video items to download. Specify indices of the videos present in the playlist separated by commas like: '--playlist-items 1, 2, 4, 6' if you want to download videos indexed 1, 2, 4 and 6. Range can also be passed like: '--playlist-items 1-3, 5-7' to download the videos indexed at 1, 2, 3, 5, 6, 7. --ignore-errors Ignore if downloading any video fails in a playlist. If passed, the execution will move to the next video in the passed playlist. --title-as-name Use the title of the video as the name of the song to search for metadata. If not passed, user will be asked if they want to use a different name and continue accordingly. Logger: --level LEVEL The level of the logger that will be used while verbosing. Use `--list-level` to check available options. --disable-file Disable logging to files --list-level List all the available logger levels.

Configuration

Setup

The defaults can be changed by editing the config file in ytmdl folder in your .config folder

The config will be created automatically the first time you run ytmdl and will be present in ~/.config/ytmdl/config

However, it can be created manually by the following command

mkdir -p ~/.config/ytmdl; curl https://raw.githubusercontent.com/deepjyoti30/ytmdl/master/examples/config > ~/.config/ytmdl/config

Above command will download the config from the repo and save it in the ~/.config/ytmdl/ directory.

Supported Options

As of the latest development branch, the following options can be changed from the config

NameDescriptionDefault
SONG_DIRDirectory to save the songs in after editingCurrent directory
SONG_QUALITYQuality of the song320kbps
METADATA_PROVIDERSWhich API providers to use for metadataall supported options are used
DEFAULT_FORMATDefault format of the songmp3
ON_META_ERRORWhat to do if error occurs while writing metaexit
ITUNES_COUNTRYWhich region to use while searching from ItunesUS
SPOTIFY_COUNTRYWhich market to use while searching from SpotifyUS

Advanced Configuration

Dynamically storing songs

SONG_DIR field also takes values that are extracted from the song being downloaded

The SONG_DIR field needs to be passed some special values in order to achieve that. The string is scanned and when a $ sign occurs, the special string will start and each directory can be separated by using an -> sign.

To save the song in the /dir/<album_name>/<artist_name>/<title>/<song_name>.mp3 format, the following needs to be added in the SONG_DIR field.

SONG_DIR="/dir$Album->Artist->Title"

Above will extract to the following directory structure when a song named Cradles by artist Sub Urban from the album Cradles - Single

|--dir
   |--Cradles - Single
      |--Sub Urban
         |--Cradles
            |--Cradles.mp3

In order to pass the name with which the song should be saved, the last attribute can be passed between [].

If the SONG_DIR field is /dir$Album->[Artist] will extract to the following directory structure

|--dir
   |--Cradles - Single
      |--Sub Urban.mp3

Supported options for dynamic storing

As of the latest source, the following options can be passed to the special string in order to create dynamic directories

Name
ArtistArtist Of the Song
AlbumAlbum Of the Song
TitleTitle Of the Song
GenreGenre Of the Song
TrackNumberTrackNumber Of the Song
ReleaseDateReleaseDate Of the Song

编辑推荐精选

即梦AI

即梦AI

一站式AI创作平台

提供 AI 驱动的图片、视频生成及数字人等功能,助力创意创作

扣子-AI办公

扣子-AI办公

AI办公助手,复杂任务高效处理

AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!

Keevx

Keevx

AI数字人视频创作平台

Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。

TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
蛙蛙写作

蛙蛙写作

AI小说写作助手,一站式润色、改写、扩写

蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。

AI辅助写作AI工具蛙蛙写作AI写作工具学术助手办公助手营销助手AI助手
问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

热门AI助手AI对话AI工具聊天机器人
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

下拉加载更多