
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
The python SDK developed by Voicen allows customers to use speech-to-text service of Voicen.
This is Python SDK to use Speech-to-text service of Voicen. To see more about API visit to API Documentation. You are free to develop your own SDK for different languages using Voicen API documentation.
You can install SDK direct from pip repository running this command:
pip install --upgrade voicen-python-sdk
You can also install from source code:
python setup.py install --user
Before using this SDK you must have an Access Token. To get Access Token visit to API Token page. There is an Access Token generated for you. Use this Access Token to create your client:
from voicen import vcnclient
# create your client
voicen_client = vcnclient.VoicenClient('ACCESS_TOKEN')
Once you have set up your client with your Access Token you can send a file to transcribe. You also must specify language of speech.
#send a file to transcribe
job = voicen_client.create_job_with_local_file('PATH_TO_FILE', 'LANGUAGE')
Once you have set up your client with your Access Token you can send a media URL to transcribe. For example you can use youtube URL as a media URL. You also must specify language of speech.
#send a media URL to transcribe
job = voicen_client.create_job_with_media_url('MEDIA_URL', 'LANGUAGE')
You can check status of job using its id
#get job details
job_details = voicen_client.get_job(job.id)
You can get list of jobs.
#get list of jobs
jobs = voicen_client.get_jobs()
#limit number of jobs in the list
jobs = voicen_client.get_jobs(limit=50)
#get jobs starting after the certain job id
jobs = voicen_client.get_jobs(start_after=1203)
You can delete job using its id
#delete job
voicen_client.delete_job(job.id)
You can get your transcription in these formats:
#get your transcription as a json
#returns Transcription object
transcription = voicen_client.get_transcription(job.id)
#get your transcription as a text
#return string
transcription_text = voicen_client.get_transcription_as_text(job.id)
#get your transcription as a srt
#returns string
transcription_srt = voicen_client.get_transcription_as_srt(job.id)
#get your transcription as ms word
#returns byte array
transcription_msword = voicen_client.get_transcription_as_msword(job.id)
You can get you account email and balance in seconds.
#get account
account = voicen_client.get_account()
You can get your payment details.
#get payment details
payment = voicen_client.get_payments()
FAQs
The python SDK developed by Voicen allows customers to use speech-to-text service of Voicen.
We found that voicen demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.