import javaioByteArrayInputStream;
import javaioByteArrayOutputStream;
import javaioFile;
import javaioInputStream;
import orgeclipseswtSWT;
import orgeclipseswtwidgets;
import orgeclipseswtevents;
import javaxsoundsampledAudioFileFormat;
import javaxsoundsampledAudioFormat;
import javaxsoundsampledAudioInputStream;
import javaxsoundsampledAudioSystem;
import javaxsoundsampledDataLine;
import javaxsoundsampledSourceDataLine;
import javaxsoundsampledTargetDataLine;
public class RecordPlay {
boolean stopCapture = false; // 控制录音标志
AudioFormat audioFormat; // 录音格式
// 读取数据:从TargetDataLine写入ByteArrayOutputStream录音
ByteArrayOutputStream byteArrayOutputStream;
int totaldatasize = 0;
TargetDataLine targetDataLine;
// 播放数据:从AudioInputStream写入SourceDataLine播放
AudioInputStream audioInputStream;
SourceDataLine sourceDataLine;
private Button captureBtn;
private Button stopBtn;
private Button playBtn;
private Button saveBtn;
private Label myLabel;
private Shell shell;
private Display display;
public RecordPlay() {
super();
display = new Display();
shell = new Shell(display);
shellsetSize(350, 150);
shellsetText("录音机程序");
//
myLabel = new Label(shell, SWTNONE);
myLabelsetBounds(38, 21, 100, 18);
myLabelsetText("录音机");
// 创建按钮
captureBtn = new Button(shell, SWTNONE);
captureBtnsetBounds(30, 61, 60, 18);
captureBtnsetText("录音");
captureBtnsetEnabled(true);
stopBtn = new Button(shell, SWTNONE);
stopBtnsetBounds(100, 61, 60, 18);
stopBtnsetText("停止");
stopBtnsetEnabled(false);
playBtn = new Button(shell, SWTNONE);
playBtnsetBounds(170, 61, 60, 18);
playBtnsetText("播放");
playBtnsetEnabled(false);
saveBtn = new Button(shell, SWTNONE);
saveBtnsetBounds(240, 61, 60, 18);
saveBtnsetText("保存");
saveBtnsetEnabled(false);
// 注册录音事件
captureBtnaddSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent event) {
captureBtnsetEnabled(false);
stopBtnsetEnabled(true);
playBtnsetEnabled(false);
saveBtnsetEnabled(false);
// 开始录音
capture();
}
public void widgetDefaultSelected(SelectionEvent event) {
// textsetText("No worries!");
}
});
// 注册停止事件
stopBtnaddSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent event) {
captureBtnsetEnabled(true);
stopBtnsetEnabled(false);
playBtnsetEnabled(true);
saveBtnsetEnabled(true);
// 停止录音
stop();
}
public void widgetDefaultSelected(SelectionEvent event) {
// textsetText("No worries!");
}
});
// 注册播放事件
playBtnaddSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent event) {
// 播放录音
play();
}
public void widgetDefaultSelected(SelectionEvent event) {
// textsetText("No worries!");
}
});
// 注册保存事件
saveBtnaddSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent event) {
// 保存录音
save();
}
public void widgetDefaultSelected(SelectionEvent event) {
// textsetText("No worries!");
}
});
}
public void start() {
shellopen();
while (!shellisDisposed()) {
if (!displayreadAndDispatch()) {
displaysleep();
}
}
}
public static void main(String[] args) {
RecordPlay label = new RecordPlay();
labelstart();
}
// (1)录音事件,保存到ByteArrayOutputStream中
private void capture() {
try {
// 打开录音
audioFormat = getAudioFormat();
DataLineInfo dataLineInfo = new DataLineInfo(
TargetDataLineclass, audioFormat);
targetDataLine = (TargetDataLine) AudioSystemgetLine(dataLineInfo);
targetDataLineopen(audioFormat);
targetDataLinestart();
// 创建独立线程进行录音
Thread captureThread = new Thread(new CaptureThread());
captureThreadstart();
} catch (Exception e) {
eprintStackTrace();
Systemexit(0);
}
}
// (2)播放ByteArrayOutputStream中的数据
private void play() {
try {
// 取得录音数据
byte audioData[] = byteArrayOutputStreamtoByteArray();
// 转换成输入流
InputStream byteArrayInputStream = new ByteArrayInputStream(
audioData);
AudioFormat audioFormat = getAudioFormat();
audioInputStream = new AudioInputStream(byteArrayInputStream,
audioFormat, audioDatalength / audioFormatgetFrameSize());
DataLineInfo dataLineInfo = new DataLineInfo(
SourceDataLineclass, audioFormat);
sourceDataLine = (SourceDataLine) AudioSystemgetLine(dataLineInfo);
sourceDataLineopen(audioFormat);
sourceDataLinestart();
// 创建独立线程进行播放
Thread playThread = new Thread(new PlayThread());
playThreadstart();
} catch (Exception e) {
eprintStackTrace();
Systemexit(0);
}
}
// (3)停止录音
public void stop() {
stopCapture = true;
}
// (4)保存文件
public void save() {
// 取得录音输入流
AudioFormat audioFormat = getAudioFormat();
byte audioData[] = byteArrayOutputStreamtoByteArray();
InputStream byteArrayInputStream = new ByteArrayInputStream(audioData);
audioInputStream = new AudioInputStream(byteArrayInputStream,
audioFormat, audioDatalength / audioFormatgetFrameSize());
// 写入文件
try {
File file = new File("d:/myjava/testwav");
AudioSystem
write(audioInputStream, AudioFileFormatTypeWAVE, file);
} catch (Exception e) {
eprintStackTrace();
}
}
// 取得AudioFormat
private AudioFormat getAudioFormat() {
float sampleRate = 160000F;
// 8000,11025,16000,22050,44100
int sampleSizeInBits = 16;
// 8,16
int channels = 1;
// 1,2
boolean signed = true;
// true,false
boolean bigEndian = false;
// true,false
return new AudioFormat(sampleRate, sampleSizeInBits, channels, signed,
bigEndian);
}
class PlayThread extends Thread {
byte tempBuffer[] = new byte[10000];
public void run() {
try {
int cnt;
// 读取数据到缓存数据
while ((cnt = audioInputStreamread(tempBuffer, 0,
tempBufferlength)) != -1) {
if (cnt > 0) {
// 写入缓存数据
sourceDataLinewrite(tempBuffer, 0, cnt);
}
}
// Block等待临时数据被输出为空
sourceDataLinedrain();
sourceDataLineclose();
} catch (Exception e) {
eprintStackTrace();
Systemexit(0);
}
}
}
class CaptureThread extends Thread {
// 临时数组
byte tempBuffer[] = new byte[10000];
public void run() {
byteArrayOutputStream = new ByteArrayOutputStream();
totaldatasize = 0;
stopCapture = false;
try {// 循环执行,直到按下停止录音按钮
while (!stopCapture) {
// 读取10000个数据
int cnt = targetDataLineread(tempBuffer, 0,
tempBufferlength);
if (cnt > 0) {
// 保存该数据
byteArrayOutputStreamwrite(tempBuffer, 0, cnt);
totaldatasize += cnt;
}
}
byteArrayOutputStreamclose();
} catch (Exception e) {
eprintStackTrace();
Systemexit(0);
}
}
}
}
录音助手。具体 *** 作步骤如下:
1、打开手机微信,点击发现然后点击最下面的小程序。
2、在搜索栏搜索“录音助手”。
3、进入首页,当点击录音转文字按钮时,软件自动跳转到录音程序,结束录音即可自动识别,录音时长不限。
4、当你点击:导入音频文件时,软件会有指导步骤,且也提示支持导入音频的格式。
如果您在使用uniapp小程序打包安卓版本时,发现音频录制过程中无法暂停,可能是因为以下原因:
1 数据类型错误:在录制音频时,可能会存在数据类型错误等问题导致无法暂停。建议检查相应的代码和参数设置,确保数据类型正确。
2 录音权限问题:在安卓系统中,需要授权应用程序才能访问麦克风等音频输入设备。如果您的应用程序没有获得相应的权限,可能会导致录制过程中无法暂停。可以在系统设置中检查应用程序的权限设置,确保应用程序具有音频录制权限。
3 代码逻辑问题:如果您的代码逻辑存在问题,也可能会导致音频录制过程中无法暂停。建议检查相应的代码逻辑,确保在录制音频时能够正确实现暂停功能。
如果仍然无法解决问题,建议您查阅uniapp和相关插件的官方文档,或联系uniapp的技术支持人员,获取更详细的解决方案和帮助。
pick一下最终效果,然后一步一步来。
先把界面效果做出来。
wxml
wxss
js赋值
这里我的录音按钮点击扩散效果用的是纯css实现,而上方progress是使用animation实现的。
题主是否想询问“pep英语录音显示小程序频率限制怎么办”?1、首先,在微信中找到小程序。2、其次,进入小程序界面,点击右上角的放大镜图标。3、最后,在小程序的搜索栏中输入pep英语录音,点击然后找到客服询问即可解决频率限制问题。
以上就是关于用java做一个可视化小程序,可以录音并予以保存。全部的内容,包括:用java做一个可视化小程序,可以录音并予以保存。、自已编辑单词且自已录音用什么小程序、uniapp小程序打包安卓音录音暂停不了等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)