使用DSMovie的Swing媒体播放器

时间:2012-08-08 14:10:59

标签: java swing

我使用DSMovie课程在我​​的Swing应用中播放媒体播放器文件。 我需要帮助来改变音量。

//play movie
DSMovie movie = new DSMovie(filename,DSFiltergraph.RENDER_NATIVE,this);

//stop movie
movie.stop();

由于

2 个答案:

答案 0 :(得分:1)

我从未使用过DSMovie,但经过约1分钟的互联网研究后,我发现了这一点:

setMasterVolume(float)

因此,请在开始使用之前阅读API文档

答案 1 :(得分:0)

好的,我找到了方法:

DSMovie movie = new DSMovie(filename,DSFiltergraph.RENDER_NATIVE,this); 
movie.setVolume(1);

//to raise the volume
movie.setVolume(movie.getVolume()+0.02);

//to lower the volume
movie.setVolume(movie.getVolume()-0.02);

感谢。