Metadata-Version: 2.4
Name: ntech-yt-downloader
Version: 0.1.1
Author: NiettoVale
License: MIT License
        
        Copyright (c) 2026 NiettoVale
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: audio,cli,downloader,mp3,music,youtube,youtube-music
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet
Classifier: Topic :: Multimedia :: Sound/Audio
Requires-Python: >=3.10
Requires-Dist: rich
Requires-Dist: typer
Requires-Dist: yt-dlp
Description-Content-Type: text/markdown

# ntech-yt-downloader

Herramienta de línea de comandos para descargar canciones en audio a partir de una playlist de YouTube Music (o YouTube).

## Características

- Descarga todas las canciones de una playlist en paralelo
- Convierte el audio al formato elegido (MP3, Opus, etc.) mediante FFmpeg
- Barra de progreso en tiempo real con resumen final
- Configurable en número de hilos y directorio de salida

## Requisitos

- Python 3.10+
- [FFmpeg](https://ffmpeg.org/) instalado y disponible en el `PATH`

## Instalación

```bash
pip install ntech-yt
```

## Uso

```
ntech-yt [OPCIONES] URL
```

### Opciones

| Opción | Valor por defecto | Descripción |
|---|---|---|
| `--output-dir` | `./downloads` | Directorio de destino de los archivos |
| `--workers` | `3` | Número de descargas simultáneas |
| `--fmt` | `mp3` | Formato de audio de salida |

### Ejemplos

Descargar una playlist en MP3 (configuración por defecto):

```bash
ntech-yt "https://music.youtube.com/playlist?list=PLxxxx"
```

Guardar en un directorio personalizado con 5 hilos en formato Opus:

```bash
ntech-yt "https://music.youtube.com/playlist?list=PLxxxx" \
    --output-dir ~/Música \
    --workers 5 \
    --fmt opus
```

> **Aviso**: Esta herramienta está diseñada para descargar contenido libre de derechos o para uso personal (copia privada) en cumplimiento con las leyes locales. El autor no se hace responsable del mal uso de esta herramienta que infrinja los Términos de Servicio de YouTube.

## Licencia

MIT © 2026 NiettoVale
