Organize music files: Difference between revisions

No edit summary
m Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
 
(2 intermediate revisions by one other user not shown)
Line 10: Line 10:
<br clear="both" />
<br clear="both" />
=== File Naming ===
=== File Naming ===
<!-- {{#icon:Musicbrainz.filenaming.jpg|File Naming options|400}} -->
[[File:Musicbrainz.filenaming.jpg|File Naming options|right|400px]]
[[File:Musicbrainz.filenaming.jpg|File Naming options|right|400px]]
One of the important settings in MusicBrainz is to allow it to "Move Files" and to set a parent directory (e.g. ~/Music) for your collection so that music that is tagged becomes organized in your collection rather than in subdirectories nested below your existing (incongruent) directory structure.
One of the important settings in MusicBrainz is to allow it to "Move Files" and to set a parent directory (e.g. ~/Music) for your collection so that music that is tagged becomes organized in your collection rather than in subdirectories nested below your existing (incongruent) directory structure.
Line 36: Line 35:


One of the file system artifacts that come from using Windows is "desktop.ini" files in your music directories.  You can get rid of these with a simple find command
One of the file system artifacts that come from using Windows is "desktop.ini" files in your music directories.  You can get rid of these with a simple find command
<source lang="bash">
<syntaxhighlight lang="bash">
# look first before you leap
# look first before you leap
find ~/Music -name desktop.ini
find ~/Music -name desktop.ini
Line 45: Line 44:
find ~/Music -name '*.nfo' -exec rm {} \;
find ~/Music -name '*.nfo' -exec rm {} \;
find ~/Music -name '*.m3u' -exec rm {} \;
find ~/Music -name '*.m3u' -exec rm {} \;
</source>
</syntaxhighlight>


One of the interesting notes about the project is that they've moved to using Git for managing their source code.
One of the interesting notes about the project is that they've moved to using Git for managing their source code.


[[Category:Music]]
[[Category:Music]]
[[Category:Files]]