Metadata-Version: 2.1
Name: tscribe
Version: 1.0.2
Summary: Produce .docx transcriptions from AWS Transcribe output.
Home-page: https://github.com/kibaffo33/aws_transcribe_to_docx
Author: Robert Williams
Author-email: robertedwardwilliams@me.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: python-docx
Requires-Dist: matplotlib

# aws_transcribe_to_docx

Produce Word Document transcriptions using the automatic speech recognition from AWS Transcribe. Requires  Python 3.7+

[![Build Status](https://travis-ci.com/kibaffo33/aws_transcribe_to_docx.svg?branch=master)](https://travis-ci.com/kibaffo33/aws_transcribe_to_docx)

# Installation

```bash
pip install tscribe
```

## Usage

```
>>> import tscribe

>>> tscribe.write("output.json")
Transcript output.docx written.

>>> tscribe.write("output.json", save_as="transcript.docx")
Transcript transcript.docx writen.
```

## Results

| Time    | Speaker | Comment     |
| ------- | ------- | ----------- |
| 0:00:03 | spk_0   | Is this on? |
| 0:00:05 | spk_1   | Yep.        |
| 0:00:06 | spk_0   | Great.      |




