Thank you for your donation!


Cloudsmith graciously provides open-source package management and distribution for our project.


Solved: Spurious Album Cover View problem
#1
    Hello. I wonder if someone could advise on a problem with a MoOde 7.6.1 installation on an RPI3B. 

I have a spurious album view entry (a copy of an original album which shows & plays fine) which does not disappear and has entries as shown in the image below. . I have the same music folder on two other streamers (Squeezebox & Onkyo) and neither of those show this issue. The actions I have tried are to clear & regenerate thumb cache & library - neither made any difference. 

Thank you in advance.
Reply
#2
Are there any hidden files in the Folder?
Enjoy the Music!
moodeaudio.org | Mastodon Feed | GitHub
Reply
#3
(01-20-2022, 01:21 PM)Tim Curtis Wrote: Are there any hidden files in the Folder?

Thank you for responding. Not as far as I can see - the screenshot is of the directory with the hidden files view set to show hidden files.

   
Reply
#4
I would look at the directory using an SSH terminal into the Pi

Use the command below which will show all files including hidden (dot) files

Code:
ls -al
Enjoy the Music!
moodeaudio.org | Mastodon Feed | GitHub
Reply
#5
(01-20-2022, 09:04 PM)Tim Curtis Wrote: I would look at the directory using an SSH terminal into the Pi

Use the command below which will show all files including hidden (dot) files

Code:
ls -al

Hello. Here is the listing of the hidden files on the USB drive (FLACMUSIC) where my music resides in a folder called FLAC. As far as I can see, these are the standard MacOS hidden files created when I ripped the files from my CDs but obviously I could be wrong.

   

Below are the hidden files in the FLAC folder:

   
Reply
#6
OS X is particularly annoying with its creation of hidden resource files which are completely useless in Linux. MPD in moOde will index them and create ghost albums etc. They can be filtered out with a .mpdignore file in the root music directory but its far better to delete them altogether.

I use the commands below.

Code:
cd MUSIC_DIRECTORY_ROOT

sudo find . -name "._*" -exec rm -rf {} \;
sudo find . -name ".Trashes" -exec rm -rf {} \;
sudo find . -name "._.Trashes" -exec rm -rf {} \;
sudo find . -name ".Spotlight*" -exec rm -rf {} \;
sudo find . -name ".DS_Store" -exec rm -rf {} \;
sudo find . -name "._.DS_Store" -exec rm -rf {} \;
sudo find . -name ".fseventsd*" -exec rm -rf {} \;
sudo find . -name "._.com.apple.timemachine.donotpresent" -exec rm -rf {} \;
sudo find . -name ".com.apple.timemachine.donotpresent" -exec rm -rf {} \;
sudo find . -name ".TemporaryItems" -exec rm -rf {} \;
sudo find . -name "._.TemporaryItems" -exec rm -rf {} \;
sudo find . -name "._moodecfg.txt" -exec rm -rf {} \;
sudo find . -name "__MACOSX" -exec rm -rf {} \;
Enjoy the Music!
moodeaudio.org | Mastodon Feed | GitHub
Reply
#7
(01-21-2022, 12:50 PM)Tim Curtis Wrote: OS X is particularly annoying with its creation of hidden resource files which are completely useless in Linux. MPD in moOde will index them and create ghost albums etc. They can be filtered out with a .mpdignore file in the root music directory but its far better to delete them altogether.

I use the commands below.

Code:
cd MUSIC_DIRECTORY_ROOT

sudo find . -name "._*" -exec rm -rf {} \;
sudo find . -name ".Trashes" -exec rm -rf {} \;
sudo find . -name "._.Trashes" -exec rm -rf {} \;
sudo find . -name ".Spotlight*" -exec rm -rf {} \;
sudo find . -name ".DS_Store" -exec rm -rf {} \;
sudo find . -name "._.DS_Store" -exec rm -rf {} \;
sudo find . -name ".fseventsd*" -exec rm -rf {} \;
sudo find . -name "._.com.apple.timemachine.donotpresent" -exec rm -rf {} \;
sudo find . -name ".com.apple.timemachine.donotpresent" -exec rm -rf {} \;
sudo find . -name ".TemporaryItems" -exec rm -rf {} \;
sudo find . -name "._.TemporaryItems" -exec rm -rf {} \;
sudo find . -name "._moodecfg.txt" -exec rm -rf {} \;
sudo find . -name "__MACOSX" -exec rm -rf {} \;
Thank you. I will delete them and yes I would certainly agree with OSX is annoying! ?
Reply


Forum Jump: