Transcribe live phone calls using Twilio Media Streams

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 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: ruclips.net/video/MhmE_h7GJoE/видео.html

  • @akhilsachdev5582
    @akhilsachdev5582 Год назад +7

    Is there a version of this in python?

  • @matthewnugent9430
    @matthewnugent9430 3 года назад +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  3 года назад +2

      There are definitely ways to integrate with Slack as a Slack bot. That’s an interesting use case!

  • @MrJasonFrank
    @MrJasonFrank 3 года назад +4

    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 😀

  • @serhatkoroglu6708
    @serhatkoroglu6708 3 года назад +2

    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 года назад +1

      Thanks for watching! Let us know if there’s anything else we can help you with.

  • @grupomexcomer
    @grupomexcomer 3 года назад +1

    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

  • @richeek10
    @richeek10 10 месяцев назад

    I see that console output has same utterance multiple time. Won't it create duplicity for downstream tools wanted to use this transcribed data?

  • @majetysaiabhinesh7239
    @majetysaiabhinesh7239 Год назад

    Nice video, rather than listening call recording audio now we can see the whole conversation.

  • @matthewnugent9430
    @matthewnugent9430 3 года назад +1

    Can this be used in a SalesLoft environment? Gong? Asking as a rep that makes calls via SL. Great vid thanks

    • @twilio
      @twilio  3 года назад

      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!

  • @russellkirkwood
    @russellkirkwood 3 года назад +2

    Does twilio offer transcribe services? If yes, I am wondering why you are using Google’s

    • @twilio
      @twilio  3 года назад +2

      We have transcription for call recordings but this example is showing how to transcribe a live call as the audio is coming in.

  • @Iamdamso
    @Iamdamso 2 года назад

    Can we have the same Twilio tutorial with Microsoft azure STT using NodeJs?

  • @taqikhan5418
    @taqikhan5418 Год назад

    Can Two people actually communicate on phone through twilio or some recorded message is send?

  • @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?

  • @toshvelaga
    @toshvelaga 3 года назад +1

    Great content! Thank you so much!

  • @zainjahangir296
    @zainjahangir296 3 года назад +1

    hey mate i ve been assigned a Project text to speech over live call can any one help me

  • @SathishM-n8i
    @SathishM-n8i 2 месяца назад

    can i able to inject a audio file on this call , is possible ?

  • @arttursh8324
    @arttursh8324 2 года назад

    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 RUclips), or Twilio, or anyone on this particular thread make such a thing happen ...or point me in the right direction?

  • @deeksha5626
    @deeksha5626 3 года назад

    Please do a video on flex reporting

  • @Cliphuesx
    @Cliphuesx 2 года назад

    How to do in android?

  • @ignamendi21
    @ignamendi21 2 года назад

    I need a python tutorial please!!!!

  • @umaradamujere8184
    @umaradamujere8184 3 года назад

    Twilio dont work in Nigeria😒

  • @jaysonp9426
    @jaysonp9426 9 месяцев назад

    Yeah now do this on a cloud server...

  • @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')