In Google talk, there was some bot service available which will help to translate from one language to another. You can implement similar service using Skype with the help of Skype4COM.dll. In this implementation for language translation, the Bing soap API is used.
Skype4COM is a Windows based COM DLL which acts as a shim between the text based Skype Desktop API and 3rd party programs / applications. The Skype4COM.dll and developer documentation is available to download from here.
You need download the Skype4COM.dll and you need to register it in the system to use it. You can register any COM DLL using command regsvr32
from command prompt. You need administrator privilege to do this. If you didn’t register it properly, you may get some COMException
while running the applications.
You can add reference of Skype4COM.dll from Add Reference > COM tab.
And here is the implementation:
private Skype _skype;
public frmSkypeBot()
{
InitializeComponent();
_skype = new Skype();
_skype.Attach(8, false);
_skype.MessageStatus += SkypeMessageStatus;
}
private void SkypeMessageStatus(ChatMessage pMessage,
TChatMessageStatus Status)
{
try
{
if (Status == TChatMessageStatus.cmsRead)
{
_skype.SendMessage(pMessage.Sender.Handle,
Translate(pMessage.Body));
}
}
catch (Exception ex)
{
Log(ex);
}
}
While launching the application, you will get a prompt like this:
You need to click on the allow access button, otherwise the application won’t work.
Skype bot running on my system.
The Translate
method translates from English to Hindi using Bing API. Bing API doesn’t support translation to Malayalam from English. So Hindi language is used.
Happy programming!
Related Content
- How to use TaskDialog API in C#
- How to turn off your monitor when you lock your machine
- Raven DB – Introduction
- Drive combo box in C#
- How to get the current battery level in C#