Metadata-Version: 2.3
Name: ass-whispers
Version: 0.1.3
Summary: Transcribe audio to text for Aegisub macro Whispers
License: MIT License
         
         Copyright (c) 2024 Ghegghe
         
         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.
Keywords: subtitles,transcription,aegisub,whisper,automation
Author: Ghegghe
Author-email: nicopante98@gmail.com
Requires-Python: >=3.12
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Dist: faster-whisper (>=1.1.1,<2.0.0)
Requires-Dist: pydub (>=0.25.1,<0.26.0)
Project-URL: Repository, https://github.com/Ghegghe/aegis-lua-scripts
Description-Content-Type: text/markdown

# ass-whispers

**ass-whispers** is a tool for transciption builded for **Aegisub** macro **Whispers**.

## GPU

GPU execution requires the following NVIDIA libraries to be installed:

- [cuBLAS for CUDA 12](https://developer.nvidia.com/cublas)
- [cuDNN 9 for CUDA 12](https://developer.nvidia.com/cudnn)

## Usage

ass-whispers [-h] [--device DEVICE] [--model MODEL]
[--language LANGUAGE] [--version]
audio timestamps
ass-whispers \<audio_file> \<timestamps_file> [-h] [--device DEVICE] [--model MODEL] [--language LANGUAGE] [--version]

## Timestamps File Format

The timestamps_file should be a JSON file like this:

```
[
  {"start_time": 1234, "end_time": 5678},
  {"start_time": 9100, "end_time": 11234}
]
```

Developed by Ghegghe.

