Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Latest commit

 

History

History
51 lines (36 loc) · 1.7 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.7 KB

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

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.

Screenshot of the module

Prerequisites

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).

Setup

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 options

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