A small, lightweight UWP music player.
Aurora Music has been one of four finalists in Design Innovator of Windows Developer Awards 2018! 🎉
Aurora Music is built for a modern, fluent experience of listening music on Windows 10. It is MIT Licensed, you can fork it and build your own personalized music players.
Meanwhile, Aurora Music is extensible, we've preserved interface for lyrics, metadata and online musics. Building your extension can extend the ability of Aurora Music. We're also planning to support more advanced extensibility, such as audio effects, UI layouts, etc. Please see To-Dos.
Here are a few screenshots:
(Background Image by Jeremy Bishop on Unsplash, albums are owned by artists, only for demo here)
Please first refer to Something about build and deploy.
Please read instructions for extension development from here, inside there is a simple tutorial to let you make your own extension, as well as a detailed query explanation.
There's also a code sample here, clone it and deploy, you can see what happens to lyrics.
Moreover, if you have any trouble using app, feel free to contact with [email protected].
To create an issue or pull request, please first have a look at Issue Template and Pull Request Template, please don't pollute issues with unuseful complaints.
We also appreciated to translations added by contributors, if you're interested in localization, please have a look at Translations.
- Advance Extensibility, including UI layout extensibility with config files, and audio effects from optional packages.
- Using machine learning to generate mixed collections.
- Using trained models to classify music by genres.
- Radios.
- Lyric syncing word-by-word.
- Lastfm scrobbler.
You can explorer currently using open source libraries below:
Name | License | Site |
---|---|---|
taglib-sharp | GNU LGPL v2.1 | github.com/mono/taglib-sharp |
SQLite for Universal Windows Platform | Public Domain | sqlite.org |
SQLite-net | MIT License | github.com/praeclarum/sqlite-net |
UWP Community Toolkit | MIT License | github.com/Microsoft/UWPCommunityToolkit |
Json.NET | MIT License | newtonsoft.com |
NAudio | MS-PL | github.com/naudio/NAudio |
UWPAudioVisualizer | MIT License | github.com/clarkezone/audiovisualizer |
ExpressionBuilder | MIT License | github.com/Microsoft/WindowsCompositionSamples |
ColorThief.NET | MIT License | github.com/KSemenenko/ColorThief |
SmartFormat | MIT License | github.com/scottrippey/SmartFormat.NET |
WriteableBitmapEx | MIT License | github.com/teichgraf/WriteableBitmapEx/ |
Win2D | MIT License | github.com/Microsoft/Win2D |
LrcParser | MIT License | github.com/pkzxs/LrcParser |
/Source/Taglib.Sharp is ported to UWP from mono/taglib-sharp.
/Source/ExpressionBuilder is from Microsoft/WindowsCompositionSamples