NOTE: I am no longer using Magic Mirror, which means that this repository is basically abandoned. If anyone wants to adopt this project, feel free to do so, but I will not be answering to pull requests or bug reports anymore. Consider this project as dead in the water.
MMM-NowPlayingOnAIMP
is a module for MagicMirror that allows you to show the currently playing song on AIMP. This module has been designed to be positioned to top or bottom bar, it probably won't be very usable in other regions.
This module requires that you have AIMP Remote Control installed to your AIMP. Also ensure that you don't have a firewall blocking access to the RPC service created by the plugin (port 3333 by default).
Clone this module into your MagicMirror's modules
directory and install the dependencies:
cd modules
git clone https://github.com/jesmak/MMM-NowPlayingOnAIMP
cd MMM-NowPlayingOnAIMP
npm install
then add the module to your MagicMirror's configuration. Here is an example:
/* MagicMirror/config/config.js */
{
/* ...your other config here */
modules: [
/* ...your other modules here */
{
module: 'MMM-NowPlayingOnAIMP',
position: 'top_bar',
config: {
aimpUrl: Url
}
}
]
}
Configuration key | Description | Default | Required |
---|---|---|---|
aimpUrl | URL of the AIMP Control Plugin RPC service, E.g. http://10.0.1.50:3333/RPC_JSON |
Yes |