SoundBuffer.SaveToFile Method

SFML.Net

SoundBufferSaveToFile Method
Save the sound buffer to an audio file. Here is a complete list of all the supported audio formats: ogg, wav, flac, aiff, au, raw, paf, svx, nist, voc, ircam, w64, mat4, mat5 pvf, htk, sds, avr, sd2, caf, wve, mpc2k, rf64.

Namespace: SFML.Audio
Assembly: sfmlnet-audio-2 (in sfmlnet-audio-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public bool SaveToFile(
	string filename
)
Public Function SaveToFile ( 
	filename As String
) As Boolean
public:
bool SaveToFile(
	String^ filename
)
member SaveToFile : 
        filename : string -> bool 

Parameters

filename
Type: SystemString
Path of the sound file to write

Return Value

Type: Boolean
True if saving has been successful
See Also