[android-developers] Re: How To Start a RTSP connection

2009-01-03 Thread Paranoia

exactly,opencore dose not support mp3 rtp playback, whatever it's
rfc3119 or rfc2250.

On Dec 20 2008, 3:37 am, kamil kamit...@gmail.com wrote:
 Hi,
 I've encountered the very same error as described above. I'm using VLC
 as MP3/RTSP streaming server, and this looks exactly like Android
 didn't like something he got in DESCRIBE SDP response.

 SDP looks like:

 v=0
 o=- 2819777490 2 IN IP4 192.168.100.108
 c=IN IP4 0.0.0.0
 t=0 0
 a=tool:vlc 0.9.8a
 a=range:npt=0-176.091
 m=audio 0 RTP/AVP 14
 a=rtpmap:14 MPA/9
 a=control:rtsp://192.168.100.108:5554/Test/trackID=0

 VLC is streaming single MP3 file.

 Debug shows MediaPlayer's error (-1,0) and I haven't manage to find
 any explanation of this message.

 Does anyone have any idea?

 Thanks in advance
 Kamil
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2009-01-03 Thread Ravi Yenduri

http://code.google.com/p/android/issues/detail?id=1513

On Jan 3, 6:33 pm, Paranoia zheny...@gmail.com wrote:
 exactly,opencore dose not support mp3 rtp playback, whatever it's
 rfc3119 or rfc2250.

 On Dec 20 2008, 3:37 am, kamil kamit...@gmail.com wrote:

  Hi,
  I've encountered the very same error as described above. I'm using VLC
  as MP3/RTSP streaming server, and this looks exactly like Android
  didn't like something he got in DESCRIBE SDP response.

  SDP looks like:

  v=0
  o=- 2819777490 2 IN IP4 192.168.100.108
  c=IN IP4 0.0.0.0
  t=0 0
  a=tool:vlc 0.9.8a
  a=range:npt=0-176.091
  m=audio 0 RTP/AVP 14
  a=rtpmap:14 MPA/9
  a=control:rtsp://192.168.100.108:5554/Test/trackID=0

  VLC is streaming single MP3 file.

  Debug shows MediaPlayer's error (-1,0) and I haven't manage to find
  any explanation of this message.

  Does anyone have any idea?

  Thanks in advance
  Kamil


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2009-01-03 Thread Paranoia

thanks. you mean pv will not support mp3 rtp in opencore. right? or it
is some value-add feature?
i heard that it's not opencore in G1, but core.

On Jan 3, 9:45 pm, Ravi Yenduri yend...@pv.com wrote:
 http://code.google.com/p/android/issues/detail?id=1513

 On Jan 3, 6:33 pm, Paranoia zheny...@gmail.com wrote:

  exactly,opencore dose not support mp3 rtp playback, whatever it's
  rfc3119 or rfc2250.

  On Dec 20 2008, 3:37 am, kamil kamit...@gmail.com wrote:

   Hi,
   I've encountered the very same error as described above. I'm using VLC
   as MP3/RTSP streaming server, and this looks exactly like Android
   didn't like something he got in DESCRIBE SDP response.

   SDP looks like:

   v=0
   o=- 2819777490 2 IN IP4 192.168.100.108
   c=IN IP4 0.0.0.0
   t=0 0
   a=tool:vlc 0.9.8a
   a=range:npt=0-176.091
   m=audio 0 RTP/AVP 14
   a=rtpmap:14 MPA/9
   a=control:rtsp://192.168.100.108:5554/Test/trackID=0

   VLC is streaming single MP3 file.

   Debug shows MediaPlayer's error (-1,0) and I haven't manage to find
   any explanation of this message.

   Does anyone have any idea?

   Thanks in advance
   Kamil
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2009-01-02 Thread Jason

According to this thread: 
http://groups.google.com/group/android-developers/browse_thread/thread/a68113ee42f62353
there are issues streaming with the emulator, so you may have to test
on a G1 device.

Also, I've been able to play back the video RTSP streams from
http://www.americafree.tv/

For example - this works on my G1:

private VideoView mVideoView;
...
mVideoView = (VideoView) findViewById(R.id.MainVideoView);
mVideoView.setVideoURI(Uri.parse(rtsp://video2.americafree.tv/
AFTVHorrorH26496.sdp));
mVideoView.start();

You could probably do the same thing with the MediaPlayer class, but
it was easier for me to use a VideoView since I was playing back
video.

-Jason



On Dec 24 2008, 11:30 pm, lucky wjj...@gmail.com wrote:
 Kamil,

 Do you do such RTSP streaming test on emulator or G1 phone?
 Or is it possible to test it on emulator?

 BRs
 wjjsun

 On Dec 20, 9:14 pm, kamil kamit...@gmail.com wrote:

  Hi,
  maybe someone could post here URL of someRTSPstream which is known
  to work with G1?
  It would really help a lot in finding out why SDP answer is being
  rejected.

  I believe there must be at least one person which has been testing
  Android'sRTSPstack ;) Or maybe I'm the only one who leaves testing
  to the customer ;D

  thanks
  Kamil
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-24 Thread lucky

Kamil,

Do you do such RTSP streaming test on emulator or G1 phone?
Or is it possible to test it on emulator?

BRs
wjjsun

On Dec 20, 9:14 pm, kamil kamit...@gmail.com wrote:
 Hi,
 maybe someone could post here URL of someRTSPstream which is known
 to work with G1?
 It would really help a lot in finding out why SDP answer is being
 rejected.

 I believe there must be at least one person which has been testing
 Android'sRTSPstack ;) Or maybe I'm the only one who leaves testing
 to the customer ;D

 thanks
 Kamil
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-20 Thread kamil

Hi,
maybe someone could post here URL of some RTSP stream which is known
to work with G1?
It would really help a lot in finding out why SDP answer is being
rejected.

I believe there must be at least one person which has been testing
Android's RTSP stack ;) Or maybe I'm the only one who leaves testing
to the customer ;D

thanks
Kamil
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-19 Thread kamil

Hi,
I've encountered the very same error as described above. I'm using VLC
as MP3/RTSP streaming server, and this looks exactly like Android
didn't like something he got in DESCRIBE SDP response.

SDP looks like:

v=0
o=- 2819777490 2 IN IP4 192.168.100.108
c=IN IP4 0.0.0.0
t=0 0
a=tool:vlc 0.9.8a
a=range:npt=0-176.091
m=audio 0 RTP/AVP 14
a=rtpmap:14 MPA/9
a=control:rtsp://192.168.100.108:5554/Test/trackID=0

VLC is streaming single MP3 file.

Debug shows MediaPlayer's error (-1,0) and I haven't manage to find
any explanation of this message.

Does anyone have any idea?

Thanks in advance
Kamil
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-19 Thread krzysiek

Hi,
I have the same problem. I'm streaming media with VLC (it uses
live555) and the log is practically the same. The error code which i
get in the onErrorListner is -1, extra code is 0.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-19 Thread krzysiek

Hi,
Exactly the same thing is happening with my application. I use VLC to
stream the media(also uses Live555), the logs are the same. The error
code i get from onErrorListner is -1, extra code is 0.

Regards,
Krzysiek

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-18 Thread Jona

Hi Dave,
I have tried opening the link using the Live555 Media Server to
broadcast the mp3 track.  This broadcast is accessible anywere on the
internet and as well my local network.  I tried accessing via my
wireless connection and using WireShark to record communication and I
could see the first two messages from the MediaPlayer.  OPTIONS, and
DESCRIBE.

My server replied back but a SETUP message was never returned any
ideas? Here is my log.

C-S:
OPTIONS rtsp://76.117.125.33:554/one.mp3 RTSP/1.0
CSeq: 0
User-Agent: PVCore/05.02.00.00 PVPlayer/6.18 (Linux; Android; NJ)
ClientChallenge: 9e26d33f2984236010ef6253fb1887f7
PlayerStarttime: [28/03/2003:22:50:23 00:00]
CompanyID: KnKV4M4I/B2FjJ1TToLycw==
GUID: ----

C-S:
DESCRIBE rtsp://76.117.125.33:554/one.mp3 RTSP/1.0
CSeq: 1
User-Agent: PVCore/05.02.00.00 PVPlayer/6.18 (Linux; Android; NJ)
Accept: application/sdp
Accept-Encoding:

S-C:
RTSP/1.0 200 OK
CSeq: 0
Date: Mon, Dec 08 2008 01:09:10 GMT
Public: OPTIONS, DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE

S-C:
RTSP/1.0 200 OK
CSeq: 1
Date: Mon, Dec 08 2008 01:09:10 GMT
Content-Base: rtsp://192.168.0.101/one.mp3/
Content-Type: application/sdp
Content-Length: 377

v=0
o=- 520052821747 1 IN IP4 192.168.0.101
s=MPEG-1 or 2 Audio, streamed by the LIVE555 Media Server
i=one.mp3
t=0 0
a=tool:LIVE555 Streaming Media v2008.02.08
a=type:broadcast
a=control:*
a=range:npt=0-194.374
a=x-qt-text-nam:MPEG-1 or 2 Audio, streamed by the LIVE555 Media
Server
a=x-qt-text-inf:one.mp3
m=audio 0 RTP/AVP 14
c=IN IP4 0.0.0.0
a=control:track1

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-18 Thread Dave Sparks

I can only guess that the RTSP client in OpenCore didn't like
something it found the DESCRIBE response. I'm not sure that it can
handle broadcast mode. Maybe someone from PV will be able to provide
some insight.

Did you get an error message back from the MediaPlayer through
onErrorListener?

On Dec 18, 6:35 am, Jona medicalsou...@hotmail.com wrote:
 Hi Dave,
 I have tried opening the link using the Live555 Media Server to
 broadcast the mp3 track.  This broadcast is accessible anywere on the
 internet and as well my local network.  I tried accessing via my
 wireless connection and using WireShark to record communication and I
 could see the first two messages from the MediaPlayer.  OPTIONS, and
 DESCRIBE.

 My server replied back but a SETUP message was never returned any
 ideas? Here is my log.

 C-S:
 OPTIONS rtsp://76.117.125.33:554/one.mp3 RTSP/1.0
 CSeq: 0
 User-Agent: PVCore/05.02.00.00 PVPlayer/6.18 (Linux; Android; NJ)
 ClientChallenge: 9e26d33f2984236010ef6253fb1887f7
 PlayerStarttime: [28/03/2003:22:50:23 00:00]
 CompanyID: KnKV4M4I/B2FjJ1TToLycw==
 GUID: ----

 C-S:
 DESCRIBE rtsp://76.117.125.33:554/one.mp3 RTSP/1.0
 CSeq: 1
 User-Agent: PVCore/05.02.00.00 PVPlayer/6.18 (Linux; Android; NJ)
 Accept: application/sdp
 Accept-Encoding:

 S-C:
 RTSP/1.0 200 OK
 CSeq: 0
 Date: Mon, Dec 08 2008 01:09:10 GMT
 Public: OPTIONS, DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE

 S-C:
 RTSP/1.0 200 OK
 CSeq: 1
 Date: Mon, Dec 08 2008 01:09:10 GMT
 Content-Base: rtsp://192.168.0.101/one.mp3/
 Content-Type: application/sdp
 Content-Length: 377

 v=0
 o=- 520052821747 1 IN IP4 192.168.0.101
 s=MPEG-1 or 2 Audio, streamed by the LIVE555 Media Server
 i=one.mp3
 t=0 0
 a=tool:LIVE555 Streaming Media v2008.02.08
 a=type:broadcast
 a=control:*
 a=range:npt=0-194.374
 a=x-qt-text-nam:MPEG-1 or 2 Audio, streamed by the LIVE555 Media
 Server
 a=x-qt-text-inf:one.mp3
 m=audio 0 RTP/AVP 14
 c=IN IP4 0.0.0.0
 a=control:track1
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Re: How To Start a RTSP connection

2008-12-10 Thread Dave Sparks

MediaPlayer m = new MediaPlayer();

m.setDataSource(rtsp://rtsp.yourserver.com/stream.mp3);
m.prepare();
m.start();

You probably want to call the prepare() statement from something other
than your UI thread, because it may take awhile. Alternatively, you
can call prepareAsync() and call start() from the onPreparedListener.

On Dec 9, 12:42 pm, Jona [EMAIL PROTECTED] wrote:
 Could someone help me figure out how to initialize the MediaPlayer to
 play an RTSP link?  The link is only audio there is no video... would
 this matter?

 Thanksin Advance!!!

 Jona
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---