Home  /  Music & Audio Apps  / Midi Recording Module on Windows Pc

Midi Recording Module on Windows Pc

Developed By: AppsTransport

License: Free

Rating: 3,3/5 - 44 votes

Last Updated: December 24, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.0
Size 1.7 MB
Release Date March 13, 15
Category Music & Audio Apps

App Permissions:
Allows applications to open network sockets. [see more (4)]

Description from Developer:
I have developed this recording module for my MicroKeyPlayer. It will be added to my other apps

- MicroVolcaKeys
- MicroVolcaSample

The intention is for music creator to record h... [read more]

App preview ([see all 3 screenshots])

App preview

About this app

On this page you can download Midi Recording Module and install on Windows PC. Midi Recording Module is free Music & Audio app, developed by AppsTransport. Latest version of Midi Recording Module is 1.0, was released on 2015-03-13 (updated on 2023-12-24). Estimated number of the downloads is more than 10,000. Overall rating of Midi Recording Module is 3,3. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 44 users, 16 users had rated it 5*, 12 users had rated it 1*.

How to install Midi Recording Module on Windows?

Instruction on how to install Midi Recording Module on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Midi Recording Module on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install Midi Recording Module using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "Midi Recording Module" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Midi Recording Module on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "Midi Recording Module" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.0.

Download Midi Recording Module 1.0 on Windows PC – 1.7 MB

I have developed this recording module for my MicroKeyPlayer. It will be added to my other apps

- MicroVolcaKeys
- MicroVolcaSample

The intention is for music creator to record his work and edit it on his desktop software. The saved file is located at sdcard/midirecording.mid.

On drawing board is app for editing the recorded midi file. Please post your comment on below forum if you want it.

http://celestialpiano.blogspot.sg/p/forum.html

--- For 3rd party developer too ---

It is also available free to any 3rd party developer who want to add midi recording feature to their apps. It is very easy to integrated. You only need to send an intent to record music note.

1. To record C4(60) note. Add an intent in your code.

Intent intent = new Intent();
intent.putExtra("key", 60);
intent.setComponent(new ComponentName("com.appspot.midirecording", "com.appspot.midirecording.MidiRecordingService"));
startService(intent);

2. To stop the same note
Intent intent = new Intent();
intent.putExtra("key", 60);
intent.putExtra("velocity", 0);
intent.setComponent(new ComponentName("com.appspot.midirecording", "com.appspot.midirecording.MidiRecordingService"));
startService(intent);

Once user has download the app, provide a button for the user to open the midi recording app and press start button. Then, you can send the above intent. To stop the recording, the user only need to reopen the app.
Allows applications to open network sockets.
Allows applications to access information about networks.
Allows an application to write to external storage.
Allows an application to read from external storage.