Questions tagged [albumart]

A picture that represents the cover of an album

A picture that represents the cover of an album

131 questions
2
votes
3 answers

Check if album art exists?

I'm building a music player app. I'm trying to populate a recyclerView with album arts of songs. I successfully did that with the code that is given below. But some of the songs do not have embedded album art not any album art in the folder. So, I'm…
2
votes
0 answers

When i rotate to landscape and then rotate back to portrait and choose next song it doesn't update the songinfo

Ok so I have an activity where I display a song that's playing, and I created another layout for landscape mode, I have an imageview that displays the album art from that song and a title in the actionbar, all display information of the playing…
2
votes
0 answers

Getting 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…
young wolf
  • 139
  • 1
  • 2
  • 11
2
votes
1 answer

What kind of object is needed as first argument in mutagen.mp4.MP4Cover?

I would like to use the function mutagen.mp4.MP4Cover(data, imageformat) (direct link to documentation), however the documentation only specifies imageformat, but not what data is. I have a .png file that I would like to add to an .mp3 as…
imrek
  • 2,930
  • 3
  • 20
  • 36
2
votes
0 answers

Album art missing from MediaStore

I have a simple music player app that I created. So far it's been obtaining song metadata from android.provider.MediaStore. I obtain album art from the ALBUM_ART column of MediaStore.Albums. It returns a path to the album cover and I create a…
2
votes
0 answers

Media Player with album art (picasso library) on Android

I am new to programming for android. I have main_activity and list_adapter. I can't send uri album art to Picasso from the adapter. And I dont`t understand - how get album art? Code main_activity if (cursor.moveToFirst()) { do { …
2
votes
3 answers

How to display album art in my music player(Android)?

I'm making a music app. Everything is going fine so far. I want to display album art along with the playing song. But i'm unable to figure out the method to do that.
2
votes
0 answers

Android set Album Thumbnail

I have retrieved some cover art for an album (I have the id and a Bitmap) and now I want to set it into the MediaStore. I tried a bunch of stuff: private static final Uri ARTWORK_URI = Uri.parse("content://media/external/audio/albumart"); public…
timothyjc
  • 2,188
  • 3
  • 29
  • 54
2
votes
2 answers

Update Album Art Windows 8.1 Store App

I'm trying to update the album art for a background playing track in Windows 8.1 Store app (C#/Xaml) but although I get no exceptions, the image doesn't update in the little transport popup... this is the code I'm executing to update it: var…
SelAromDotNet
  • 4,715
  • 5
  • 37
  • 59
2
votes
1 answer

find album art and cover art programatically in Android

I have song name, artist name and album name. Is there any link from where I can get cover or album art by sending these parameters? For my application I need cover art. I searched a lot to find out something but get nothing. If there is any third…
jarnail
  • 243
  • 4
  • 15
2
votes
2 answers

How can I set album artwork in a Win8 C# application?

I'd like to be able to take an existing photo and set it as the album artwork. I can use GetThumbnailAsync to give me a thumbnail and GetOutputStream to get the thumbnails output stream. Unfortunately, it's not writeable. How might I set the album…
Start-Automating
  • 8,067
  • 2
  • 28
  • 47
2
votes
1 answer

Get album art to update from URL every time song changes or every few seconds using Stormy Productions RadioKit

To teach myself how to code in Objective-C, I'm creating an internet radio app for my Church. Here is the problem... I have album art that is uploading to my web server every time the song changes on the radio station. The album art always has the…
2
votes
1 answer

Free album art API for android?

I'm creating a music player for Android. In that I want to give the feature of downloading album arts for songs. I'm looking for an API that provides images of sizes appropriate for android devices, so that they do not take much space. Till now I've…
reiley
  • 3,759
  • 12
  • 58
  • 114
2
votes
1 answer

Using Shoutcast, Display Now Playing Album Art

I have a small 70x70 box in an HTML player I built where I wish to place in the album artwork to coincide with my now playing information from my shoutcast server. Is there a way, using the artist-song information the shoutcast server provides, that…
FatimaBurke
  • 21
  • 1
  • 1
  • 3
1
vote
1 answer

Mutagen: How can I "correctly" embed album art into mp3 file so that I can see the pitcure display as file icon

I am trying to convert flac files to mp3 format, using pydub for conversion and mutagen for tags and album art copy. Convert a flac file to a 320Kbps mp3: from pydub import AudioSegment path_flac = 'mc_test/from/01 Lapislazuli.flac' path_mp3 =…
Chunpin
  • 57
  • 8
1 2
3
8 9