EDIT: It seems I misunderstood the requirements. I thought you needed transcription in general, but I re-read your post and it seems like you’re wanting something in the UCP. Can’t help there, but will keep my post below up.
@billsimon I currently do this, and a hack job it is… But it works.
First, I am on PBXact Cloud. This is important because one of the “features” as Sangoma calls it (sarcasm) is no root/ssh access to your box. So, I had to find a way to work around this, and still get the data I needed.
First I set each ext to send voicemail emails to a catchall email address. [email protected]
I then have a python script that extracts the attachment, ext, and vm data from the body of the email, and stores it in my own MySQL DB.
Another python script checks for new VMs in the DB, and if detected, runs a transcribe python script. I am using an API call to assemblyai.com to do the VM transcription, and then store the transcription text back in into MySQL.
Once transcribed, we call another script to fetch the now complete MySQL data, send an email to the user that received the voicemail, and do some file cleanup (moving the WAV file to an archive location).
This of course is a simplified expiation, and if you want to know more, feel free to PM me and we can discuss code, etc.
If you do have SSH/Root access to your PBX, you could probably just create a script to transcribe (using assemblyai or another transcription service of your choice) and store text into the freepbx DB, and then have that script call the function to email the transcription to the user.
To anyone else reading this in horror… I am well aware this whole setup is chaos, but it gets the job done given the restrictions I have on the PBX. 