Metadata-Version: 2.4
Name: audiovisually
Version: 0.1.4
Summary: A package for audiovisual AI processing
Author: Louie Daans
Author-email: louiedaans@gmail.com
Project-URL: Documentation, https://bredauniversityadsai.github.io/2024-25d-fai2-adsai-group-nlp-3/
Project-URL: Source, https://github.com/BredaUniversityADSAI/2024-25d-fai2-adsai-group-nlp-3/tree/main/audiovisually-pack
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: moviepy
Requires-Dist: googletrans==4.0.2
Requires-Dist: whisper
Requires-Dist: torch
Requires-Dist: nltk
Requires-Dist: assemblyai
Requires-Dist: python-dotenv
Requires-Dist: transformers
Requires-Dist: tqdm
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Audiovisually

A Python package for leveraging audiovisual data for advanced AI applications.

[**Full Documentation**](https://bredauniversityadsai.github.io/2024-25d-fai2-adsai-group-nlp-3/)

## Table of Contents
- [Audiovisually](#audiovisually)
  - [Table of Contents](#table-of-contents)
  - [Introduction](#introduction)
  - [Features](#features)
  - [Installation](#installation)
  - [Package Structure](#package-structure)
  - [Usage](#usage)
  - [Contributing](#contributing)
  - [License](#license)

## Introduction
This package provides tools and utilities for processing and analyzing audiovisual data, enabling the development of intelligent systems that integrate audio and visual inputs.

## Features
- Audio and video data preprocessing
- Feature extraction for audiovisual datasets
- Pre-trained models for audiovisual tasks
- Customizable pipelines for specific use cases

## Installation
You can install the package directly from PyPI:

```bash
pip install audiovisually
```

## Package Structure
The package is organized as follows:

```
audiovisually
├── __init__.py
├── utils.py
├── preprocess.py
├── predict.py
├── evaluate.py
└── train.py
```

## Usage
Here’s an example of how to use the package:

```python
from audiovisually.preprocess import convert_video_to_mp3

# Convert a video file to MP3
convert_video_to_mp3("input_video.mp4", "output_audio.mp3")
```

## Contributing
Contributions are welcome! Please follow these steps:
1. Fork the repository.
2. Create a new branch (`git checkout -b feature-name`).
3. Commit your changes (`git commit -m 'Add feature'`).
4. Push to the branch (`git push origin feature-name`).
5. Open a pull request.

## License
This package is licensed under the [MIT License](LICENSE).
