Add README.md

This commit is contained in:
aadit 2025-10-22 01:28:00 +05:30
parent e917b8de56
commit 82e52a8967

47
README.md Normal file
View file

@ -0,0 +1,47 @@
# Audio Downloader & Tagger
Download YouTube playlists and tag audio files with metadata and cover art.
## Installation
```bash
pip install -r requirements.txt
brew install yt-dlp ffmpeg # macOS
# or: sudo apt-get install yt-dlp ffmpeg # Ubuntu
```
## Usage
### Download a playlist
```bash
python downloader.py
```
Prompts for: playlist URL, album, artist, output folder, disc number, track start, workers.
### Tag audio files
```bash
python tagger.py
```
Prompts for: folder path, album, artist, disc number, track start, cover filename.
## Features
- Parallel downloads & tagging
- Converts to Opus format
- Embeds metadata & cover art
- Vorbis comment tags (standard)
## Supported Formats
**Download:** .opus, .ogg
**Tag:** .opus, .ogg
## Requirements
- Python 3.8+
- yt-dlp, ffmpeg (system)
- mutagen, joblib (Python)