How symbian V3 get id3 info from a MP3 file - mp3

I am writting a music player on Symbian v3. But I can’t find How can I get id3 info from a mp3 file.Is there any API to do this ? How can I use it ?

You can get the ID3 data from an MP3 using the CMetaDataUtility API. It's not part of the public SDK, but you can download the SDK API Plug-in via this Nokia Developer page that also has example code.
This will work in S60 3rd edition, 5th edition, and Symbian^3.

Related

How to synchronize ios device contact with qt app?

I want to sync up iOS device contacts with an application based on QT platform, I am in search of an API which can do this with qt
I find workaround (QT-JNI-Java bridge) for android.
http://doc.qt.io/qt-5/qandroidjniobject.html#details
It is working fine, but i didn't find any bridge for ios.
Note: QT has suggested following link
https://wiki.qt.io/Category:Developing_with_Qt::QtMobility
But it is related to Nokia Ovi store (which doesn't exist anymore) and the last date mentioned is 2011. The link to a release is dead.
If you come across any workaround for ios-qt, request you to suggest me.
Thanks in advance.
You can use the V-Play API for a cross-platform solution to handle phone contacts on iOS & Android.
These are the APIs:
https://v-play.net/doc/nativeutils/#getContacts-method
https://v-play.net/doc/nativeutils/#storeContacts-method

How to build a BlackBerry Native Live TV App for BB 10 using BlackBerry Native SDK

How to build a native Live TV application using BlackBerry Native SDK . I have already tried rss news and Video playback examples
as mentioned in the sample.
I have xml.aspx kind of url which contains my channel images, names and url's etc
Thanks

Voice Recognition SDK/API and Windows 8 Store App (C++)

I'm currently trying to find a SDK or API that I can integrate into a Windows 8 Store App (C++). I have found several but they either require desktop APIs not accessable in Store Apps or is only for C# (Such as Bing Voice Recognition, which would be perfect if it was available for c++). I know there is minimal support for what I'm asking, but I've searched extensively so any help/suggestions on what to try or to use for very basic voice to text would be tremendously helpful.
Thank you!
If you are using a Windows 8 Store App (C++), the best option I found for using voice recognition is to use the AT&T Speech API. The C# have an SDK, but for C++ you can POST to their server using OAuth2 and get a JSON response back with the speech transcribed.

How to save song/mp3 to Media Library in Windows Phone 8?

I'm solving simple task - in Windows Phone 8 it should be possible to save mp3 file downloaded from Internet into phone Media Library, not just into Isolated storage. Hint for the API is here:
What's new in Windows Phone SDK 8.0
The only thread about this problem I have found:
MediaLibrary SaveSong method
Is anywhere simple guide how to save mp3 song into phone Media Library or at least MSDN article describing the MediaLibraryExtensions.SaveSong? Thanks!
Here you go # API to add playlists in Zune
Please leave a comment if you've got any additional questions.

Using Google Api: Speech To Text on PC Version

Google Chrome provide speech to text(STT) and So many smart phone apps provide STT. It has good recognition.
I want program in Visual Studio(MFC), But there's no methods to do STT. If I use Google Speech To Text Api, It's so easy to settle this problem.
If there's no public google api about STT, Tell me another way to this except with start.
To my knowledge, Google has not documented their speech API and do not intend it to be used by general purpose clients. I believe their intent is for the speech API to support their Android and Chrome products. That said, there is more information at Does Anyone Uses Google Speech API in Production? and Is there an API for Google's speech recognition technology?.
Since you're programming for Windows, why don't you use the built in Windows speech engine. You can use the System.Speech features of .Net or Microsoft.Speech and install the free recognizers Microsoft provides. Windows 7 includes a full speech engine. Others are downloadable for free. There is a C++ API to the same engines known as SAPI. See at http://msdn.microsoft.com/en-us/magazine/cc163663.aspx. or http://msdn.microsoft.com/en-us/library/ms723627(v=vs.85).aspx. More background on Microsoft engines for Windows
What is the difference between System.Speech.Recognition and Microsoft.Speech.Recognition?
One last link that I hope is helpful, here is a simple example of speech recogntion in .NET - SAPI and Windows 7 Problem
You may find this: https://gist.github.com/alotaiba/1730160 useful. Basically you need to send FLAC-encoded audio file to google servers in POST request. Be aware that it accept only audio files of 15 seconds of less (for simple voice command app it would be enough).
I'm looking into thing like this and MS Speech API isn't for me, even if is good, because it doesn't support most languages Google's API does (example being Polish, same for MS text-to-speech).