Questions tagged [albumart]

A picture that represents the cover of an album

A picture that represents the cover of an album

131 questions
4
votes
4 answers

Most robust way to fetch album art in Android

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…
Ani
  • 10,826
  • 3
  • 27
  • 46
4
votes
1 answer

Can I access album's cover art with Musixmatch API?

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…
4
votes
1 answer

Get album artwork from MP3 file/ID3 tag

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…
4
votes
3 answers

Querying for album art always returns No entry for content://media/external/audio/albumart/31726

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…
Dev24601
  • 63
  • 1
  • 7
4
votes
4 answers

how to get album image using musicbrainz

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…
baldguy
  • 2,090
  • 1
  • 16
  • 25
3
votes
2 answers

Changing NavigationBar Title of UIImagePickerController in iOS13

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 =…
3
votes
2 answers

My ffmpeg output always add extra 30s of silence at the end

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…
Thomas K
  • 33
  • 1
  • 6
3
votes
1 answer

android create photo album

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
Buda Gavril
  • 21,409
  • 40
  • 127
  • 196
3
votes
2 answers

How to set full screen album art in lock screen?

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…
Jignesh Ansodariya
  • 12,583
  • 24
  • 81
  • 113
3
votes
1 answer

How do I get Album Thumbnails in Android?

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…
timothyjc
  • 2,188
  • 3
  • 29
  • 54
3
votes
1 answer

Getting album art from the audio file Uri

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 =…
Neno0o
  • 133
  • 1
  • 10
3
votes
1 answer

Changing the background of a view to match the color of the album art

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…
ray chamoun
  • 97
  • 2
  • 8
3
votes
2 answers

Getting Album Art for music player Android

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 { //…
Teja Konjeti
  • 343
  • 2
  • 15
2
votes
4 answers

Get album artwork from ID3 tag/Convert function from Java to Objective-C

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 -…
Jack Greenhill
  • 10,240
  • 12
  • 38
  • 70
2
votes
2 answers

FFmpeg: Batch convert all audio (mp3) in folder to video (mp4) with album artwork

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…
coden00b
  • 55
  • 1
  • 7
1
2
3
8 9