Please note that I have already been through similar questions and their answers here and on other websites. I also have a solution that works on some devices (my G2X running CyanogenMod 7.1, my wife's HD2 running a custom ROM and the emulator…
In the Musixmatch API documentation it is said
Get an album from our database: name, release_date, release_type,
cover art.
In the JSON response example there is also "album_coverart_100x100",
but when I'm making an API call, in the response there…
I'm trying to get the album artwork from a MP3 file.
In this case I use AVAudioPlayer to play the file.
Here's the code that I thought would get the album artwork:
MPMusicPlayerController *controller = [MPMusicPlayerController…
So I've been trying this for some time now. To get the album art for an mp3 file and displaying it on its respective ImageView and I am using the uri("content://media/external/audio/albumart")
This is my method for getting the album art
public…
I don't know whether I can ask such question here or not. My question is as below.
I am making music player on my own and I want to download album images for those songs which don't have album image. Just like what N7Music Player is doing. I did…
In iOS 12 and before I can do below to customized album's first page's title.
func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
viewController.title =…
This is a code / argument I use to merge 1 audio and 1 image into 1 video. For some reason it adds 30s silence to the end of output video no matter the source.
I run this on Win10 x64, with latest ffmpeg installed.
I have checked the code but cannot…
do you know how to create a folder in which photos will be saved and os and other apps should see that folder as photo album? I need to save photos in a certain album and if album does not exists, I need to create it.
Thanks
I am making simple app like any music app and I want album art on lock screen of phone like in Play Music application of google when song is playing and your screen is locked and you are going to open it you will find such lock screen
How can I do…
I have a list of albums which I got using this:
private List getAlbums() {
Cursor cur = managedQuery(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, null, null, null, null);
List albums = new ArrayList();
if…
I am trying to get the album art from the audio file Uri, here is my code:
// uri is the audio file uri
public static Bitmap getSongCoverArt(Context context, Uri uri){
Bitmap songCoverArt = null;
String[] projections =…
Hello so im working on a Music Player for android and i wanted help on making the background color the same as the album art of the playing song kind of like Sony Walkman.So can somebody please show how can it be done or at least get me on track on…
I want to know the code (Function) how to return an image of the albumart in a musicplayer. Can you explain what parameters I should pass? I can pass the file path to the function.
imported required libraries
public class SongsManager {
//…
I've got the following question to ask:
How do you compile taglib with an iOS application?
I'm a bit confused as I added the folder into my project, tried to compile it, but instead it failed with 1640 errors.
How do I make it successfully compile -…
I'm looking to batch convert all audio (mp3) in folder to video (mp4) with album artwork. This for uploading audios to youtube. I have pretty much a working code but I want to automate the whole thing.
Here's the code from .bat file I'm…