Questions tagged [albumart]

A picture that represents the cover of an album

A picture that represents the cover of an album

131 questions
0
votes
0 answers

packery/isotope/masonry lightbox album laravel

well first of all, im no expert in javascript, ive been spending few days tinkering with masonry, lightbox to create UI like in picture1, any suggestion of how to create something like it, in example of picture1. there are 4 albums with fixed size,…
0
votes
1 answer

How to set imageview dimensions

I'm making a music player in android studio and I would like to do something like this Here's an ugly draw of what I'm attempting to do The black rectangle is the phone. I've already made the yellow part and now I have to set up the imageview as the…
user5216857
0
votes
1 answer

Read media file's APIC image data in Java

I am working on my HTTP server, and I am currently implementing the ability to read and display media tags and information of files(such as mp4, m4a, wav, etc.) to clients. So far I have tags such as title, track number, year, album, artist,…
Brian_Entei
  • 513
  • 1
  • 8
  • 18
0
votes
1 answer

How to get album cover querying songs

how can I get "cover songs" (so songs in the same album have the same cover)? // Retrieve song info from device public void getSongList() { String selection = MediaStore.Audio.Media.IS_MUSIC + " != 0"; // Query external audio …
Nammen8
  • 619
  • 1
  • 11
  • 31
0
votes
1 answer

How to get artwork of Mp3 file in iOS8

How to get album art or artwork from MP3 file. My mp3 file is saved in NSDocument Directory. My code is: NSURL *fileURL=[[NSURL alloc]initFileURLWithPath:[NSHomeDirectory() stringByAppendingPathComponent:[NSString…
Rox
  • 909
  • 11
  • 31
0
votes
2 answers

how to pass album art to another activity

public void accessMetaData(int songIndex) { MediaMetadataRetriever retriver = new MediaMetadataRetriever (); retriver.setDataSource(songsList.get(songIndex).get("songPath")); showMetaData(retriver); } public void…
0
votes
1 answer

Loading album art efficiently Android

I've been having trouble loading all of the album art located on the phone's SD card efficiently. I can get it all, but it can take upwards of 15-20 seconds I believe because of the Bitmap decoding process. I also don't want to lose the order, if…
0
votes
1 answer

album art doesnot set to default image if next song is selected and album art is not present

album art doesnot set to default image if next song is selected and album art is not present I am trying to make an media player . If i have the albumk art for previous song and there is no album art for the next song then the next song starts but…
1234567
  • 2,226
  • 4
  • 24
  • 69
0
votes
1 answer

Album art does not show in custom simplecursoradpter

Album art does not show in custom simplecursoradpter i have succeeded showing all the albums names in the listview but unable to display album art etc while every thing works fine for the text and animation the album art just doesnot appear in the…
1234567
  • 2,226
  • 4
  • 24
  • 69
0
votes
1 answer

album art with cursor and base adapter not showing in list or toast

album art with cursor and base adapter not showing in list or toast i am trying to display the album art and album details in a listview however neither does it display in toast or in listview here is the code mainactivity public class MainActivity…
1234567
  • 2,226
  • 4
  • 24
  • 69
0
votes
0 answers

Android: How to retrieve album_art for each album using album_id?

public Bitmap getAlbumart(Long album_id) { Bitmap bm = null; try { final Uri sArtworkUri = Uri .parse("content://media/external/audio/albumart"); Uri uri =…
shaiban
  • 331
  • 5
  • 12
0
votes
1 answer

Android Album Art from MediaStore (and Picasso)

Trying to retrieve the path to the album art for each album in MediaStore. I'm retrieving my cursor like this: String[] projection = new String[] {MediaStore.Audio.Albums._ID, MediaStore.Audio.Albums.ALBUM_ART, …
NewGradDev
  • 1,004
  • 6
  • 16
  • 35
0
votes
1 answer

VB.Net - Audio Files Album Arts

Basically I'm despaired. I've tried everything I've seen on every Google result concerning this problem. I have a program that is very similar to WMP. It's using axWMP control to play songs and etc. I've got many types of audio files, mp3, m4a, wma,…
Senerio
  • 35
  • 1
  • 9
0
votes
0 answers

Can I extract the album art from an mp3 using Flash AS3?

I have successfully written AS3 code to compile an XML List. But I want to add the true Bitrate of the .mp3's and the Album Art. I have successfully done this on PHP but have failed miserably with Flash AS3. import flash.events.Event; import…
scottiescotsman
  • 73
  • 2
  • 12
0
votes
0 answers

Android - Hide album art from image gallery activity

I've made an image gallery activity that is needed for my app. All works well except that it shows an image album for every music album I have in my SD card that contains album art. The default gallery app manages to hide these albums-pictures. How…
Anonymous
  • 4,470
  • 3
  • 36
  • 67
1 2 3
8
9