Page 1 of 1

[FAQ] Mediatype / Filetags / Exclude

Posted: 10 Dec 2012, 18:42
by Madsonic
to overide the auto-detected mediatype you have 2 options in Madsonic:

GUItaging

Image

Filetaging

  • madsonic_multi.tag
  • madsonic_artist.tag
  • madsonic_album.tag
  • madsonic_set.tag
  • madsonic_dir.tag

Image

Image

Image

Exclude Files or Folders

Exclude files and folders listed in a madsonic_exclude.txt file (put in each line a folder/filename to exclude)

EXAMPLE

Code: Select all

private
temp
private.mp3

Re: [FAQ] Mediatype / Filetags / Exclude

Posted: 02 May 2016, 22:25
by taylord1984
Thought I would post snipit of bash to help others lol works on linux but should run on any system with bash and find.

This will find all folders named 'compilation' in the path and make a file called 'madsonic_dir.tag' in that folder.

Code: Select all

find /full/path/to/music -type d -name 'compilation'  -exec bash -c "cd '{}' && touch madsonic_dir.tag" \;
Can be used for more. I think people can work the rest out.

Saved me some time as I have all my music in a /artist/type of release/the name of the release.