module WritingAdditions::Music

Overview

A music track.

Direct including types

Defined in:

write/write_music.cr

Instance Method Summary

Instance Method Detail

def write(file : String | Path) : UInt32 #

Writes a music given an output io and returns the size of the written lump

Writes a music in my_wad to a file:

my_wad = WAD.read("Path/To/Wad")
my_wad.music["MyMusic"].write("Path/To/music.lmp")

def write(io : IO) : UInt32 #

Writes a music given an output io and returns the size of the written lump

Writes a music in my_wad to a file:

my_wad = WAD.read("Path/To/Wad")
File.open("Path/To/music.lmp", "w+") do |file|
  my_wad.music["MyMusic"].write(file)
end