Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Playing different youtube videos using Youtube Player API

I´m using the Youtube Player API for Android to play videos selecting one of these in a listview (videos are previously got parsing json etc etc). The problem comes when I can only play the first video of the listview that I select, cause the player view doesnt change when I do click in a different element of the listView. This is the important code:

 lista.setOnItemClickListener(new OnItemClickListener(){

            @Override
            public void onItemClick(AdapterView<?> pariente, View view, 
                    int posicion, long id) {

                Video chosen = (Video)pariente.getItemAtPosition(posicion); 
                String urlVideo = chosen.getUrl();
                String aux = getYoutubeVideoId(urlVideo);
                URL_VIDEO = aux;

                youTubeView.initialize(KEY_DEVELOPER, new YouTubePlayer.OnInitializedListener() {

                    @Override
                    public void onInitializationFailure(Provider arg0,
                            YouTubeInitializationResult arg1) {
                        // TODO Auto-generated method stub
                        Log.d("DEPURANDO: ERROR AL VISUALIZAR", URL_VIDEO);

                    }

                    @Override
                    public void onInitializationSuccess(Provider arg0,
                            YouTubePlayer player, boolean wasRestored) {
                        // TODO Auto-generated method stub
                        if(!wasRestored){       
                            Log.d("YOUTUBE", "URL: " + URL_VIDEO);
                            player.cueVideo(URL_VIDEO);
                        }
                    }
                });
            }

I understand the problem comes because the player can't be initialized twice, so the execution only enter once in OnInitializationSucess (I tested) and therefore only plays the first video. how to solve this problem?

like image 656
Rafag Avatar asked Sep 15 '25 01:09

Rafag


2 Answers

You just need to initialize once, and store the player in your class

@Override
public void onInitializationSuccess(Provider arg0, YouTubePlayer player, boolean wasRestored) {
     if(!wasRestored){       
         mPlayer = player;
     }
}

After that, you could play any Youtube URL on your mPlayer by calling the function.

public void playVideo(String url) {
     if( mPlayer != null ) {
          mPlayer.cueVideo(url);
     }
}
like image 52
Elye Avatar answered Sep 17 '25 15:09

Elye


Check the last version of the YouTube API Samples

YouTube API Samples

I think this sample can be useful to you:

youtube-api-samples

like image 31
Matias Molinas Avatar answered Sep 17 '25 15:09

Matias Molinas