update readme

This commit is contained in:
aynakeya
2025-07-05 04:10:31 +08:00
parent 14ce82e9f7
commit d2d10c3855
2 changed files with 13 additions and 6 deletions

View File

@@ -1,10 +1,17 @@
# Miaosic
Media Provider Repository
Music Provider Repository, provide a universal interface for different music service.
## Command line Tool
## Todo
please check [miaosic cmd tool](./cmd/miaosic/README.md)
- netease music
- loginable implementation
- local music optimization, load media when call api.
## Available Providers
| Provider | Search | Info | Url | Lyric | Playlist | loginable |
|----------------|--------|------|-----|-------|----------|-----------|
| netease | ✓ * | ✓ * | ✓ * | ✓ * | ✓ * | ✓ |
| kuwo | ✓ | ✓ | ✓ | ✓ | ✗ | ✗ |
| kugou | ✓ | ✓ | ✓ * | ✓ | ✓ | ✓ |
| bilibili-video | ✓ | ✓ | ✓ | ✓ | ✓ | ✗ |
> \* means require login

View File

@@ -170,6 +170,6 @@ func readLyric(localdir string, meta miaosic.MetaData) ([]miaosic.Lyrics, error)
lyrics = append(lyrics, miaosic.ParseLyrics(name, mMeta.Lyrics()))
}
}
fmt.Println(lyrics)
//fmt.Println(lyrics)
return lyrics, nil
}