Gets the Enabled status of the Audio effect engine.
GetPropertiesAsString
Gets the Virtualizer properties. DimVRAsVirtualizer VR.Initialize VR.Enable(True)
VRSett= VR.GetProperties VR.SetProperties(VRSett)
HasControlAsBoolean
Checks if this AudioEffect object is controlling the effect engine
InitializeAsBoolean
Checks whether the Virtualizer is available and Initializes the object, only for all output and not for specific media players. For backwards compatibility, the library will not throw an exception on failure to initialize the Virtualizer, but will return true or false and set the IsInitialized flag appropriately if it fails for any reason. check either of these before running the other methods as if the Virtualizer is not initialized, you will get a runtime error. DimVRAsVirtualizer VR.Initialize
IsAvailableAsBoolean
Returns the availability of the Virtualizer object, it must be available for the devices API level (9 or later)
IsInitializedAsBoolean
Returns the status of the Virtualizer object, it must be available for the devices API level and initialized DimVRAsVirtualizer VR.Initialize IfVR.IsInitializedThen VR.Enable(True)
* Endif
Release
Releases the native AudioEffect resources. It is a good practice to release the effect engine when not in use as control can be returned to other applications or the native resources released.
SetProperties (settingsStrAsString)
Sets the Virtualizer properties. DimVRAsVirtualizer VR.Initialize VR.Enable(True)
VRSett= VR.GetProperties VR.SetProperties(VRSett)
SetStrength (strengthAsShort)
Sets the strength of the virtualizer effect. If the implementation does not support per mille accuracy for setting the strength, it is allowed to round the given strength to the nearest supported value. You can use the {@link #getRoundedStrength()} method to query the (possibly rounded) value that was actually set. strength: strength of the effect. The valid range for strength strength is [0, 1000], where 0 per mille designates the mildest effect and 1000 per mille designates the strongest.
Top