write.module | R Documentation |
Export an PTModule
object as a ProTracker module file,
conform ProTracker 2.3A specifications.
## S4 method for signature 'PTModule,ANY'
write.module(mod, file)
## S4 method for signature 'PTModule,character'
write.module(mod, file)
mod |
A valid PTModule object to be saved as a ProTracker *.mod file |
file |
either a filename to write to, or a file connection, that
allows to write binary data (see |
The routine to write ProTracker modules is based on the referenced version of ProTracker 2.3A. This means that the routine may not be able to write files that ar compatible with later or earlier ProTracker versions.
Writes to a module file but returns nothing.
Pepijn de Vries
https://wiki.multimedia.cx/index.php?title=Protracker_Module
Other io.operations:
read.module()
,
read.sample()
,
write.sample()
Other module.operations:
PTModule-class
,
appendPattern()
,
clearSamples()
,
clearSong()
,
deletePattern()
,
fix.PTModule()
,
modToWave()
,
moduleSize()
,
patternLength()
,
patternOrderLength()
,
patternOrder()
,
playMod()
,
playingtable()
,
rawToPTModule()
,
read.module()
,
trackerFlag()
## Not run:
## get the PTModule object provided with the ProTrackR package
data("mod.intro")
## save the object as a valid ProTracker module file:
write.module(mod.intro, "intro.mod")
## or create the connection yourself:
con <- file("intro2.mod", "wb")
write.module(mod.intro, con)
## don't forget to close the connection after you're done:
close(con)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.