package + python API
Finally, a python API to transcribe things instead of using a CLI or custom notebook!
See the example here on Colab.
high-level API
Install with pip:
pip install git+https://github.com/pszemraj/vid2cleantxt.git
Use in python:
import vid2cleantxt
text_output_dir, metadata_output_dir = vid2cleantxt.transcribe.transcribe_dir(
input_dir="path/to/video/files",
chunk_length=15,
)
What's Changed
- packaging by @JonathanLehner in #9
- Update v2ct_utils.py by @JonathanLehner in #10
- Update transcribe.py by @JonathanLehner in #11
- Add spacy workaround by @pszemraj in #12
- Update docs by @pszemraj in #13
New Contributors
- @JonathanLehner made their first contribution in #9
Full Changelog: v0.1.21...v0.2