0

Jframe 内でビデオを再生したいのですが、それを再生する必要がある jpanel (jPanel1) にアタッチしています。それは言い続けます:

「ソースからの読み込み中にエラーが発生しました。」

そして、私のメディア URL は正しいと感じています。小さいMP4動画です。

これは私のコードです:

public void Player()  {

    try{
        //create a player to play the media specified in the URL


        Player mediaPlayer = Manager.createRealizedPlayer(new URL("C:\\Users\\Michael\\Downloads\\mike.jar"));

        Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, true);

        //get the components for the video and the playback controls
        Component video = mediaPlayer.getVisualComponent();
        Component controls = mediaPlayer.getControlPanelComponent();

        if ( video != null )
            jPanel1.add( video, BorderLayout.CENTER ); //add video component
        if ( controls != null )
            jPanel1.add( controls, BorderLayout.SOUTH ); //add controls

            mediaPlayer.start(); //start playing the media clip
    } //end try
    catch ( NoPlayerException noPlayerException ){
        JOptionPane.showMessageDialog(null, "No media player found");
    } //end catch
    catch ( CannotRealizeException cannotRealizeException ){
        JOptionPane.showMessageDialog(null, "Could not realize media player.");
    } //end catch
    catch ( IOException iOException ){
        JOptionPane.showMessageDialog(null, "Error reading from the source.");
    } //end catch
4

1 に答える 1

2
new URL("C:\\Users\\Michael\\Downloads\\mike.jar")

これは、ローカル ファイルを指す URL を作成する方法ではありません。使用する

new File(path).toURI().toURL()
于 2013-07-18T20:34:43.793 に答える