You're conflating multiple different types of objects in a few places -- for instance, it looks like you're trying to create a single rating table which applies to albums, artists, and tracks. Consider carefully whether it may be easier to have three separate tables for the three different types of ratings.
Same thing goes for comment. Additionally, on that table, your current structure (having a single comment_id on an album, artist, or track) would appear to limit each type of object to having a single comment, which doesn't make sense.
For genre, type, and thumb, consider inlining those tables into the parent object. Would it ever make sense to have a single thumb row which is shared between multiple artists, for instance, or would it be easier to just have each artist have a thumb path stored directly in it?
Finally, for all of the relationships you've drawn out, you need to define the cardinality of the relationship. For each one, define which table is referring to the other, and "how many" rows in one table can exist for each row in the other one. For instance, the relationship between album and track is a one-to-many relationship, as each album contains multiple tracks, but each track belongs to one album. Use a notation such as "crow's foot notation" to denote this information.