gpt4 book ai didi

Android Studio Mediaplayer如何淡入淡出

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:03:17 29 4
gpt4 key购买 nike

我正在使用 android studio 中的 mediaplayer 类。我只是想淡出一种声音并淡入另一种声音,而不是使用 setVolume(0,0) 和 setVolume(1,1)。

我为此创建了两个媒体播放器,似乎我在这个线程中找到了解决方案:Android: How to create fade-in/fade-out sound effects for any music file that my app plays?但我不知道如何使用 deltaTime。

还有一些其他的解决方案,我几乎看不懂。难道没有一种简单的方法可以让两个媒体播放器交叉淡入淡出,我无法想象还没有人需要这个,或者每个人都使用强制代码来实现它。我应该如何使用 deltaTime?

最佳答案

查看链接 example ,您将不得不在循环中调用 fadeIn()/fadeOut(),以在一段时间内增加/减少音量。 deltaTime 是循环每次迭代之间的时间。

您必须在与主 UI 线程不同的线程中执行此操作,以免阻塞它并导致您的应用程序崩溃。您可以通过将此循环放入新的 Thread/Runnable/Timer 中来实现。

这是我的淡入示例(您可以对淡出做类似的事情):

float volume = 0;

private void startFadeIn(){
final int FADE_DURATION = 3000; //The duration of the fade
//The amount of time between volume changes. The smaller this is, the smoother the fade
final int FADE_INTERVAL = 250;
final int MAX_VOLUME = 1; //The volume will increase from 0 to 1
int numberOfSteps = FADE_DURATION/FADE_INTERVAL; //Calculate the number of fade steps
//Calculate by how much the volume changes each step
final float deltaVolume = MAX_VOLUME / (float)numberOfSteps;

//Create a new Timer and Timer task to run the fading outside the main UI thread
final Timer timer = new Timer(true);
TimerTask timerTask = new TimerTask() {
@Override
public void run() {
fadeInStep(deltaVolume); //Do a fade step
//Cancel and Purge the Timer if the desired volume has been reached
if(volume>=1f){
timer.cancel();
timer.purge();
}
}
};

timer.schedule(timerTask,FADE_INTERVAL,FADE_INTERVAL);
}

private void fadeInStep(float deltaVolume){
mediaPlayer.setVolume(volume, volume);
volume += deltaVolume;

}

我不会使用两个单独的 MediaPlayer 对象,而是只使用一个并在淡入淡出之间交换轨道。示例:

**Audio track #1 is playing but coming to the end**
startFadeOut();
mediaPlayer.stop();
mediaPlayer.reset();
mediaPlayer.setDataSource(context,audiofileUri);
mediaPlayer.prepare();
mediaPlayer.start();
startFadeIn();
**Audio track #2 has faded in and is now playing**

希望这能解决您的问题。

关于Android Studio Mediaplayer如何淡入淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38380495/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com