Need Help setting up Midi USB Keyboard for Input
I installed Musescore 2.02 ( and also tried 2.1) onto Linux/Ubuntu 16.04 . I cant seem to be able to get my USB MIDI Keyboard (M-Audio Keystation 49e) to be used for note entry into Musescore.
I suspect the problem is that for some reason my install has no menu bar across the top, where I can select preferences. Without the menu bar, there seems to be no way to adjust preferences, such as MIDI input method ( i.e. ALSA, etc.)
All of the Youtube, etc resources show a menu bar where this can be configured.
Where'd the menu bar go? Is this a Linux specific issues? I cant figure this one out?
Comments
I have little experience with Linux, but I use Mint.
Click on top of the edge of the screen, probably them are there.
Or right-click anywhere in the vicinity of where the toolbar used to be, and you should see the option to re-enable it.
Or https://musescore.org/en/handbook/revert-factory-settings
?
In reply to I have little experience… by Shoichi
I can right click and see all the toolbars that are available. They are all enabled. But still no menu bar across the very top of the application (i.e. File Edit View etc...). I wonder if this is Linux specific. But your post helped, the link you provided had another link on how to launch musescore from command line in Linux.
https://musescore.org/en/handbook/command-line-options
It appears you can pass a command line option that specifies the MIDI input protocol ( i.e. ALSA, JACK, etc)
I'll try that tonight...
In reply to I can right click and see… by horvath62
On Mint, if using eg. FireFox I maximize the window, the menu bar automatically hides (it disappears 'under the monitor frame').
In reply to I can right click and see… by horvath62
This is a known bug, in Ubuntu 16.04
In Ubuntu, Open Terminal window: (Press Ctrl+Alt+T)
Type:
initctl restart unity-panel-service
And press Enter.
Menus will back for the current session.
In reply to This is a known bug, in… by Ziya Mete Demircan
Amen ;-)
In reply to I can right click and see… by horvath62
WOO HOOO!!!, finally got my Midi keybord working with musescore on a Linux OS (Ubuntu 16.04 LTS)
No need to run the JACK interface. I launch Musescore from command line with this option:
mscore -I -a alsa
The -I is optional, but it shows the midi codes received on the console.
The -a alsa is the default ( I think) midi driver in Linux, so no need to run Jack.
Hope this helps someone else....
In reply to WOO HOOO!!!, finally got my… by horvath62
You can probably set alsa as the default in your io preferences, see https://musescore.org/en/handbook/preferences#i-o
In reply to WOO HOOO!!!, finally got my… by horvath62
Works like a charm thanks.
In reply to WOO HOOO!!!, finally got my… by horvath62
Just to update this for Ubuntu 20.04 and Musescore 3:
The snap version of Musescore (in the "Ubuntu software" store/catalogue) doesn't seem to work with a MIDI keyboard, no matter which of the hacks on this page I tried.
Instead, use the stable version (currently 3.2.3+dfsg1-4build1 Revision d2d863f) from the Debian repository by typing, at a Terminal prompt:
sudo apt install musescore3
If the package is not present on your Ubuntu install, it will flag up with an error message and tell you how to get it - but on my v20.04 distro it was already there.
You can then run Musescore 3 as per horvath62's command above, except that the -l argument is not supported (it told me when I typed it in!). So:
mscore3 -a alsa
And then it works like a charm :-)
In reply to Just to update this for… by Enrico_94
Any reason to not use the official latest AppImage release instead?
In reply to Any reason to not use the… by jeetee
Not that I know of, but I haven't tried the AppImage from the Musescore website. I see now that Musescore say "recommended" for that.
I was just passing on my own experience - which was that initially I found Musescore in the "Ubuntu software" app on Ubuntu 20.04 and installed it, but couldn't get Musescore to talk to my MIDI keyboard for note input.
horvath62's suggestion in this thread to use "mscore" (and "mscore3") at the command line produced an error message; I guess because the Ubuntu software release is packaged using snap, so the option to add command line arguments -l -a alsa etc. wasn't there.
Maybe typing
snap/bin/musescore3 -l -a alsa might have worked. I didn't try it.
However installing from the Debian repository seemed an easy workaround, and it got me on the road again with note input.
I should add, I'm not a Linux guru - only migrated across from Windows earlier this year, and still feeling my way :-)
In reply to Not that I know of, but I… by Enrico_94
The AppImage is the only version we build and test and support ourselves. Other versions are built by third parties and may or may not work well, plus they are often out of date (in this case, over two years out of date). Unless you are a guru and have a special reason to need to use an unsupported older version, definitely best to use the AppImage.
In reply to The AppImage is the only… by Marc Sabatella
Thanks - good to know. I will swap across to the AppImage version in that case.