It is necessary to develop an extension for chrome. When google meet is running, it is required to obtain the transcription of each participant. The transcription should be divided by the speakers who are saying sentences. The transcription needs to be sent via API. There should be an option in the extension to change the transcription language.
Example of data that needs to be sent via API.
{
"google_meeting_id": "59b7e46f-008e-4cd1-8db1-dd89cd9ae060",
"meeting_title": "Daily Meeting",
"speaker": "Bob",
"start_time": 1736766765,
"end_time": 1736766770,
"text": "What did you do yesterday on the project?"
}
{
"google_meeting_id": "59b7e46f-008e-4cd1-8db1-dd89cd9ae060",
"meeting_title": "Daily Meeting",
"speaker": "Alex",
"start_time": 1736766950,
"end_time": 1736768220,
"text": "Yesterday I completed task number 1232"
}