Metadata-Version: 2.2
Name: transcribr
Version: 0.1.1
Summary: Effortless Audio / Video Transcription and Subtitle Generation.
Author-email: Jonas Kneifl <jonas.kneifl@itm.uni-stuttgart.com>
Project-URL: Homepage, https://github.com/jkneifl/transcribr
Project-URL: Issues, https://github.com/jkneifl/transcribr/issues
Keywords: transcription,subtitle,audio,video
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ffmpeg-python
Requires-Dist: openai-whisper

# transcribr
Effortless Audio &amp; Video Transcription and Subtitle Generation

## Description:
transcribr is a simple Python package designed to automatically transcribe audio and video files into accurate text or subtitle formats (.srt). 
It supports multiple languages, offering fast and reliable speech recognition for creating subtitles or generating transcriptions for podcasts, lectures, interviews, and more. 
Built on state-of-the-art speech recognition models (OpenAI whisper), transcribr simplifies the process of turning spoken words into structured, searchable text.

## Key Features:
	•	Supports video (.mp4, .mov, etc.) and audio (.mp3, .wav, etc.) inputs
	•	Generates subtitle files (.srt) with precise timestamps
	•	Multilingual transcription capabilities
	•	Easy integration into Python workflows

## Use Cases:
	•	Automatic subtitle generation for videos
	•	Transcription of podcasts and interviews
	•	Creating searchable transcripts for lectures and meetings

## Get Started:
Install the package and generate your first transcription in minutes with just a few lines of code!

### Installation

```bash
pip install transcribr
```

### Example Usage

```python
from transcribr import Transcribr

video_file = "example.mp3"  # Replace with your video file path

# transcribe content
transcribr = Transcribr(model="base")
transcribr.transcribe(video_file)

# save transcription and subtitles
transcribr.save_transcription(output_file="output.txt")
transcribr.save_subtitles(output_file="output.srt")
