Online Documentation - Statistics - FAQ - Plugin Parts (All, Dependencies) - Class hierarchy
New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1
The list of the topics, classes, interfaces, controls, modules, global methods by category, global methods by name, screenshots, licenses and examples.
Platforms to show: All Mac Windows Linux Cross-Platform
Back to SoundFileMBS class.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Same as destructor, but you can call it early.
SoundFileMBS.Constructor Private
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
SoundFileMBS.GetString(type as Integer) as string
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
See kString* constants.
Returns "" in case of error.
SoundFileMBS.ReadDouble(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 8 * Items in size.
Returns number of items read.
SoundFileMBS.ReadDoubleFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 8 * Items * Channels in size.
Returns number of items read.
SoundFileMBS.ReadInt(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items in size.
Returns number of items read.
SoundFileMBS.ReadIntFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items * Channels in size.
Returns number of items read.
SoundFileMBS.ReadRaw(p as ptr, bytes as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with Bytes in size.
Returns number of bytes read.
SoundFileMBS.ReadShort(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 2 * Items in size.
Returns number of items read.
SoundFileMBS.ReadShortFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 2 * Items * Channels in size.
Returns number of items read.
SoundFileMBS.ReadSingle(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items in size.
Returns number of items read.
SoundFileMBS.ReadSingleFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items * Channels in size.
Returns number of items read.
SoundFileMBS.Seek(frames as Int64, whence as Integer) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
See kSeek* constants for whence parameter.
SoundFileMBS.SetString(type as Integer, data as Memoryblock) as Integer
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
See kString* constants.
Returns zero on success.
See also:
SoundFileMBS.SetString(type as Integer, text as string) as Integer
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
See kString* constants.
Returns zero on success.
See also:
SoundFileMBS.WriteDouble(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 8 * Items in size.
Returns number of items written.
SoundFileMBS.WriteDoubleFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 8 * Items * Channels in size.
Returns number of items written.
SoundFileMBS.WriteInt(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items in size.
Returns number of items written.
SoundFileMBS.WriteIntFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items * Channels in size.
Returns number of items written.
SoundFileMBS.WriteRaw(p as ptr, bytes as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with Bytes in size.
Returns number of bytes written.
SoundFileMBS.WriteShort(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 2 * Items in size.
Returns number of items written.
SoundFileMBS.WriteShortFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 2 * Items * Channels in size.
Returns number of items written.
SoundFileMBS.WriteSingle(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items in size.
Returns number of items written.
SoundFileMBS.WriteSingleFrames(p as ptr, items as Int64) as Int64
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Pointer should point to memmoryblock with 4 * Items * Channels in size.
Returns number of items written.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
method | Audio | MBS Tools Plugin | 17.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
The items on this page are in the following plugins: MBS Tools Plugin.