Transcribe live phone calls using Twilio Media Streams

  Рет қаралды 24,073

Twilio

Twilio

Күн бұрын

Пікірлер: 33
@twilio
@twilio 3 жыл бұрын
NOTE: The commands to purchase a local number in the CLI has changed to: List local numbers: twilio api:core:available-phone-numbers:local:list \ --area-code 209 --country-code US Purchase an available number: twilio api:core:incoming-phone-numbers:create \ --phone-number "+12092645211" 🔥 Watch this next: kzbin.info/www/bejne/g5nQdpKebKx9pac
@akhilsachdev5582
@akhilsachdev5582 Жыл бұрын
Is there a version of this in python?
@MrJasonFrank
@MrJasonFrank 3 жыл бұрын
Really liked this. Nice and digestible. Hope to see more like it from you guys!
@twilio
@twilio 3 жыл бұрын
Hey thanks for watching Jason! More on the way 😀
@matthewnugent9430
@matthewnugent9430 3 жыл бұрын
Seeing that live packet by packet at the end was cool. Can I get a live feed of my reps calls in a Slack channel? Use case: SDR gets an executive on the phone, if I the Account Executive could see the transcription (from the start of the call to real time) that would be really powerful. Doesn’t have to be in slack. Eliminates note taking
@twilio
@twilio 2 жыл бұрын
There are definitely ways to integrate with Slack as a Slack bot. That’s an interesting use case!
@serhatkoroglu6708
@serhatkoroglu6708 3 жыл бұрын
hey my friend thank you for this great video and tutorial i'm so happy. congrats all twilio crew for such super easy setup.
@twilio
@twilio 3 жыл бұрын
Thanks for watching! Let us know if there’s anything else we can help you with.
@majetysaiabhinesh7239
@majetysaiabhinesh7239 Жыл бұрын
Nice video, rather than listening call recording audio now we can see the whole conversation.
@SathishM-n8i
@SathishM-n8i 4 күн бұрын
can i able to inject a audio file on this call , is possible ?
@grupomexcomer
@grupomexcomer 2 жыл бұрын
Nice, I will have multiple users making calls, is it possible to use their Caller ID (not Twilio phone numbers) and have this stream feature available? Other question, can I twilio phone number make more than 1 call at the same time to different phone numbers? Thanks
@tahaaslam4009
@tahaaslam4009 2 жыл бұрын
bump
@richeek10
@richeek10 8 ай бұрын
I see that console output has same utterance multiple time. Won't it create duplicity for downstream tools wanted to use this transcribed data?
@russellkirkwood
@russellkirkwood 3 жыл бұрын
Does twilio offer transcribe services? If yes, I am wondering why you are using Google’s
@twilio
@twilio 3 жыл бұрын
We have transcription for call recordings but this example is showing how to transcribe a live call as the audio is coming in.
@zainjahangir296
@zainjahangir296 3 жыл бұрын
hey mate i ve been assigned a Project text to speech over live call can any one help me
@M-ABDULLAH-AZIZ
@M-ABDULLAH-AZIZ Жыл бұрын
do streams work 2 way? i.e. can we send the response in a similar manner if we have some service that's returning text in streams?
@taqikhan5418
@taqikhan5418 Жыл бұрын
Can Two people actually communicate on phone through twilio or some recorded message is send?
@Iamdamso
@Iamdamso 2 жыл бұрын
Can we have the same Twilio tutorial with Microsoft azure STT using NodeJs?
@matthewnugent9430
@matthewnugent9430 3 жыл бұрын
Can this be used in a SalesLoft environment? Gong? Asking as a rep that makes calls via SL. Great vid thanks
@twilio
@twilio 2 жыл бұрын
I’m not personally familiar with SalesLoft but I can see they are a Twilio customer (customers.twilio.com/1899/salesloft/) so this might be a good feature request for their team!
@toshvelaga
@toshvelaga 2 жыл бұрын
Great content! Thank you so much!
@arttursh8324
@arttursh8324 Жыл бұрын
Looks great ...I'm afraid the programming is above my head though. I'm looking for something very close to what you put together here. I have an cousin who is nearly deaf. It would be immensely helpful to him if, as he was on his landline phone calls (at his desk, working at his PC), if speech to text from incoming calls could be displayed real time on his computer screen. It would probably be better if a transcript of the calls was NOT made. I imagine such a product would have sales potential beyond my cousin for the hard of hearing. Can you (the young man in this KZbin), or Twilio, or anyone on this particular thread make such a thing happen ...or point me in the right direction?
@FreeSkypeGenerator1
@FreeSkypeGenerator1 Жыл бұрын
I think I can look into it.
@deeksha5626
@deeksha5626 3 жыл бұрын
Please do a video on flex reporting
@Cliphuesx
@Cliphuesx 2 жыл бұрын
How to do in android?
@jaysonp9426
@jaysonp9426 6 ай бұрын
Yeah now do this on a cloud server...
@ignamendi21
@ignamendi21 2 жыл бұрын
I need a python tutorial please!!!!
@umaradamujere8184
@umaradamujere8184 3 жыл бұрын
Twilio dont work in Nigeria😒
@mohanlar2479
@mohanlar2479 2 жыл бұрын
Guys, telebit is better instead of ngrok .
@EdwardOcando
@EdwardOcando 2 жыл бұрын
Please... SPANISHHHHHHHH
@Array_of_objects
@Array_of_objects 2 жыл бұрын
If you are doing this in a real world app, when you send a post request to provision your twilio number from your backend (im using nodejs) add the voiceUrl as a property in your object when creating number. const numberSid = await client.incomingPhoneNumbers .create({phoneNumber: selectedNumber, voiceUrl: "Put your ngrok domain to your backend here"}) .then(incoming_phone_number => {console.log( incoming_phone_number.sid)})
@hosseinhosseini-fy6ce
@hosseinhosseini-fy6ce Жыл бұрын
Hi, I have written a code in Python and used transcription_callback. but it is not working. and restart my call from begging. However, if I change to "action". it is working do you know what is the problem. code is the following: @app.route("/voice", methods=['POST']) def voice(): response = VoiceResponse() say = Say('Hi', voice='Polly.Emma') say.break_(strength='x-weak', time='100ms') say.p('leave your message') response.append(say) response.gather() response.record(transcribe_callback='/transcribe') response.hangup() return str(response) @app.route('/transcribe', methods=['GET', 'POST']) def transcribe(): print('hi')
Calls with .NET and Twilio
1:26:31
JetBrains
Рет қаралды 7 М.
The day of the sea 😂 #shorts by Leisi Crazy
00:22
Leisi Crazy
Рет қаралды 1,3 МЛН
How Strong is Tin Foil? 💪
00:26
Preston
Рет қаралды 107 МЛН
POV: Your kids ask to play the claw machine
00:20
Hungry FAM
Рет қаралды 19 МЛН
World’s Fastest Talking AI: Deepgram + Groq
11:45
Greg Kamradt (Data Indy)
Рет қаралды 49 М.
What Is Twilio? SMS and Voice API's explained
16:10
Matt Kander
Рет қаралды 71 М.
Best FREE Speech to Text AI - Whisper AI
8:22
Kevin Stratvert
Рет қаралды 980 М.
Take live phone calls on your Twitch or YouTube stream!
10:43
Transcribe a live phone call with Python - Flask tutorial
32:04
AssemblyAI
Рет қаралды 10 М.
Fastest Chatbot on the Planet using Groq and Deepgram API
19:04
Prompt Engineer
Рет қаралды 2 М.
How to take calls on a live stream with Twilio
10:52
TwilioDevs
Рет қаралды 4,5 М.
I Compared 7 AI Phone Caller Platforms
10:44
Brendan Jowett
Рет қаралды 11 М.
The day of the sea 😂 #shorts by Leisi Crazy
00:22
Leisi Crazy
Рет қаралды 1,3 МЛН