糖尿病康复,内容丰富有趣,生活中的好帮手!
糖尿病康复 > 小黄人变声专家 把自己声音变成小黄人的软件 小黄人快跑

小黄人变声专家 把自己声音变成小黄人的软件 小黄人快跑

时间:2018-11-09 20:55:39

相关推荐

小黄人变声专家 把自己声音变成小黄人的软件 小黄人快跑

小黄人变声专家软件

下载(音频变调变速器-小黄人软件.zip)免费 链接: /s/1gd2Mzvl 密码: 5nzg

自行解压,双击wuxia.exe运行

1将音频文件导入,支持wav,mp3和wma。

2要将“保持音色”前的勾去掉

3变调,调整为“升6个半音”或者是“升7个半音”,试听一下

4导出

小黄人软件--程序开发 定制专家

代码为转载,与本主题无关

package SoundTest; import java.awt.*; import java.awt.event.*; import java.applet.*; import javax.swing.*; import .*; public class test extends JApplet { boolean isStandalone = false; String sound; JButton jButtonPlay = new JButton(); JButton jButtonLoop = new JButton(); JButton jButtonStop = new JButton(); JLabel jLabel1 = new JLabel(); AudioClip clip; //Get a parameter value public String getParameter(String key, String def) { return isStandalone ? System.getProperty(key, def) : (getParameter(key) != null ? getParameter(key) : def); } //Construct the applet public test() { } //Initialize the applet public void init() { try { jbInit(); } catch(Exception e) { e.printStackTrace(); } } //Component initialization private void jbInit() throws Exception { jButtonPlay.setText("Play"); jButtonPlay.setBounds(new Rectangle(50, 85, 80, 40)); jButtonPlay.addMouseListener(new java.awt.event.MouseAdapter() { public void mouseClicked(MouseEvent e) { jButtonPlay_mouseClicked(e); } }); this.setSize(new Dimension(400,200)); this.getContentPane().setLayout(null); jButtonLoop.setText("Loop"); jButtonLoop.setBounds(new Rectangle(150, 85, 80, 40)); jButtonLoop.addMouseListener(new java.awt.event.MouseAdapter() { public void mouseClicked(MouseEvent e) { jButtonLoop_mouseClicked(e); } }); jButtonStop.setText("Stop"); jButtonStop.setBounds(new Rectangle(250, 85, 80, 40)); jButtonStop.addMouseListener(new java.awt.event.MouseAdapter() { public void mouseClicked(MouseEvent e) { jButtonStop_mouseClicked(e); } }); jLabel1.setText("Sound Test Demo"); jLabel1.setBounds(new Rectangle(109, 28, 186, 28)); this.getContentPane().add(jButtonPlay, null); this.getContentPane().add(jButtonStop, null); this.getContentPane().add(jButtonLoop, null); this.getContentPane().add(jLabel1, null); try { sound = this.getParameter("clip", "sound.AU"); } catch (Exce ption e) { e.printStackTrace(); } if(sound!=null){ try{ clip=JApplet.newAudioClip (new URL(getCodeBase(),sound)); } catch(MalformedURLException e){ System.out.println ("Bad URL"); } } } //Get Applet information public String getAppletInfo() { return "Applet Information"; } //Get parameter info public String[][] getParameterInfo() { String[][] pinfo = { {"clip", "String", "sound.AU"}, }; return pinfo; } void jButtonPlay_mouseClicked(MouseEvent e) { clip.play(); } void jButtonLoop_mouseClicked(MouseEvent e) { clip.loop(); } void jButtonStop_mouseClicked(MouseEvent e) { clip.stop(); } }

如果觉得《小黄人变声专家 把自己声音变成小黄人的软件 小黄人快跑》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。