- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个 Android 问题,一直让我很为难。
我正在开发一款应用程序,只要手机通过麦克风检测到噪音,我就会播放声音。逻辑的核心是从另一个类调用声音播放方法的 while 循环。
当设置方法将循环条件切换为false
时,此循环终止。问题出现在回放延迟到循环条件设置为 false
时。循环结束后,它会在困惑的爆炸声中同时播放对声音播放方法的调用,而不是在循环的每次传递中调用它。
尽管将其线程化并将声音播放方法调用粘贴到 runOnUiThread
中,但这种情况仍然会发生。 MediaPlayer 和 SoundPool
也会发生这种情况。我只希望 playFart()
方法在调用时准确播放。
NoiseActivatedFart
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageButton;
import android.widget.TextView;
public class NoiseActivatedFart extends Activity {
public static int raw = 0; //For debugging. Will be removed
public static int trigger = 0; //For debugging. Will be removed
private Animation press;
private boolean activate_button_state = true;
private EvaluateAmbientNoise evaluateAmbientNoise = new EvaluateAmbientNoise(this);
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.noise_activated_fart);
final TextView debugTextView = (TextView) findViewById(R.id.debug);
press = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.press);
final ImageButton activateButton = (ImageButton) findViewById(R.id.activateButton);
activateButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
if (activate_button_state) {
activateButton.startAnimation(press);
activate_button_state = false;
//The Android.MediaRecorder documentation recommends that objects
//be used in their own threads, as it can really drag the main thread down
new Thread() {
public void run(){
evaluateAmbientNoise.startListening();
}
}.start();
}
else {
activateButton.startAnimation(press);
debugTextView.setText(raw + " " + trigger);
activate_button_state = true;
evaluateAmbientNoise.stopListening();
System.out.println("stop listening");
}
}
});
}
}
评估环境噪声
import android.content.Context;
import android.media.MediaRecorder;
import android.app.Activity;
class EvaluateAmbientNoise implements Runnable {
Activity activity = new Activity();
int[] average = new int[10];
int averageNoiseLevel = 1;
int noiseTriggerLevel = 1;
Context context;
FartPlayer fartplayer = new FartPlayer();
MediaRecorder recorder = null;
boolean recorder_state = false;
boolean keepGoing = false;
/**
* Constructor
* The SoundPool object that is utilized by "fartPlayer"
* requires a context object to function, and gets it from here
*/
EvaluateAmbientNoise(Context input_context) {
context = input_context;
}
public void run() {
startListening();
}
/**
* startListening prepares and starts an Android.MediaRecorder object that is
* used for it's getMaxAmplitude() function. It checks the level of
* noise several times, averages them, and uses the average to determine a trigger level.
* It continues to check the levels and play a fart whenever the levels exceed the trigger.
* It continues until stopListening is called.
*/
public void startListening() {
prepareMediaRecorder();
startMediaRecorder();
fartplayer.initSounds(context);
//Gather sound levels, average them, and use it to make a trigger
averageNoiseLevel = 0;
for (int counter = 0; counter < 10; counter++) {
average[counter] = recorder.getMaxAmplitude();
System.out.println("getting values: " + average[counter]);
}
for (int i:average){
averageNoiseLevel += i;
System.out.println("averaging array: " + averageNoiseLevel);
}
averageNoiseLevel = averageNoiseLevel / average.length;
noiseTriggerLevel = (int)(averageNoiseLevel * 1.5);
System.out.println("average total : " + averageNoiseLevel);
System.out.println("trigger: " + noiseTriggerLevel);
//Listen for noise, and play a fart when the noise exceeds the trigger
keepGoing = true;
int currentLevel = 0;
while (keepGoing) {
currentLevel = recorder.getMaxAmplitude();
if (currentLevel > (noiseTriggerLevel)) {
activity.runOnUiThread(new Runnable() {
public void run() {
fartplayer.playFart();
}
});
}
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
System.err.println("Caught Exception: " + e.getMessage());
}
System.out.println("tick");
}
}
public static void sleep() {
System.out.println("sleeping 1000ms");
}
// Stops "startListening()"
public void stopListening() {
keepGoing = false;
stopMediaRecorder();
}
/**
* start and stopMediaRecorder essentially staples a crude state flag to an
* Android.MediaRecorder object. This is needed because of the object's different states,
* and its simultaneous lack of state-checking functions.
*/
private void startMediaRecorder() {
if (recorder_state == false) {
recorder.start();
recorder_state = true;
}
}
private void stopMediaRecorder() {
if (recorder_state == true) {
recorder.stop();
recorder.release();
recorder = null;
recorder_state = false;
}
}
/**
* prepareMediaRecorder initializes the Android.MediaRecorder object before use.
* Any calls to MediaRecorder throw an exception otherwise
*/
public void prepareMediaRecorder() {
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);
recorder.setOutputFile("/dev/null/");
try {
recorder.prepare();
}
catch (Exception e){
System.out.println("Caught IOException: " + e.getMessage());
}
}
}
放屁玩家
import android.app.Activity;
import android.content.Context;
import android.media.AudioManager;
import android.media.SoundPool;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class FartPlayer extends Activity {
private final Random fartSelector = new Random();
private List<Integer> fartList = new ArrayList<Integer>();
SoundPool sp;
//Initializes the SoundPool object and loads some fart mp3s into it
public void initSounds(Context c) {
sp = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
fartList.add(sp.load(c, R.raw.fart1, 1));
fartList.add(sp.load(c, R.raw.fart2, 1));
fartList.add(sp.load(c, R.raw.fart3, 1));
fartList.add(sp.load(c, R.raw.fart4, 1));
fartList.add(sp.load(c, R.raw.fart5, 1));
fartList.add(sp.load(c, R.raw.fart6, 1));
}
//Plays a random fart from the SoundPool when called
public void playFart() {
sp.play(fartList.get(fartSelector.nextInt(fartList.size())),1f,1f,1,0,1f);
System.out.println("farting");
}
}
最佳答案
问题出在这里:
public void initSounds(Context c) {
sp = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
fartList.add(sp.load(c, R.raw.fart1, 1));
fartList.add(sp.load(c, R.raw.fart2, 1));
fartList.add(sp.load(c, R.raw.fart3, 1));
fartList.add(sp.load(c, R.raw.fart4, 1));
fartList.add(sp.load(c, R.raw.fart5, 1));
fartList.add(sp.load(c, R.raw.fart6, 1));
}
它会一次加载所有声音,一旦播放,每个声音都会一次播放,因为每个声音都会被一次加载和播放。您可以尝试使用 MediaPlayer:
import android.content.Context;
import android.media.MediaPlayer;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class FartPlayer {
private Random fartSelector = new Random();
private List<Integer> songs;
Context c;
MediaPlayer mp;
//Initializes the SoundPool object and loads some fart mp3s into it
public void initSounds(Context c) {
this.c = c;
mp = new MediaPlayer();
songs = new ArrayList<Integer>();
songs.add(0, fart1);//starts at 0 so random isnt messed up
songs.add(1, fart2);
songs.add(2, fart3);
songs.add(3, fart4);
songs.add(4, fart5);
songs.add(5, fart6);
}
//Plays a random fart from the SoundPool when called
public void playFart(){
int song;
song = songs.get(fartSelector.nextInt(songs.size()));//selects a random number from 0-5(up to 6)
mp = MediaPlayer.create(c, song);//sets up the output
mp.start();//plays
System.out.println("farting");
}
}
不过,加载一个声音就可以解决:
Random r = new Random();
public void initSounds(Context c) {
this.c = c;
sp = new SoundPool(1, AudioManager.STREAM_MUSIC, 0);
songs = new ArrayList<Integer>();
songs.add(0, fart1);//starts at 0 so random isnt messed up
songs.add(1, fart2);
songs.add(2, fart3);
songs.add(3, fart4);
songs.add(4, fart5);
songs.add(5, fart6);
}
//Plays a random fart from the SoundPool when called
public void playFart(){
int song;
song = songs.get(fartSelector.nextInt(songs.size()));//selects a random number from 0-5(up to 6)
sp.load(c, song, 1);//if this doesnt work, comment this answer
sp.play(fartList.get(r.nextInt(fartList.size())));
System.out.println("farting");
}
关于Android 声音播放延迟到 while 循环结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28933521/
我做了一个项目,使用两个不同的textview进行触摸来播放两个音频。 这是一个文本 View 的简单代码 tv.setOnTouchListener(new OnTouchListener() {
我正在使用 pygame 模块在 python 中操作声音文件。它在交互式 python session 中工作正常,但相同的代码在 bash 中不会产生任何结果: 交互式Python $ sudo
请注意它只能是 JavaScript。请参阅下面我当前的 HTML。我需要像当前代码一样在页面之间旋转。但是,我需要能够在页面之间暂停/播放。
我有一个带有一堆音频链接的html。我正在尝试使所有音频链接都在单击时播放/暂停,并且尝试了here解决方案。这正是我所追求的,只是我现在不得不修改此功能以应用于代码中的所有音频链接(因为我不能为每个
在尝试进入我的代码中的下一个文件之前,我尝试随机播放.wav文件数毫秒。最好的方法是什么? 我目前有以下代码: #!/usr/bin/env python from random import ran
我有2个回调函数,一个播放音频,另一个停止音频。 function Play_Callback(hObject, eventdata, handles) global path; global pla
我有一个电台应用程序,并与carplay集成。在Carplay仪表板中,我仅看到专辑封面图像和停止按钮。我想在仪表板上显示播放/暂停和跳过按钮。如果您对该站有任何了解,可以帮我吗? 最佳答案 您需要使
我正在使用 ffmpeg 创建一个非常基本的视频播放器。库,我有所有的解码和重新编码,但我坚持音频视频同步。 我的问题是,电影有音频和视频流混合(交织),音频和视频以“突发”(多个音频包,然后是并列的
我不知道我在做什么错 $(document).ready(function() { var playing = false; var audioElement = document.
我正在尝试通过(input:file)Elem加载本地音频文件,当我将其作为对象传递给音频构造函数Audio()时,它不会加载/播放。 文件对象参数和方法: lastModified: 1586969
在 Qt 中创建播放/暂停按钮的最佳方法是什么?我应该创建一个操作并在单击时更改其图标,还是应该创建两个操作然后以某种方式在单击时隐藏一个操作?如何使用一个快捷键来激活这两个操作? (播放时暂停,暂停
我正在用 Python 和 SQLite 构建一个预订系统。 我有一个 Staff.db 和 Play.db (一对多关系)。这个想法是这样的:剧院的唯一工作人员可以通过指定开始日期和时间来选择何时添
我有一个服务于 AAC+ (HE v2) 的 Icecast 服务器。我在我的网页中使用 JPlayer 来播放内容。在没有 Flash Player 的 Chromium 中,它工作得很好。 对于支
当我运行我的方法时,我收到一个MediaException。我使用 playSound("src/assets/timeup.mp3"); 调用该方法。 private void playSound(
我有一项正在播放播客的服务。我希望该服务检测用户何时按下暂停或从他们的 BT radio 播放,以便我可以停止和启动它。对于我的生活,我无法弄清楚要向我的监听器添加什么过滤器(当我按下 BT 按钮时,
我对 Java 不是很在行,在研究网站上的音乐循环的简单播放/暂停按钮后,我得到了这段代码。它可以很好地离线测试,但在上传到 FTP 服务器后,它不会在任何浏览器中播放音频,我得到 SyntaxErr
我有一个使用 flickity carousel library 创建的视频轮播, 见过 here on codepen .我想要发生的是,当用户滑动轮播时,所选幻灯片停止播放,然后占据所选中间位置的
这是一个 JSFiddle: http://jsfiddle.net/8LczkwLz/19/ HTML: JS: var flashcardAudio = documen
我的问题是我无法将歌曲标题文本保持在 line-height: 800px;当用户播放或暂停播放器时。我设法在 :hover 上做到了。这似乎是一件非常棘手的事情,这真的是我第一次遇到 CSS 如此困
我还没有找到与我的完全一样的帖子,所以这就是问题所在。我正在制作一个 mp3 播放器,播放/暂停是两个单独的按钮。这是我的代码。 prevButton = document.getElementByI
我是一名优秀的程序员,十分优秀!