Metadata-Version: 2.4
Name: mobile-audio-kit
Version: 1.0.0
Summary: A terminal utility for managing audio file metadata
Project-URL: Homepage, https://github.com/llaisdy/mak
Project-URL: Bug Tracker, https://github.com/llaisdy/mak/issues
Author-email: Ivan Uemlianin <ivan@llaisdy.co.uk>
License: MIT License
        
        Copyright (c) 2025 Ivan Uemlianin
        
        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,metadata,music,terminal,tui
Classifier: Development Status :: 4 - Beta
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Utilities
Requires-Python: <3.13,>=3.8
Requires-Dist: mutagen>=1.47.0
Requires-Dist: pillow>=11.2.1
Requires-Dist: textual>=3.2.0
Provides-Extra: dev
Requires-Dist: pytest>=8.3.5; extra == 'dev'
Requires-Dist: textual-dev>=1.7.0; extra == 'dev'
Description-Content-Type: text/markdown

# MAK - Mobile Audio Kit

A terminal-based utility for managing audio file metadata, album artwork, and creating playlists.

## Features

- View and edit audio metadata (artist, album, etc.)
- Extract and embed album artwork
- Convert between audio formats
- Create playlists
- Export tracks and playlists to zip files
- Color-coded health checks for metadata completeness

## Installation

```bash
pip install mobile-audio-kit
```

## Usage
Start `mak` by pointing it to a directory containing audio files:

```bash
mak path/to/your/music/folder
```

## Commands

- `<number>` - View track details
- `enc <format>` - Set encoding for all tracks
- `art <artist>` - Set artist for all tracks
- `alb <album>` - Set album for all tracks
- `img <file>` - Set image for all tracks
- `img <track> from <track>` - Copy image between tracks
- `pll <tracks> <name>` - Create playlist
- `sel <track_numbers>` - Select tracks for export
- `selview` - Show and manage selection order
- `zip` - Create zip export of selected tracks
- `help` or `?` - Show help information
- `q` or `quit` - Exit the application

## Requirements

- Python 3.8 or higher
- ffmpeg (for audio conversion)

## License

MIT License - see LICENSE file for details.
