Music: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
m (Audio category)
No edit summary
Line 2: Line 2:
Music is available for the NES. It is most often stored in NSF files, which package the data for one or more songs along with 6502 machine code to play it back. NSF files can be played on a NES or on a PC with an appropriate player which emulates the NES sound hardware and CPU.
Music is available for the NES. It is most often stored in NSF files, which package the data for one or more songs along with 6502 machine code to play it back. NSF files can be played on a NES or on a PC with an appropriate player which emulates the NES sound hardware and CPU.


The music from a large number of NES games has been "ripped" into NSF format, and people are actively creating [http://www.2a03.org/ new NES music] with sequencing tools. The two main music sequencers are
The music from a large number of NES games has been "ripped" into NSF format, and people are actively creating [http://www.2a03.org/ new NES music] with sequencing tools. The three main music sequencers are
*[http://www.nesdev.org/mck_guide_v1.0.txt MCK/MML]
* [http://www.nesdev.org/mck_guide_v1.0.txt MCK/MML]
* [http://nesdev.parodius.com/nt2/ Nerd Tracker II]
* [http://nesdev.parodius.com/nt2/ Nerd Tracker II]
*Famitracker
* [http://famitracker.com/ Famitracker]


But some of these general-purpose music engines are designed for making NSFs where the only thing executing is the music player.
But some of these general-purpose music engines are designed for making NSFs where the only thing executing is the music player.

Revision as of 19:43, 3 August 2012

Music is available for the NES. It is most often stored in NSF files, which package the data for one or more songs along with 6502 machine code to play it back. NSF files can be played on a NES or on a PC with an appropriate player which emulates the NES sound hardware and CPU.

The music from a large number of NES games has been "ripped" into NSF format, and people are actively creating new NES music with sequencing tools. The three main music sequencers are

But some of these general-purpose music engines are designed for making NSFs where the only thing executing is the music player. This means they can be fairly large, and in an NROM game, their features might not justify their size. If you want to write your own music engine that targets the NES APU, you'll first need a lookup table for the note periods. This means you'll need the frequencies that correspond to various pitches. See Wikipedia:Pitch (music), Wikipedia:Semitone, and Wikipedia:Equal temperament.