Questions tagged [albumart]

A picture that represents the cover of an album

A picture that represents the cover of an album

131 questions
1
vote
1 answer

Get cover art from Google Play music

I know how to get album art when google play music is playing a local file. Is there a way to get the cover when the music played is not from a device file ?
SWAppDev
  • 248
  • 1
  • 3
  • 13
1
vote
0 answers

How to load albumart of the song downloaded by other music apps

I am working on a Music Player.Using MediaStore.Audio.Media.EXTERNAL_CONTENT_URI I can retrieve the information of music downloaded by other Music apps(if sync to the local).But I still can't get **the album artwork ** by the same way I get the…
1
vote
0 answers

c# How can I add album art/ image tag to a custom filetype?

I am trying to make my own file type which features a thumbnail. The thumbnail shell handler (CppShellExtThumbnailHandler) seemed to be exactly what I wanted. https://code.msdn.microsoft.com/CppShellExtThumbnailHandler-32399b35 Basically my…
Ibizanhound
  • 91
  • 2
  • 12
1
vote
2 answers

How to show album art , song name ,duration, and the artist name in a ListView

hello i wanna make an android music app for that i want my listView which shows all the songs to display album art of that song , artist name , duration and song name i have succeeded showing all the songs in the listview but unable to display album…
Ayush Katoch
  • 11
  • 1
  • 5
1
vote
1 answer

Populating a list of songs with Album Art - Not able to get Album art

I'm currently building a music browser/player of the music on a the device. I sucessufully populated the a listview with the names of the songs and their artist but I'm not able to show the albumart associated with the song. I'm not quite sure what…
JulienT
  • 31
  • 1
  • 5
1
vote
0 answers

How to detect the album arts which are not embedded into audio files in WinRT C#?

There are libraries like taglib# to detect embedded album arts in audio files. But how to detect the art if it's not embedded? It's there in the same folder where the audio file is and named like…
Heshan
  • 913
  • 8
  • 30
1
vote
1 answer

creat list view that sorts songs alphabetically android

Hello so im really new to android and im developing a Music Player and so far i managed to populate a list view and all put i need to sort the list alphabetically and i want to show the album art of the songs in the ImageView Please Help . Here is…
1
vote
2 answers

FFmpeg: Convert FLAC to mp3 and add album art in one step

I convert FLAC to MP3 using ffmpeg -i x.flac -f mp3 -vn -b:a 64K x.mp3 and I add album art using ffmpeg -i x.mp3 -i x.jpg -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" xx.mp3 Is…
Christian Riedl
  • 103
  • 3
  • 9
1
vote
0 answers

ViewHolder is not working correctly

I have 3 pages ARTIST, ALBUM, LIST. All of these 3 pages using ListView. Before using ViewHolder, ListView of these 3 pages were not scrolling smoothly. There was too much lagging. After using the ViewHolder all the problems gone in blink. But my…
Tushar Monirul
  • 4,944
  • 9
  • 39
  • 49
1
vote
2 answers

add album art to WMA file

I'm using WMP engine to convert audio to WMA format, but I didn't see any API that I can put a alubm art to WMA file. is there a way to do that? Thanks in advance.
Yigang Wu
  • 3,596
  • 5
  • 40
  • 54
1
vote
0 answers

Is JSONKit compatible with ARC?

I am currently working on a radio app for iOS. In an attempt to save time, my buddy sent me his working code to fetch iTunes album artwork, along with appropriate header files. My problem is that upon building the app, I get errors stating that JSON…
vzm
  • 2,440
  • 6
  • 28
  • 47
1
vote
1 answer

What is the correct way to store album artwork?

I've been working on an album art fetcher and have been struggling to find a good answer to this question. Currently, I've been embedding the art into the ID3 tags, because it seems to be the most commonly supported. However, using "cover.jpeg" or…
Wilson
  • 8,570
  • 20
  • 66
  • 101
1
vote
0 answers

ImageLoader always loadBitmap instead of to have it from cached memory

I am using ImageLoader to fetch AlbumArt Image of the Songs available in Android Device. I know that i can also able to get the AlbumArt from some of the method of the OpenSource Music app but instead of I like to load it with ImageLoader. Here is…
Shreyash Mahajan
  • 23,386
  • 35
  • 116
  • 188
1
vote
1 answer

How to optimize album art image size from media library in Windows Phone 7?

I am trying to develop a Music Player for Windows Phone 7. In this, i have to load all the album art images of albums in the media library one by one as 200X200px image using: albumArtStream = library.Albums[loop_counter].GetAlbumArt(); But, the…
sid
  • 164
  • 5
  • 14
1
vote
1 answer

ViewPager page effect

I need to make a view pager for a music app with this effect I am new to android developing. I got a link from stack, but its not helping fully. Requirement : for a music app, i need to show a the album arts in a view pager. album art of current…
Arundas K V
  • 801
  • 2
  • 14
  • 28
1 2 3
8 9