Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
page_type description products languages extensions urlFragment
sample
This is a sample application which demonstrates how to use CART link to send live captions in the meeting tab.
office-teams
office
office-365
csharp
contentType createdDate
samples
06/24/2022 12:00:00 AM
officedev-microsoft-teams-samples-meetings-live-caption-csharp

Meeting side panel application uses CART link to send caption in live meeting.

This is a sample meeting side panel application which demonstrates how to enable live caption in the meeting and using the CART link how to send caption in live meeting. Meeting side panel application uses CART link to send caption in live meeting.

Once the meeting is scheduled, follow this doc to enable Provide Cart Catptions. Copy the CART link it will used while configuring tab for meeting.

Included Features

  • Meeting Chat
  • Meeting Details
  • Meeting SidePanel
  • Cart API

Interaction with app

bot-conversations

Prerequisites

  • Microsoft Teams is installed and you have an account (not a guest account)
  • .NET 6.0 SDK.
        # determine dotnet version
        dotnet --version
  • dev tunnel or ngrok latest version or equivalent tunneling solution
  • M365 developer account or access to a Teams account with the appropriate permissions to install an app.

Setup.

Note these instructions are for running the sample on your local machine, the tunnelling solution is required because the Teams service needs to call into the bot.

  1. Run ngrok - point to port 3978

    ngrok http 3978 --host-header="localhost:3978"

    Alternatively, you can also use the dev tunnels. Please follow Create and host a dev tunnel and host the tunnel with anonymous user access command as shown below:

    devtunnel host -p 3978 --allow-anonymous
  2. Clone the repository

    git clone https://github.com/OfficeDev/Microsoft-Teams-Samples.git
  3. Open the code in Visual Studio

    • File -> Open -> Project/Solution
    • Navigate to folder where repository is cloned then samples/meetings-live-caption/csharp/MeetingLiveCaption.sln
  4. Run the bot from Visual Studio:

    • Press F5 to run the project
  5. Modify the manifest.json in the /AppManifest folder and replace the following details:

    • <<AppId>> with any GUID id value.
    • <<App-Domain>> with base Url domain. E.g. if you are using ngrok it would be https://1234.ngrok-free.app then your domain-name will be 1234.ngrok-free.app and if you are using dev tunnels then your domain will be like: 12345.devtunnels.ms.
  6. Zip the contents of AppManifest folder into a manifest.zip, and use the manifest.zip to deploy in app store or add to Teams using step 6.

  7. Upload the manifest.zip to Teams (in the Apps view click "Upload a custom app")

    • Go to Microsoft Teams and then go to side panel, select Apps
    • Choose Manage your apps -> Upload an app -> Upload a custom App
    • Go to your project directory, the ./AppManifest folder, select the zip folder, and choose Open.
    • Select Add in the pop-up dialog box. Your app is uploaded to Teams.

NOTE: If you are not able to send caption, try configuring tab again.

Running the sample

  1. Schedule the meeting and add Meeting Caption Tab in that particular scheduled meeting. Add Tab

  2. Once meeting started, turn on live caption. Start live caption

  3. Once the live caption has started, you can use the app to send live caption. Send live caption

  4. After clicking on Submit button, you will see the caption in the meeting. Caption in meeting

Further reading