freebsd-ports/audio/playumidi/pkg-message
Matthias Andree 0fb98d3fa1 NEW audio/playumidi: standard MIDI format 0/1 player for umidi devices
"playumidi" is the "SIMPLE" MIDI file player for USB MIDI device on FreeBSD.
This software is able to direct control for FreeBSD-umidi device(/dev/umidi*.*)
in the "uaudio" driver.
Therefore, You don't need to use the "/dev/sequencer" device or the other
software when listening the MIDI-file music.
And, Support for auto-judge MIDI-file XG/GS/GM mode & auto add the
Tone-Generator ReSet code when the ReSet code isn't exist in a MIDI-file.

WWW: https://ja.osdn.net/projects/playumidi/

PR:		239774
Submitted by:	Koine Yuusuke <koinec@yahoo.co.jp>
2020-04-27 22:20:40 +00:00

21 lines
734 B
Text

playumidi directly opens, writes midi-event data,
and closes the umidi* device files.
So, it is necessary to grant the R/W privileges(666)
to umidi* device file before use playumidi.
Therefore, there is a need to grant permissions to R/W
prior to use.
An example of the setting method is shown below.
1. Append to devfs.rules (in etc dir.) the following lines.
------------------------------------------
[system=10]
add path 'umidi*' mode 0666 group wheel
------------------------------------------
2. Append to rc.conf (in etc dir.) the following three lines.
------------------------------------------
devfs_enable="YES"
------------------------------------------
3. Reboot FreeBSD (shutdown -r now)