updated README and bumped version
This commit is contained in:
28
README.md
28
README.md
@@ -27,11 +27,12 @@ tatt is a CLI for creating and managing speech-to-text transcripts.
|
|||||||
--help Show this message and exit.
|
--help Show this message and exit.
|
||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
get Downloads and/or saves completed transcript.
|
get Downloads and/or saves completed transcript.
|
||||||
list Lists available STT services.
|
languages
|
||||||
services Lists available speech-to-text services.
|
list Lists available STT services.
|
||||||
status Check the status of a transcription job.
|
services Lists available speech-to-text services.
|
||||||
this Sends a media file to be transcribed.
|
status Check the status of a transcription job.
|
||||||
|
this Sends a media file to be transcribed.
|
||||||
|
|
||||||
### List All STT Services
|
### List All STT Services
|
||||||
$ transcribe services
|
$ transcribe services
|
||||||
@@ -47,6 +48,23 @@ tatt is a CLI for creating and managing speech-to-text transcripts.
|
|||||||
Okay, transcribing <path_to_media_file> using <service_name>...
|
Okay, transcribing <path_to_media_file> using <service_name>...
|
||||||
Okay, job <job_name> is being transcribed. Use "get" command to download it.
|
Okay, job <job_name> is being transcribed. Use "get" command to download it.
|
||||||
|
|
||||||
|
$ transcribe this --help
|
||||||
|
|
||||||
|
Usage: transcribe this [OPTIONS] MEDIA_FILEPATH SERVICE_NAME
|
||||||
|
|
||||||
|
Sends a media file to be transcribed.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
--punctuation only for Google Speech, defaults to True
|
||||||
|
--speaker-id / --no-speaker-id only for google and amazon, defaults to True
|
||||||
|
--num_speakers INTEGER only for google and amazon, defaults to 2
|
||||||
|
--model TEXT only for Google Speech, defaults to
|
||||||
|
"phone_call"
|
||||||
|
--use-enhanced only for Google Speech, defaults to True
|
||||||
|
--language-code TEXT only for google and amazon, defaults to en-
|
||||||
|
US
|
||||||
|
--help Show this message and exit.
|
||||||
|
|
||||||
### List Transcripts
|
### List Transcripts
|
||||||
$ transcribe list
|
$ transcribe list
|
||||||
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -6,7 +6,7 @@ with open('README.md') as file:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="tatt",
|
name="tatt",
|
||||||
version="0.977",
|
version="0.98",
|
||||||
py_modules=['tatt'],
|
py_modules=['tatt'],
|
||||||
url='https://github.com/zevaverbach/tatt',
|
url='https://github.com/zevaverbach/tatt',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
|||||||
Reference in New Issue
Block a user