Questions tagged [transcription]
160 questions
0
votes
1 answer
Get transcription of recognized data using SpeechRecognizer
I use SpeechRecognizer for implement a "speech-to-text" functional and result of her work is a text data:
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,…

Dev0ps
- 71
- 3
- 9
0
votes
3 answers
How to start the actual "Speech to text"?
I am a freelancing author and have gathered tons of hours of interview material which needs to be transcribed.
While browsing the Internet I came across IBM Watson "Speech to text" which should be the ideal solution to handle that huge amount of…
0
votes
1 answer
Google Speech Transcription
If the Google Speech API transcribes audio at near real time, and my latency to the actual server is only 50ms, why do I receive my final streaming transcription result after 1.6s? Shouldn’t I receive it in only a couple hundred milliseconds?

Harry Stuart
- 1,781
- 2
- 24
- 39
0
votes
0 answers
deepspeech training audio file length
Is it compulsory to have training and inferring audio file length equal to 5 seconds?
I have this questions because I have a large amount of training data with audio(every audio more than 30 seconds) and respective transcripts. If I can’t use this…

megha
- 115
- 1
- 2
- 10
0
votes
1 answer
Export/Generate Conversation Dialogue? Watson Conversation (Assistant)
After completion of a conversation in Assistant (Formerly Conversation) - I am looking to post a transcript of the conversation, posting out the text or .txt file, etc. I have not been able to figure out any methods for this, was hoping for any…

ServiceNow Guy
- 33
- 4
0
votes
0 answers
Watson Speech to Text - Add Custom Audio Resources in ZIP or tar.gz keeps failing
I'm trying to add 17 MP3 files as audio resources in Speech To Text to build a custom acoustic model.
When I upload files individually they work fine.
When adding as a ZIP or tar.gz file, the system declares them invalid.
The ZIP and tarball were…

eyeheartny
- 11
- 4
0
votes
1 answer
AWS Transcribe REST API
AWS recently released a very exciting transcribe library.
It seems that the API for using it is only using python (boto) or their CLI
I'd like to use NodeJS API or at least to have REST API.
I was not able to find REST API, does anyone know…

YardenST
- 5,119
- 2
- 33
- 54
0
votes
1 answer
auto generate the transcript of video i.e subtitles and captions
Is there a way or any plugin who can generate transcript of video to play in website page. e.g the captions and subtitle of video in English language

Asad
- 3,070
- 7
- 23
- 61
0
votes
2 answers
Translating normal code to 3AC - Three address code
I am trying to make an algorithm that will transcribe certain input, such as:
(a * b) / (c * d)
and will print out input like this in 3AC:
t1: a * b
t2: c * d
t3= t1/t2
Has anyone any suggestions?

lauderdice
- 49
- 1
- 5
0
votes
1 answer
eesen-transcriber - Adding Technical Words to Dictionary
I'm using the srvk/eesen-transcriber repository to transcribe some audio files and I've got everything up and running as expected on my Vagrant virtual machine.
I'd like to be able to transcribe very technical audio recordings with words like Linux,…

JasonJensenDev
- 2,377
- 21
- 30
0
votes
1 answer
Why can't I copy IPA symbols from PDF in Linux?
I have a PDF file with some phonetic symbols (IPA) like this: ʤ, ə, etc.
If I copy a text with that symbols, I paste the text without them.
Linux mint 17.

Piter
- 87
- 1
- 4
- 15
0
votes
2 answers
How can I transcribe an audio file stored on the memory on android using the IBM Watson websocket interface?
I went through the tutorial and other questions but found no documentation on how to select a path for a pre-recorded audio file and send it to the service for transcription. I came across this code in the tutorial
curl -X POST -u…

skbrhmn
- 1,124
- 1
- 14
- 36
0
votes
1 answer
Voice recognition with Julius. How to make .voca file?
I'm making a voice recognition system and Julius shows not bad results in this work.
Words from sample .voca file are recognizing perfectly but how to place own words and transcriptions to the file?
I've tried VoxForge (http://www.voxforge.org/)…

Shamanu4
- 5,296
- 2
- 27
- 31
0
votes
2 answers
some php to ASP.NET
anyone kind enough to transcribe this php to ASP.NET ??
thank you kindly in advance.
jJ

fabric
- 31
- 3
0
votes
1 answer
Using Apple's Transcription
I was wondering if it is possible to use what Apple uses for Siri and Dictation in my own IOS app.
If this is possible, then how would I do it?
If Apple uses a 3rd party to transcribe audio files, then what is it? Does it have an API?
If Apple does…

Daniel
- 3,188
- 14
- 34