Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a VideoView and I set URI of youtube video and set android.permission.INTERNET but I got this message when I want to play the video .. "you can't play the video"

this code piece for video player

 mVideoView = (VideoView) findViewById(R.id.skillVideo);
            mVideoView.setVideoURI(Uri.parse("http://www.youtube.com/watch?v=1_pryg5HFYY"));
        mVideoView.setMediaController(new MediaController(this));
        mVideoView.requestFocus();

and this is the VideoView in xml layout file :

....

<VideoView  android:id="@+id/skillVideo" 
            android:layout_width="wrap_content"
            android:layout_height="200dp"></VideoView>



....
share|improve this question

2 Answers

up vote 5 down vote accepted

have you checked these

How to play YouTube video in my Android application?

Streaming Youtube Videos

share|improve this answer
what is the wrong in what I have posted ? Can I play it in the emulator ? – Adham Jul 2 '11 at 11:58
yes i guess but still if u hav problem check the ones which i gave and also try googling – Rosalie Jul 2 '11 at 12:01

In this code here is what I have done, I removed the MediaControllers from the UI and ran my youtube video stream threw rtsp and in my layout there is a basic VideoView with my needed button. you can see this in real action here on the Android.

Markethttps://market.android.com/details?id=com.sbrecords&feature=search_result#?t=W251bGwsMSwyLDEsImNvbS5zYnJlY29yZHMiXQ.. video_url = "rtsp://v7.cache3.c.youtube.com/CjgLENy73wIaLwkeUryQ8ZkCqRMYJCAkFEIJbXYtZ29vZ2xlSARSB3Jlc3VsdHNg6KnB9MbH8sVODA==/0/0/0/video.3gp";

    try {
            final VideoView videoView =(VideoView)findViewById(R.id.videoView1);
      //1   //mediaController = new MediaController(Splashscreen.this);
      //2   //mediaController.setAnchorView(videoView);
            // Set video link (mp4 format )
            Uri video = Uri.parse(video_url);
            //videoView.setMediaController(mediaController);
            videoView.setVideoURI(video);
            videoView.setOnPreparedListener(new OnPreparedListener() {
                public void onPrepared(MediaPlayer mp) {
                    progressDialog.dismiss();
                   videoView.start();
                }
            });

         }catch(Exception e){
              progressDialog.dismiss();
             System.out.println("Video Play Error :"+e.getMessage());
         }
// Thread to waste time while displaying splash screen
Thread SplashThread = new Thread() {
    @Override
    public void run() {
        try {
            synchronized (this) {
                // Wait given period of time
                wait(7450000);
            }
        } catch (InterruptedException ex) {
        }

        finish();
share|improve this answer
And video format is it on MP4 or 3gp please? – androniennn Mar 15 '12 at 22:14
it is 3gp ... here is a video link showing how to get the rtsp link youtube.com/watch?v=ZA7Kkhv30WA – KaSiris Apr 10 '12 at 4:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.