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

Display album art from MediaStore.Audio.Albums.ALBUM_ART

I use a CursorLoader in a LoaderManager with a Custom CursorAdapter. I've already achieved to display the Album and the associated Artist, and now I'd like to display the Cover. Here is my Custom CursorAdapter : public class AlbumsAdapter extends…
0
votes
1 answer

mediaplayer: album and display songs in it

When we click on albums than it should display list of songs in album, I try like this but it displays all the songs in SD card. private OnItemClickListener musicgridlistener1 = new OnItemClickListener(){ public void onItemClick(AdapterView…
mamatha
  • 5
  • 3
0
votes
1 answer

App's album cover - iPhone

I am making an app that plays audio... with each sound piece playing I want to be able to change the "album cover" on the wallpaper of the phone... For example when you play a song on the iPod app it changes your lock screen wallpaper to an album…
Albert Renshaw
  • 17,282
  • 18
  • 107
  • 195
0
votes
1 answer

Album art not showing when using AudioPlaybackAgent in WP7?

when using the AudioPlaybackAgent in WP7 I create a track before playing it. Now when I create the track everything transfers: the file, the title, the artist, and the album, but for some reason when I navigate to the Music and Video Hub on the…
Edward
  • 7,346
  • 8
  • 62
  • 123
0
votes
0 answers

How to change metadata for audio files in Node.js

I have an ongoing project, a music streaming website which I'm building from scratch and I want to be able to change the metadata of the audio files that will be uploaded to the site, i.e, change the album art, album, artist, genre, year of release,…
0
votes
1 answer

Android + get Artworks + Google Music Beta

I'm trying to get the artworks on a device that syncs mp3s with Google Music Beta. So I try the standard approach using a cursor to get all the album IDS and than for each of them the correspondent artwork: public void getAlbumIDS(){ Cursor cur…
Z3t4 Apps
  • 3
  • 3
0
votes
0 answers

Display the music album cover in Android Studio

I want to create a music project that contains the title and image of each music track on the mobile device. The title is displayed but the image of each song is not displayed. If possible, give me the correct method of receiving and sending photos…
0
votes
0 answers

azuracast album art script

Need some help with a album art script for azuracast. My script works but i want to get the image file, now i only get the url of the image. var nowPlayingTimeout; var nowPlaying; function loadNowPlaying() { $.ajax({ cache: false, …
Flamingo
  • 1
  • 1
0
votes
1 answer

Get path to opened file

I am creating in Java langauge Android audio player. I want to implement there the ability to show the cover art when the mp3 file is opened. To do this I need the path to this opened file but I don't know what it is and how to find it. Mp3 file is…
MarcinC
  • 11
  • 3
0
votes
0 answers

Icecast albumart from mountpoint

I.m searching and searching. Found some scripts and try that . Several Times. All I need is a (simple) script that shows the albumart om my icecast from my stream mount point. (I send the title of the song treu butt) Please someone can help me with…
0
votes
0 answers

Extract Album Art from an mp3 using C# not Taglib-Sharp

First of all, I'd better say that I'm a beginner in programming. Taglib-sharp seems too slow for getting metadata of an mp3 especially when it is used for a lot of mp3 files and also it takes a lot of memory and surprisingly it doesn't make it free…
Hamed
  • 1
  • 1
0
votes
1 answer

Bash: FFmpeg: Automate Album Art Tagging

Every one of my music folders are set up like Artist > Year Album > Track 01.flac Track 02.flac Track 03.flac folder.jpg, jpeg, png, etc And what I need to do is if folder.* is available. if [ -f folder.* ]; then Run this command to set smaller…
0
votes
1 answer

How to delete the covert art of a flac file in python

I have some flac songs, they all have different cover arts. I really want to remove or change the covert art with my own .png What I have tried so far: from mutagen import File from PIL import Image img = Image.open('art.png') file = File('ZAYN -…
BalaRohan
  • 65
  • 1
  • 2
  • 9
0
votes
1 answer

Display album art of a shoutcast v2 stream

I have a shoutcast server v2.6 and a website with a player on the same server. The player already show title and artist from the audio stream. With shoutcast 2 stream, we can display the album art simply by this…
0
votes
1 answer

Unable to get Album Art from Spotify in Objective C using kMRMediaRemoteNowPlayingInfoArtworkData

I'm tweaking a forked TouchBar application which shows widgets on the Mac TouchBar, and am trying to get album art to display on the NowPlaying Widget. This is the project. Currently, I'm having issues with this piece of code: - (void)updateInfo { …
1 2 3
8 9