Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Now I'm going to create audio player app on my Iphone
So, I was looking for some information about building music app with Swift.
There were many information but, I could not find one thing it is how can I show song lyrics on my phone.
Although already there are many music app that supported to show lyrics but I need customized app only for me. So I have to build music app only for me.
I just want to play and pause song and show playlist and show lyrics.
Maybe are there reference? If there are reference. Please inform me.
#D Why, It's hard to tell what aspect of development you might be asking about specifically. I've been there before myself--wanting to hash out some high level ideas-- so I'd like to help out.
I'd say start with finding a song lyrics database; something like mldb.org. The programmableweb.com contains APIs that may already exist for what you have in mind. Next, check out the dev communities (ObjC, RubyMotion, etc.) for audiobooks, etc. Here's an example out of Code Project that's pretty old already, but it will give you an idea.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I have a problem regarding scammers in my app:
In the private chat between users, users may feel comfortable sending nudes or other sensitive information
The other user is a scammer and might screenshot the information and will re-sell it else where or use it to blackmail the user in some capacity.
I can detect screen recordings and if there is an active capturing in progress can hide content
However with screenshots I can only detect the screenshot after the fact but not beforehand to black out content.
Are there any known code patterns or SDKs that assist with this?
iOS doesn't allow it, There are no observers for screenshots before being taken. And you can't do anything about it, Because it's just not possible to stop someone from taking screenshots, both physically and digitally. You might want to look into other solutions to protect user data.
The only SDK I know of is ScreenShieldKit
There's this answer that provides an alternative, but I've not had a chance to test it out.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I write programs using Apple's Siri Shortcuts, and I am looking for an API or any way that can be used to identify a song playing in the background.
Is there any software that can do this? If not, is there a way to write a Shortcut that IDs a song?
Thank you!
Check out Gracenote:
"
Gracenote (which is owned by Sony) has opened up it's SDKs and APIs and has a proper dev portal.
You can check out the app "Track ID" on Play Store which I am sure will give you better results than Shazam or Soundhound. Track ID uses the Gracenote services. Having access to the huge Sony Music collection, Gracenote does a much better job of ACR than Shazam (especially, me being Indian, I find Gracenote recognising a lot of Hindi, Bengali, Tamil songs, which Shazam or Soundhound only are able to recognise English ones)."
Gracenote.com
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I'm curious to know, how to download the subtitles for the videos of Khan Academy. As far as I know, universalsubtitles[dot]org has the subtitles. But I'm unable to get any results from my API calls. Here are a few sample calls that I tried which do not give any result but rather says that 'We're sorry - the page you are trying to access does not exist':
http://www.universalsubtitles.org/api/1.0/subtitles/?video_url=http://www.youtube.com/watch?v=qYZF6oIZtfc&feature=youtube_gdata_player
http://www.universalsubtitles.org/api/1.0/subtitles/?video_url=http://www.youtube.com/watch?v=qYZF6oIZtfc&feature=youtube_gdata_player&language=en
I tried quite a few other formats of the above API calls too, but none of them seem to work. So could someone please help me out on how to access subtitles of Khan Academy videos. I would also appreciate your answers, even if they have other ways of accessing Khan Academy videos' subtitles other than accessing it from universalsubtitles[.]org
You can use the undocumented API call "http://www.khanacademy.org/api/internal/videos/%s/transcript" where %s is the YouTube ID of the video. You will get the transcript lines for the video with start and end times for each line. I don't know if there is a better way.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I know this is not a technical question but I don't know where to ask elsewhere.
I use the very cool toolkit called trigger.io to develop apps for both android and ios. Now I would like to use something like a database to display data in my app.
Firstly I found a realtime backend called firebase: http://www.firebase.com/
Nice but it takes a while until one gets access to it since it is still in beta.
Then I found a cloud service called Kinvey: http://www.kinvey.com/ Also interesting, but it is free as long as only 200 users download the app.
So do you know any alternatives to store data and use it for my app?
That would be very helpful,
thanks enne
Sure. Parse is an easy option. Basic plan to get start is $0 a month.
Also, there is nothing stopping you from bundling (or download and saving and caching) a json file for use in your trigger.io app.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm working on an iOS application where I'd like to be able to display stores with their respective logos. I've spent a while looking for an API that does this and I can't find anything besides XigniteLogos. Unfortunately this is outside of my budget - is there a free solution available?
This is a very interesting question.
My first thought was that you could try doing a Google Image search. I know Google has a service called Goggles which can recognize logos, so searching the other way must be possible using Google.
I did a sample search on Google Images for "General Mills logo" (I guess I am hungry for breakfast right now) and the first result that was returned was from SeekLogo.com
I am not sure what SeekLogo is, or if they have an API, but they may be exactly what you're looking for. If not, you could try a Google images search and use the first result... (Google does have an image search AIP but... it's been deprecated? The announcement of that says that the documentation / community may have solutions which are still supported...)