abcm2ps 5.9.2 (Development branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News abcm2ps 5.9.2 (Development branch)
# 1  
Old 12-24-2008
abcm2ps 5.9.2 (Development branch)

abcm2ps is a package that converts music tunes from ABC format to PostScript. Based on abc2ps version 1.2.5, it was developed mainly to print baroque organ scores that have independant voices played on one or more keyboards, and a pedal-board. It introduces many extensions to the ABC language that make it suitable for classical music. License: GNU General Public License (GPL)Changes:
Lots of layout bugs were fixed.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
reserve_voices(3alleg4) 					  Allegro manual					   reserve_voices(3alleg4)

NAME
reserve_voices - Reserve a number of voices for the digital and MIDI drivers. Allegro game programming library. SYNOPSIS
#include <allegro.h> void reserve_voices(int digi_voices, int midi_voices); DESCRIPTION
Call this function to specify the number of voices that are to be used by the digital and MIDI sound drivers respectively. This must be done _before_ calling install_sound(). If you reserve too many voices, subsequent calls to install_sound() will fail. How many voices are available depends on the driver, and in some cases you will actually get more than you reserve (eg. the FM synth drivers will always pro- vide 9 voices on an OPL2 and 18 on an OPL3, and the SB digital driver will round the number of voices up to the nearest power of two). Pass negative values to restore the default settings. You should be aware that the sound quality is usually inversely related to how many voices you use, so don't reserve any more than you really need. SEE ALSO
set_volume_per_voice(3alleg4), install_sound(3alleg4), detect_digi_driver(3alleg4), detect_midi_driver(3alleg4), get_mixer_voices(3alleg4) Allegro version 4.4.2 reserve_voices(3alleg4)