Midi Recording Module Application icon

Midi Recording Module 1.0

1.7 MB / 10K+ Downloads / Rating 3.3 - 44 reviews


See previous versions

Midi Recording Module, developed and published by AppsTransport, has released its latest version, 1.0, on 2015-03-13. This app falls under the Music & Audio category on the Google Play Store and has achieved over 10000 installs. It currently holds an overall rating of 3.3, based on 44 reviews.

Midi Recording Module APK available on this page is compatible with all Android devices that meet the required specifications (Android 2.2+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.appspot.midirecording

Updated: 10 years ago

Developer Name: AppsTransport

Category: Music & Audio

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Midi Recording Module on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

3.3
Total 44 reviews

Reviews

3 ★, on 2015-07-06
Thanks for the first time. The and then I have a good day. We have to be the best, I am going to have to be the same as for the next couple weeks, anda .same. We have to do so. We will

4 ★, on 2016-12-01
Please add an option to save in SD card.

1 ★, on 2016-10-29
Junk

5 ★, on 2016-10-02
loved it

1 ★, on 2015-05-03
I get message "recording starts, then the app closes. When opened again, it gives the message "recording stops". Play function was not working. -Moto G, android 4.4.1

1 ★, on 2015-11-19
It crashes on my lenovo tablet.

Previous Versions

Midi Recording Module 1.0
2015-03-13 / 1.7 MB / Android 2.2+

About this app

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.

App Permissions

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.