Java音视频播放器

这个Java程序创建了一个功能完善的音视频播放器,能够播放、暂停、快进、快退、切换曲目,支持播放列表和播放历史,并且具备打开文件、单曲循环和列表循环等功能。使用了VLCJ库进行媒体播放,并通过SwingWorker进行后台任务处理,实时更新播放进度。
摘要由CSDN通过智能技术生成

可以实现播放暂停,快进快退,下一曲,打开文件,不循环,单曲循环,列表循环,播放列表和播放历史等功能(可以播放视频)

/*主程序*/
 
package videoplayer;
 
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.io.File;
import java.util.Vector;

import javax.swing.DefaultListModel;
import javax.swing.JFileChooser;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JSlider;
import javax.swing.SwingWorker;
 
import com.sun.jna.Native;
import com.sun.jna.NativeLibrary;
import com.sun.jna.platform.win32.WinNT.SYSTEM_LOGICAL_PROCESSOR_INFORMATION;

import uk.co.caprica.vlcj.binding.LibVlc;
import uk.co.caprica.vlcj.player.embedded.DefaultAdaptiveRuntimeFullScreenStrategy;
import uk.co.caprica.vlcj.runtime.RuntimeUtil;
 
public class PlayerMain {
 
    static Window frame;
     static DefaultListModel dlm= new DefaultListModel();
     static DefaultListModel dlm1= new DefaultListModel();
    //private static final String NATIVE_LIBRARY_SEARCH_PATH = "D:\\Program Files\\VideoLAN\\VLC\\sdk\\lib";

    public static void main(String[] args) {
        VideoTime videoTime =new  VideoTime() ;
        
        NativeLibrary.addSearchPath(
        RuntimeUtil.getLibVlcLibraryName(), "D:\\\\Program Files\\\\VideoLAN\\\\VLC");    //导入的路径是vlc的安装路径
        Native.loadLibrary(RuntimeUtil.getLibVlcLibraryName(),LibVlc.class);
        EventQueue.invokeLater(new Runnable() {
            
            @Override
            public void run() {
                // TODO Auto-generated method stub
                try{
                    frame=new Window();
                    frame.setVisible(true);
                    dlm.addElement("F:\\迅雷下载\\大侦探皮卡丘.720p.1080p.HD中英双字\\大侦探皮卡丘.mp4");
                    dlm.addElement("F:\\CloudMusic\\梦飞船 - 不值得.flac");
                    dlm.addElement("F:\\CloudMusic\\Crazy Up!.mp3");
                    dlm.addElement("F:\\\\CloudMusic\\\\Right Now.mp3");
                    frame.getList().setModel(dlm);
                    new SwingWorker<String, Integer>() {
 
                        @Override
                        protected String doInBackground() throws Exception {
                            // TODO Auto-generated method stub
                            while (true) {    //获取视频播放进度并且按百分比显示
                                long total=frame.getMediaPlayer().getLength();
                                long curr=frame.getMediaPlayer().getTime();                                    
                                //System.out.println(total+" "+curr);                                                                  
                                videoTime.timeCalculate(total, curr);
                                String string1=videoTime.getMinitueCurrent() + ":" + videoTime.getSecondCurrent();
                                String string2=videoTime.getMinitueTotal() + ":" + videoTime.getSecondTotal();
                                frame.getCurrentLabel().setText(string1);
                                frame.getTotalLabel().setText(string2);                                
                                float percent=(float)curr/total;                            
                                publish((int)(percent*100));
                                Thread.sleep(200);
                                if(frame.c==2) {
                                    if (curr==-1&&total==-1) {
                                        frame.Next();
                                    }
                                }else if (frame.c==1) {
                                    if (curr==-1&&total==-1) {
                                        frame.OneCircu();
                                    }
                                    
                                }{
                                    
                                }
                                
                            }
                        }
                        
                        protected void process(java.util.List<Integer> chunks) {
                            for(int v:chunks){
                                frame.getProgressBar().setValue(v);
                            } 
                        }
                    }.execute();
                }catch(Exception e){
                    e.printStackTrace();
                }
            }
        });
    }
    
    //打开文件    
    public static void openVideo() {
        JFileChooser chooser=new JFileChooser();
        int v=chooser.showOpenDialog(null);        
        if(v==JFileChooser.APPROVE_OPTION){
            File file=chooser.getSelectedFile();
            String playname=file.getName();
             dlm.addElement(file.getAbsoluteFile());
             frame.getList().setModel(dlm);
            frame.getMediaPlayer().pla

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值