Save mp3 file into iphone music library [closed] - objective-c

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I would like to interact with the mp3 player the iPhone: Is possible to save a .mp3 file into Iphone music library programmatically?

If you aren't planning on distributing this through Cydia then the answer is no this isn't possible. However, if you are going the jail break route check out libiPodImport by H2CO3.

Related

How to detect Find My iPhone program xcode? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How to use xcode 7.1 to make an app that will detect a status of the app "Find My iPhone" for iOS8 and iOS9. please help me
There is no (public) API to retrieve this information.

Wifi sync with core data library style [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I'm new at wifi sync, where do I start on how to wifi sync a core data library between iPhone and mac apps ? Require a merge sync, no overwrite.

Don't stop the iPod music [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Is there a way to not stop the iPod music when I start my app in the iPhone?
Because when my app is launched, the music stops.
Thanks!
It depends what code and sound Library you are using in your application
adding MediaPlayer.framework will help you solve the issue quickly
Take a look at this post http://oleb.net/blog/2009/07/the-music-player-framework-in-the-iphone-sdk/

How can I change metadata in mp3 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I would like to add metadata to mp3 files in C/Objective-C (OS X).
I found several libraries (e.g. id3lib), but I have no clue on how to compile them.
Are there any tutorials on how you can do that? Is there any other framework for C/Objective-C to write ID3 tags to an MP3 file (song name, artist and coverart)?
Take a look at the id3lib Library Documentation. It provides a quick tutorial.

iPhone programming - How to create a movie file from muti images and save it in iPod library? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
It is possible to do that?
please give me a hint.
I would investigate ffmpeg, specifically libavcodec - this will allow you to convert static images in to a movie file (assuming you can get it to compile for iOS).
As far as adding to the iPod library is concerned, you aint going to be able to do that - you can read from the library from within an iOS app, but not write to it.