{"id":16683494,"url":"https://github.com/marcominerva/multilanguagechat","last_synced_at":"2026-04-13T02:37:35.864Z","repository":{"id":99650777,"uuid":"160037334","full_name":"marcominerva/MultilanguageChat","owner":"marcominerva","description":"This project shows how to use Azure SignalR, Microsoft Translator and Speech Service to build a real-time voice translation system","archived":false,"fork":false,"pushed_at":"2020-01-18T19:39:11.000Z","size":1376,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-12-31T19:27:27.624Z","etag":null,"topics":["azure","cognitive-services","signalr","speech-api","speech-recognition","translator-text-api"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marcominerva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-02T10:47:45.000Z","updated_at":"2022-11-16T20:05:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"ecc12e9d-dbe8-44aa-90c2-fc764054964f","html_url":"https://github.com/marcominerva/MultilanguageChat","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marcominerva/MultilanguageChat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcominerva%2FMultilanguageChat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcominerva%2FMultilanguageChat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcominerva%2FMultilanguageChat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcominerva%2FMultilanguageChat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcominerva","download_url":"https://codeload.github.com/marcominerva/MultilanguageChat/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcominerva%2FMultilanguageChat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31737849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T22:19:12.206Z","status":"online","status_checked_at":"2026-04-13T02:00:06.623Z","response_time":93,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure","cognitive-services","signalr","speech-api","speech-recognition","translator-text-api"],"created_at":"2024-10-12T14:24:57.503Z","updated_at":"2026-04-13T02:37:35.829Z","avatar_url":"https://github.com/marcominerva.png","language":"C#","readme":"# Multilanguage Chat\n\nThis project shows how to use Azure SignalR, Microsoft Translator and Speech Services to build a real-time voice translation system for ASP.NET Core, Windows 10 and Xamarin.\n\n**Getting started**\n\nTo use these applications, you must obtain the required Keys and Connection Strings from [Azure Portal](https://portal.azure.com) and insert the correct values in the configuration files, as describe later.\n\n**Create the required services on the Azure Portal**\n\n- Create a new [Azure SignalR Service](https://portal.azure.com/#create/Microsoft.SignalRGalleryPackage). For best perfomance, choose a Location near you\n\n- Create a new [Translator Text Service](https://portal.azure.com/#create/Microsoft.CognitiveServicesTextTranslation)\n\n- Create a new [Speech Service](https://portal.azure.com/#create/Microsoft.CognitiveServicesSpeechServices). For best perfomance, choose a Location near you\n\n**Configure the Web App**\n\nGo to the [appsettings.json](https://github.com/marcominerva/MultilanguageChat/blob/master/Web/MultilanguageChat/appsettings.json) file and write the required information:\n\n- In the **Azure:SignalR:ConnectionString** property, specify the Connection String you can find in the **Keys** blade of the Azure SignalR Service\n\n- In the **AppSettings:TranslatorSubscriptionKey** property, speficy the key of the Translator Text Service (you can use either *Key 1* or *Key 2* available in the **Keys** blade of the Service)\n\n- Publish the Web App on an Azure App Service.\n\n**Configure the UWP app**\n\nGo to the [Constants.cs](https://github.com/marcominerva/MultilanguageChat/blob/master/Windows/MultilanguageChat/Common/Constants.cs) file and write the required information:\n\n- In the **ServerUrl** field, specify the Url of the Web App on Azure with the */chat* suffix, for example:\n    \u003e https://myappsite.azurewebsites.net/chat\n\n- In the **TranslatorSubscriptionKey** field, speficy the key of the Translator Text Service (you can use either *Key 1* or *Key 2* available in the **Keys** blade of the Service)\n\n- In the **SpeechRegion** field, specify the value corresponding to the Azure Region in which you have created the Speech Service, using the **Speeck SDK Parameters** that you can find at [Speech Service supported regions](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/regions#speech-recognition-and-translation)\n\n- In the **SpeechSubscriptionKey** field, speficy the key of the Speech Service (you can use either *Key 1* or *Key 2* available in the **Keys** blade of the Service)\n\n**Configure the Xamarin app**\n\nGo to the [Constants.cs](https://github.com/marcominerva/MultilanguageChat/blob/master/App/MultilanguageChat/Common/Constants.cs) file and write the required information (the same as above).\n\n**Contribute**\n\nThe project is continuously evolving. We welcome contributions. Feel free to file issues and pull requests on the repo and we'll address them as we can.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcominerva%2Fmultilanguagechat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcominerva%2Fmultilanguagechat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcominerva%2Fmultilanguagechat/lists"}