Re: [android-developers] Rtsp Http Streaming

2011-05-30 Thread Robert Slama
hmmm

i try open your url rtsp://strm-3.tr.medianova.tv/rkraltv/rkraltv
with realplayer and with vlc and that stream is not available. Try u
open stream in some player (on pc) before u test it on android?

r^

On 26 May 2011 08:37, Filiz Gökçe sonsuzlu...@gmail.com wrote:
 Hi,
 I try to make live stream on android,
 I try lots of ways, but none of them doesnt work.
 Could you help me ?


 This is example of rtsp;
 mMediaPlayer = new MediaPlayer();
 mMediaPlayer.setDataSource(KralStream.getTvStreamUrl().toString());
 mMediaPlayer.setDisplay(holder);
 mMediaPlayer.prepareAsync();
 mMediaPlayer.setOnBufferingUpdateListener(this);
 mMediaPlayer.setOnCompletionListener(this);
 mMediaPlayer.setOnPreparedListener(this);
 mMediaPlayer.setOnVideoSizeChangedListener(this);
 mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
 mMediaPlayer.setLooping(true);

 Exeption :05-26 10:22:46.186: ERROR/MediaPlayerService(10157):  create
 PVPlayer
 05-26 10:23:06.382: ERROR/PlayerDriver(10157): Command PLAYER_INIT completed
 with an error or info -1
 05-26 10:23:06.382: ERROR/MediaPlayer(23800): error (1, -1)
 05-26 10:23:06.382: ERROR/MediaPlayer(23800): Error (1,-1)

 rtsp;
 VideoView videoView=(VideoView)findViewById(R.id.videoView1);
 Uri uri =
 Uri.parse(http://www.kraltv.com.tr/m/app_streaming_url.asp?t=5g=DA245844BC6D4F9A8EFDD8F14D41676F;);
 videoView.setVideoURI(uri);
 videoView.start();

 Gives message;Sorry, this video connot ve played.


 rtsp;
     mPreview = (SurfaceView) findViewById(R.id.surface);
     holder = mPreview.getHolder();
     holder.addCallback(this);
     holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
     extras = getIntent().getExtras();
 public void play() {

         try {
             Uri video = KralStream.getTvStreamUrl();
             Toast.makeText(this, video.toString(),
 Toast.LENGTH_SHORT).show();
              mMediaPlayer = new MediaPlayer();
      mMediaPlayer.setDataSource(path);
      mMediaPlayer.setDisplay(holder);
      mMediaPlayer.prepare();
      mMediaPlayer.setOnBufferingUpdateListener(this);
      mMediaPlayer.setOnCompletionListener(this);
      mMediaPlayer.setOnPreparedListener(this);
      mMediaPlayer.setOnVideoSizeChangedListener(this);
      mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
              } catch (Exception e) {
             Log.e(TAG, error:  + e.getMessage(), e);
             }
     }

 Exeption ;05-26 10:36:57.589: ERROR/MediaPlayerService(10157):  create
 PVPlayer
 05-26 10:37:20.542: ERROR/PlayerDriver(10157): Command PLAYER_INIT completed
 with an error or info -1
 05-26 10:37:20.542: ERROR/MediaPlayer(24240): error (1, -1)
 05-26 10:37:20.565: WARN/PlayerDriver(10157): PVMFInfoErrorHandlingComplete
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): error: Prepare failed.:
 status=0x1
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): java.io.IOException:
 Prepare failed.: status=0x1
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.media.MediaPlayer.prepare(Native Method)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 com.giantrabbit.nagare.KralTvNow.play(KralTvNow.java:162)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 com.giantrabbit.nagare.KralTvNow.surfaceCreated(KralTvNow.java:215)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.SurfaceView.updateWindow(SurfaceView.java:536)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.SurfaceView.dispatchDraw(SurfaceView.java:339)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.ViewGroup.drawChild(ViewGroup.java:1638)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.ViewGroup.drawChild(ViewGroup.java:1638)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.View.draw(View.java:6796)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.widget.FrameLayout.draw(FrameLayout.java:352)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.ViewGroup.drawChild(ViewGroup.java:1640)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.View.draw(View.java:6796)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.widget.FrameLayout.draw(FrameLayout.java:352)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 com.android.internal.policy.impl.PhoneWindow$DecorView.draw(PhoneWindow.java:1894)
 05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
 android.view.ViewRoot.draw(ViewRoot.java:1407)
 05-26 10:37:20.682: 

Re: [android-developers] Rtsp Http Streaming

2011-05-30 Thread Filiz Gökçe
Now, the streaming address works.

Filiz Gökçe




On 26 May 2011 19:11, Robert Slama robsl...@gmail.com wrote:

 hmmm

 i try open your url rtsp://strm-3.tr.medianova.tv/rkraltv/rkraltv
 with realplayer and with vlc and that stream is not available. Try u
 open stream in some player (on pc) before u test it on android?

 r^

 On 26 May 2011 08:37, Filiz Gökçe sonsuzlu...@gmail.com wrote:
  Hi,
  I try to make live stream on android,
  I try lots of ways, but none of them doesnt work.
  Could you help me ?
 
 
  This is example of rtsp;
  mMediaPlayer = new MediaPlayer();
  mMediaPlayer.setDataSource(KralStream.getTvStreamUrl().toString());
  mMediaPlayer.setDisplay(holder);
  mMediaPlayer.prepareAsync();
  mMediaPlayer.setOnBufferingUpdateListener(this);
  mMediaPlayer.setOnCompletionListener(this);
  mMediaPlayer.setOnPreparedListener(this);
  mMediaPlayer.setOnVideoSizeChangedListener(this);
  mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
  mMediaPlayer.setLooping(true);
 
  Exeption :05-26 10:22:46.186: ERROR/MediaPlayerService(10157):  create
  PVPlayer
  05-26 10:23:06.382: ERROR/PlayerDriver(10157): Command PLAYER_INIT
 completed
  with an error or info -1
  05-26 10:23:06.382: ERROR/MediaPlayer(23800): error (1, -1)
  05-26 10:23:06.382: ERROR/MediaPlayer(23800): Error (1,-1)
 
  rtsp;
  VideoView videoView=(VideoView)findViewById(R.id.videoView1);
  Uri uri =
  Uri.parse(
 http://www.kraltv.com.tr/m/app_streaming_url.asp?t=5g=DA245844BC6D4F9A8EFDD8F14D41676F
 );
  videoView.setVideoURI(uri);
  videoView.start();
 
  Gives message;Sorry, this video connot ve played.
 
 
  rtsp;
  mPreview = (SurfaceView) findViewById(R.id.surface);
  holder = mPreview.getHolder();
  holder.addCallback(this);
  holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
  extras = getIntent().getExtras();
  public void play() {
 
  try {
  Uri video = KralStream.getTvStreamUrl();
  Toast.makeText(this, video.toString(),
  Toast.LENGTH_SHORT).show();
   mMediaPlayer = new MediaPlayer();
   mMediaPlayer.setDataSource(path);
   mMediaPlayer.setDisplay(holder);
   mMediaPlayer.prepare();
   mMediaPlayer.setOnBufferingUpdateListener(this);
   mMediaPlayer.setOnCompletionListener(this);
   mMediaPlayer.setOnPreparedListener(this);
   mMediaPlayer.setOnVideoSizeChangedListener(this);
   mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
   } catch (Exception e) {
  Log.e(TAG, error:  + e.getMessage(), e);
  }
  }
 
  Exeption ;05-26 10:36:57.589: ERROR/MediaPlayerService(10157):  create
  PVPlayer
  05-26 10:37:20.542: ERROR/PlayerDriver(10157): Command PLAYER_INIT
 completed
  with an error or info -1
  05-26 10:37:20.542: ERROR/MediaPlayer(24240): error (1, -1)
  05-26 10:37:20.565: WARN/PlayerDriver(10157):
 PVMFInfoErrorHandlingComplete
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): error: Prepare failed.:
  status=0x1
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): java.io.IOException:
  Prepare failed.: status=0x1
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.media.MediaPlayer.prepare(Native Method)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  com.giantrabbit.nagare.KralTvNow.play(KralTvNow.java:162)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  com.giantrabbit.nagare.KralTvNow.surfaceCreated(KralTvNow.java:215)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.SurfaceView.updateWindow(SurfaceView.java:536)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.SurfaceView.dispatchDraw(SurfaceView.java:339)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.ViewGroup.drawChild(ViewGroup.java:1638)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.ViewGroup.drawChild(ViewGroup.java:1638)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.View.draw(View.java:6796)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.widget.FrameLayout.draw(FrameLayout.java:352)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.ViewGroup.drawChild(ViewGroup.java:1640)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.ViewGroup.dispatchDraw(ViewGroup.java:1367)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.view.View.draw(View.java:6796)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): at
  android.widget.FrameLayout.draw(FrameLayout.java:352)
  05-26 10:37:20.682: ERROR/MediaPlayerDemo(24240): 

Re: [android-developers] Rtsp Http Streaming

2011-05-27 Thread Filiz Gökçe
I can upen this file in vlc player. But same problem still continue
PVMFInfoErrorHandlingComplete error.
I also tryed android 1.6 , anroid 2.1 and android 2.3 devices.

Filiz Gökçe




On 26 May 2011 18:27, dan raaka danra...@gmail.com wrote:

 If this is a generic issue - please file a bug under b.android.com

 -Dan



 On Thu, May 26, 2011 at 1:55 AM, Hitendrasinh Gohil 
 hitendra.virtuei...@gmail.com wrote:

 hi,

 then just try to log the url that ur applying to datasource.and first
 check it out with vlc player that is it working or not?
 because there is an error with initialization.

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread Hitendrasinh Gohil
hi,

I was also stucked with rtsp audio streaming.i was also getting the same
error with emultor like u.

Exeption :05-26 10:22:46.186: ERROR/MediaPlayerService(
10157):  create PVPlayer
05-26 10:23:06.382: ERROR/PlayerDriver(10157): Command PLAYER_INIT completed
with an error or info -1
05-26 10:23:06.382: ERROR/MediaPlayer(23800): error (1, -1)
05-26 10:23:06.382: ERROR/MediaPlayer(23800): Error (1,-1)
.

and

Buffering % =0(not exact string but log showing buffer 0).

But when i checked it with device it works fine.

so just check it with device.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread Filiz Gökçe
I always try on device,
my device is Samsung Galaxy S -2.1

Its about same of devices ?

Filiz Gökçe




On 26 May 2011 10:48, Hitendrasinh Gohil hitendra.virtuei...@gmail.comwrote:

 hi,

 I was also stucked with rtsp audio streaming.i was also getting the same
 error with emultor like u.


 Exeption :05-26 10:22:46.186: ERROR/MediaPlayerService(
 10157):  create PVPlayer
 05-26 10:23:06.382: ERROR/PlayerDriver(10157): Command PLAYER_INIT
 completed with an error or info -1
 05-26 10:23:06.382: ERROR/MediaPlayer(23800): error (1, -1)
 05-26 10:23:06.382: ERROR/MediaPlayer(23800): Error (1,-1)
 .

 and

 Buffering % =0(not exact string but log showing buffer 0).

 But when i checked it with device it works fine.

 so just check it with device.

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread Hitendrasinh Gohil
hi,

then just try to log the url that ur applying to datasource.and first check
it out with vlc player that is it working or not?
because there is an error with initialization.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread dan raaka
If this is a generic issue - please file a bug under b.android.com

-Dan


On Thu, May 26, 2011 at 1:55 AM, Hitendrasinh Gohil 
hitendra.virtuei...@gmail.com wrote:

 hi,

 then just try to log the url that ur applying to datasource.and first check
 it out with vlc player that is it working or not?
 because there is an error with initialization.

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en