├── .github └── FUNDING.yml ├── .travis.yml ├── LICENSE ├── README.md ├── requirements.txt ├── sample_material ├── 01-plain.json ├── 02-channel-identification.json ├── 03-speaker-identification.json ├── 04-alternative-results.json ├── 05-automatic-content-redaction-with-undredacted-redacted.json ├── 06-automatic-content-redaction-with-undredacted-unredacted.json ├── 07-vocabulary-filter-mask.json ├── 08-vocabulary-filter-remove.json ├── 09-channel-identification-alternative-results.json ├── 10-speaker-identification-alternative-results.json ├── 11-channel-identification-vocabulary-filter-mask.json ├── 12-channel-identification-vocabulary-filter-remove.json ├── 13-speaker-identification-vocabulary-filter-mask.json ├── 14-speaker-identification-vocabulary-filter-remove.json ├── 15-alternative-results-vocabulary-filter-mask.json ├── 16-alternative-results-vocabulary-filter-remove.json ├── 17-channel-identification-alternative-results-vocabulary-filter-mask.json ├── 18-channel-identification-alternative-results-vocabulary-filter-remove.json ├── 19-speaker-identification-alternative-results-vocabulary-filter-mask.json └── 20-speaker-identification-alternative-results-vocabulary-filter-remove.json ├── setup.py ├── test_legacy.py ├── test_tscribe.py └── tscribe └── __init__.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_material/01-plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/01-plain.json -------------------------------------------------------------------------------- /sample_material/02-channel-identification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/02-channel-identification.json -------------------------------------------------------------------------------- /sample_material/03-speaker-identification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/03-speaker-identification.json -------------------------------------------------------------------------------- /sample_material/04-alternative-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/04-alternative-results.json -------------------------------------------------------------------------------- /sample_material/05-automatic-content-redaction-with-undredacted-redacted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/05-automatic-content-redaction-with-undredacted-redacted.json -------------------------------------------------------------------------------- /sample_material/06-automatic-content-redaction-with-undredacted-unredacted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/06-automatic-content-redaction-with-undredacted-unredacted.json -------------------------------------------------------------------------------- /sample_material/07-vocabulary-filter-mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/07-vocabulary-filter-mask.json -------------------------------------------------------------------------------- /sample_material/08-vocabulary-filter-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/08-vocabulary-filter-remove.json -------------------------------------------------------------------------------- /sample_material/09-channel-identification-alternative-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/09-channel-identification-alternative-results.json -------------------------------------------------------------------------------- /sample_material/10-speaker-identification-alternative-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/10-speaker-identification-alternative-results.json -------------------------------------------------------------------------------- /sample_material/11-channel-identification-vocabulary-filter-mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/11-channel-identification-vocabulary-filter-mask.json -------------------------------------------------------------------------------- /sample_material/12-channel-identification-vocabulary-filter-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/12-channel-identification-vocabulary-filter-remove.json -------------------------------------------------------------------------------- /sample_material/13-speaker-identification-vocabulary-filter-mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/13-speaker-identification-vocabulary-filter-mask.json -------------------------------------------------------------------------------- /sample_material/14-speaker-identification-vocabulary-filter-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/14-speaker-identification-vocabulary-filter-remove.json -------------------------------------------------------------------------------- /sample_material/15-alternative-results-vocabulary-filter-mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/15-alternative-results-vocabulary-filter-mask.json -------------------------------------------------------------------------------- /sample_material/16-alternative-results-vocabulary-filter-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/16-alternative-results-vocabulary-filter-remove.json -------------------------------------------------------------------------------- /sample_material/17-channel-identification-alternative-results-vocabulary-filter-mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/17-channel-identification-alternative-results-vocabulary-filter-mask.json -------------------------------------------------------------------------------- /sample_material/18-channel-identification-alternative-results-vocabulary-filter-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/18-channel-identification-alternative-results-vocabulary-filter-remove.json -------------------------------------------------------------------------------- /sample_material/19-speaker-identification-alternative-results-vocabulary-filter-mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/19-speaker-identification-alternative-results-vocabulary-filter-mask.json -------------------------------------------------------------------------------- /sample_material/20-speaker-identification-alternative-results-vocabulary-filter-remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/sample_material/20-speaker-identification-alternative-results-vocabulary-filter-remove.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/setup.py -------------------------------------------------------------------------------- /test_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/test_legacy.py -------------------------------------------------------------------------------- /test_tscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/test_tscribe.py -------------------------------------------------------------------------------- /tscribe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibaffo33/aws_transcribe_to_docx/HEAD/tscribe/__init__.py --------------------------------------------------------------------------------