avi ビデオ ファイルを再生して jpanel に追加する必要があります。私ができることは、ビデオの最初から最後まで再生してから、プログラムを続行することだけです。シーク機能などは必要ありません。これを行う最も簡単な方法は何ですか?できれば xuggler を使わずに
質問する
14220 次
1 に答える
5
VLCJを使用して、VLC プレーヤーを swing アプリケーション内に簡単に埋め込むことができます。これが実際の例です:
public class PlayerPanel extends JPanel {
private File vlcInstallPath = new File("D:/vlc");
private EmbeddedMediaPlayer player;
public PlayerPanel() {
NativeLibrary.addSearchPath("libvlc", vlcInstallPath.getAbsolutePath());
EmbeddedMediaPlayerComponent videoCanvas = new EmbeddedMediaPlayerComponent();
this.setLayout(new BorderLayout());
this.add(videoCanvas, BorderLayout.CENTER);
this.player = videoCanvas.getMediaPlayer();
}
public void play(String media) {
player.prepareMedia(media);
player.parseMedia();
player.play();
}
}
class VideoPlayer extends JFrame {
public VideoPlayer() {
PlayerPanel player = new PlayerPanel();
this.setTitle("Swing Video Player");
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setLayout(new BorderLayout());
this.setSize(640, 480);
this.setLocationRelativeTo(null);
this.add(player, BorderLayout.CENTER);
this.validate();
this.setVisible(true);
player.play("http://174.132.240.162:8000/;stream.nsv");
}
public static void main(String[] args) {
new VideoPlayer();
}
}
于 2013-06-06T12:38:43.800 に答える