Hello.
I'm using Taifun player.
In this extension we can set output volume.
on the other hand i saw this on https://developer.android.com/reference/android/media/MediaPlayer#setVolume(float,%20float)
setVolume
Added in API level 1
public void setVolume (float leftVolume, float rightVolume)
Sets the volume on this player. This API is recommended for balancing the output of audio streams within an application. Unless you are writing an application to control user settings, this API should be used in preference to AudioManager#setStreamVolume(int, int, int)
which sets the volume of ALL streams of a particular type. Note that the passed volume values are raw scalars in range 0.0 to 1.0. UI controls should be scaled logarithmically.
Parameters
leftVolume
float
: left volume scalar
rightVolume
float
: right volume scalar
So how could it be possible to set different volume values (rigth and left) to audio player in AI ?