Questions tagged [albumart]

A picture that represents the cover of an album

A picture that represents the cover of an album

131 questions
48
votes
5 answers

How to add album art with ffmpeg?

I've been stuck in adding album art to mp3 files. I've already researched and Googled this issue but haven't found a solution yet. The ffmpeg documentation recommends this script to add image (album art) to mp3: ffmpeg -i input.mp3 -i cover.png -c…
Adi Ricky k
  • 481
  • 1
  • 4
  • 3
32
votes
5 answers

How do you embed album art into an MP3 using Python?

I've been using mutagen for reading and writing MP3 tags, but I want to be able to embed album art directly into the file.
Connor
25
votes
1 answer

logcat error : E/ExtMediaPlayer-JNI: env->IsInstanceOf fails

I am trying to get Album art for every song in my music player app. But I get nothing except a black screen, no album covers.It seems there are no errors as such in the code except log cat errors which I have never heard of. Here is the Java file…
user8196092
12
votes
1 answer

mutagen: how to detect and embed album art in mp3, flac and mp4

I'd like to be able to detect whether an audio file has embedded album art and, if not, add album art to that file. I'm using mutagen 1) Detecting album art. Is there a simpler method than this pseudo code: from mutagen import File audio =…
foosion
  • 7,619
  • 25
  • 65
  • 102
12
votes
7 answers

How can I display Album Art using MediaStore.Audio.Albums.ALBUM_ART?

I'm trying to build a MP3 player and I want the ImageView to display the album art of respective songs. I've tried the following, but it doesn't work. albumcover = (ImageView) findViewById(R.id.cover); String coverPath =…
max59
  • 606
  • 1
  • 7
  • 16
11
votes
3 answers

ALBUM_ART column is deprecated from API 29 and so on, how to obtain path?

We are currently obtaining the path of album art using: MediaStore.Audio.AlbumColumns.ALBUM_ART, and is successfully obtaining the path, except on pixel 3a (Android 10). After some research, the ALBUM_ART became deprecated API 29 and over as shown:…
Serge
  • 143
  • 1
  • 7
9
votes
4 answers

listing album in android

I am developing a simple audio player in android. I want to list the album's in the device. I tried this code String where = new String(); where = MediaStore.Audio.Media.IS_MUSIC + "=1"; private Cursor managedCursor; managedCursor = managedQuery( …
John
  • 8,846
  • 8
  • 50
  • 85
9
votes
2 answers

C# mp3 ID tags with taglib - album art

Im making my own mp3 tagger, and everything is fine so far. Although im stuck reading the album art tag. I would like to know how to display the cover in a C#.NET picture box, but everything iv seen about that particular tag is confusing me. I know…
Purplebob
  • 143
  • 1
  • 1
  • 4
8
votes
2 answers

iOS 8 album art cover

Since iOS 8, all the data arrays for album art from iPad & iPhone devices returns a null array. I can get album art or cover art when pulling from a local file(NSBundle), but any songs on purchased from iTunes or on the device itself returns empty.…
Tae Re
  • 163
  • 1
  • 8
7
votes
2 answers

how to fetch the details of the audio file in iPhone

I made the custom player by using AVAudioPlayer. Now, I want to fetch the details of the audio file such as artist name,album name,etc which is added in the resource folder. MPMusicPlayer provides the API for fetching the details but its using iPod…
user999231
  • 143
  • 1
  • 4
7
votes
2 answers

How to add listener correctly to glide

I am using glide for displaying album art but somehow I am not able to display it. I want to add listener to glide for locating errors but its not working. It shows error saying : listener(com.bumptech.glide.request.RequestListener) in…
user8232051
7
votes
2 answers

Get embedded mp3 file embedded art failed

I'm trying to get the album art of a MP3 file. I thought the best and cleanest way to do this is use the MediaMetadataRetriever class. But for some reason calling the getEmbeddedPicture method doesn't work. The image isn't showing, LogCat shows an…
Raymond P
  • 752
  • 2
  • 15
  • 27
6
votes
1 answer

Download album art from internet in an android application

I know the artist and trackname for a song, but I am unsure of what service or how to download album art for the track. I believe iTunes and Amazon both offer services but I am unsure of how to integrate these services, any links or suggestions are…
stealthcopter
  • 13,964
  • 13
  • 65
  • 83
6
votes
2 answers

Get Album Art With Album Name Android

I want to display album art with album name in listview. But i am not getting the way to display album art. I have tried from cover art on android. Here is my Code : Cursor cursor = managedQuery(MediaStore.Audio.Albums.EXTERNAL_CONTENT_URI, null,…
5
votes
1 answer

Embedding album cover in MP4 file using Mutagen

I'd like to be able to add album cover into the file using mutagen, however when I add it as a file it returns with: File "D:\Download\pandora\renamingMETAEFF.pyw", line 71, in meta['covr'] = image File…
1
2 3
8 9