Metadata-Version: 2.4
Name: viseeker
Version: 0.1.0
Summary: A collection of computer-vision tools for LLM Agents (image/video processing & understanding)
Project-URL: Homepage, https://github.com/awmthink/viseeker
Project-URL: Source, https://github.com/awmthink/viseeker
Author-email: awmthink <awmthink@outlook.com>
License: MIT License
        
        Copyright (c) 2026 awmthink
        
        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: agent,ai,computer-vision,image,llm,skills,tools,video
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Requires-Dist: boto3>=1.28.0
Requires-Dist: numpy
Requires-Dist: openai>=1.58.0
Requires-Dist: opencv-python-headless
Requires-Dist: python-dotenv
Requires-Dist: requests>=2.31.0
Requires-Dist: volcengine-python-sdk[ark]>=5.0.9
Description-Content-Type: text/markdown

# viseeker

A collection of computer vision utilities for image and video processing, designed to be easy for AI agents to use.

## Quick Start

### Install Dependencies

```bash
uv sync --dev
```

Some tools require FFmpeg:

```bash
brew install ffmpeg
```

### Run a Tool

```bash
uv run python -m viseeker.video_metadata ./demo.mp4
```

## Available Tools

See `TOOLS.md` for detailed usage and examples.

- **video_metadata**: Extract video metadata (duration, codec, resolution, framerate, etc.)
- **video_keyframes**: Extract keyframes using multiple algorithms
- **video_resize**: Resize videos with various aspect ratio strategies
- **video_remove_audio**: Remove audio track from videos
- **video_convert_mp4**: Convert videos to MP4 format
- **video_adaptive_compress**: Adaptive video compression to target file size
- **video_split**: Split videos by I-frames or fixed duration

## Features

- **Unified Input**: Supports local paths, HTTP/HTTPS URLs, and S3 URLs (`s3://bucket/key`)
- **JSON Output**: All tools return JSON-serializable results
- **Composable**: Single-responsibility tools that can be combined in workflows
