$MIDISOUNDFONT: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
No edit summary |
No edit summary |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
The [[$MIDISOUNDFONT]] metacommand | The now {{Text|deprecated|red}} [[$MIDISOUNDFONT]] metacommand did enable MIDI support for [[_SNDOPEN]] in QB64-PE versions prior to v3.14.0, and was also considered unstable. It could only be used with the [[$UNSTABLE]]:MIDI flag set. Since v3.14.0 MIDI support is stable and you can use [[_MIDISOUNDBANK]] to load a soundfont. | ||
{{PageSyntax}} | {{PageSyntax}} | ||
:[[$MIDISOUNDFONT]]: {DEFAULT|"{{Parameter|Filename}}"} | : [[$MIDISOUNDFONT]]: {DEFAULT|"{{Parameter|Filename}}"} | ||
{{ | {{PageParameters}} | ||
* DEFAULT indicates that the soundfont provided by QB64-PE should be used to play MIDI files. | * DEFAULT indicates that the soundfont provided by QB64-PE should be used to play MIDI files. | ||
** The provided soundfont is about 1MB in size. | ** The provided soundfont is about 1MB in size. | ||
Line 21: | Line 19: | ||
{{PageAvailability}} | {{PageAvailability}} | ||
<!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> | |||
<gallery widths="48px" heights="48px" mode="nolines"> | <gallery widths="48px" heights="48px" mode="nolines"> | ||
File:Qb64.png|'''none''' | File:Qb64.png|'''none''' | ||
Line 29: | Line 28: | ||
File:Osx.png|'''yes''' | File:Osx.png|'''yes''' | ||
</gallery> | </gallery> | ||
<!-- additional availability notes go below here --> | |||
* '''$MIDISOUNDFONT''' was {{Text|deprecated|red}} in '''QB64-PE v3.14.0'''. Use [[_MIDISOUNDBANK]] instead. | |||
Line 35: | Line 36: | ||
{{Cl|$UNSTABLE}}:MIDI | {{Cl|$UNSTABLE}}:MIDI | ||
' This line is only allowed when {{ | ' This line is only allowed when {{Cl|$UNSTABLE}}:MIDI is used | ||
{{ | {{Cl|$MIDISOUNDFONT}}: Default | ||
{{ | {{Cl|_SNDPLAYFILE}} "example.mid" | ||
{{CodeEnd}} | {{CodeEnd}} | ||
{{CodeStart}} | {{CodeStart}} | ||
Line 44: | Line 45: | ||
' Using a custom soundfont rather than the default | ' Using a custom soundfont rather than the default | ||
{{ | {{Cl|$MIDISOUNDFONT}}: "soundfont.sf2" | ||
{{ | {{Cl|_SNDPLAYFILE}} "example.mid" | ||
{{CodeEnd}} | {{CodeEnd}} | ||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
* [[$UNSTABLE]] | * [[$UNSTABLE]] | ||
* [[_SNDOPEN]] | * [[_MIDISOUNDBANK]], [[_SNDOPEN]] | ||
{{PageNavigation}} | {{PageNavigation}} |
Latest revision as of 15:30, 9 August 2024
The now deprecated $MIDISOUNDFONT metacommand did enable MIDI support for _SNDOPEN in QB64-PE versions prior to v3.14.0, and was also considered unstable. It could only be used with the $UNSTABLE:MIDI flag set. Since v3.14.0 MIDI support is stable and you can use _MIDISOUNDBANK to load a soundfont.
Syntax
- $MIDISOUNDFONT: {DEFAULT|"Filename"}
Parameters
- DEFAULT indicates that the soundfont provided by QB64-PE should be used to play MIDI files.
- The provided soundfont is about 1MB in size.
- Filename can be used to provide your own soundfont for playing MIDI files.
- The specified soundfont file is compiled into your program and is not required at runtime.
Description
- The use of this metacommand allows _SNDOPEN to open MIDI files.
- The selected soundfont is what is used to play all MIDI files.
Availability
- $MIDISOUNDFONT was deprecated in QB64-PE v3.14.0. Use _MIDISOUNDBANK instead.
Examples
$UNSTABLE:MIDI ' This line is only allowed when $UNSTABLE:MIDI is used $MIDISOUNDFONT: Default _SNDPLAYFILE "example.mid" |
$UNSTABLE:MIDI ' Using a custom soundfont rather than the default $MIDISOUNDFONT: "soundfont.sf2" _SNDPLAYFILE "example.mid" |
See also