Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 05-12-2011, 02:42 AM
BBARGOUTI BBARGOUTI is offline
Junior Member
 
Join Date: Apr 2011
Posts: 13
BBARGOUTI is on a distinguished road
Default

www.arab-channels.tv: I need help desperatly with ASX stream


I have been trying to get the source URL for this streaming channels but I know I will need the host and link of the video to make it work...I have tried all I can but no go...please, any some help. This is what I get when I run wireshark:
PLAY rtsp://88.191.61.100/channel03 RTSP/1.0

X-Playlist-Seek-Id: 7128

Referer: http://www.arab-channels.tv/asx/orangetv.asx

User-Agent: WMPlayer/11.0.6002.18005 guid/3300AD50-2C39-46C0-AE0A-6D089B58F311

Accept-Charset: UTF-8, *;q=0.1

X-Accept-Authentication: Negotiate, NTLM, Digest, Basic

Accept-Language: en-us, *;q=0.1

Session: 5196489320134433704

CSeq: 12

Range: npt=0.000-

Bandwidth: 2147483647

X-Accelerate-Streaming: AccelDuration=18000;AccelBandwidth=2147483647

X-RTP-Info: url=rtsp://88.191.61.100/channel03/audio, url=rtsp://88.191.61.100/channel03/video


I have tried the above the URL but I could not make it play it

Thanks in advance...
Reply With Quote
  #2  
Old 05-12-2011, 08:44 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: www.arab-channels.tv: I need help desperatly with ASX stream


Quote:
Originally Posted by BBARGOUTI View Post
I have tried the above the URL but I could not make it play it
if you are trying to play it directly from browser following link works fine
Code:
http://www.arab-channels.tv/asx/orangetv.asx
and actual url is rtsp://88.191.61.100/channel03 but if you try to play the same url with wmp or any other player directly they will fail because they are not sending referer header with rtsp PLAY command so server refuses to send data.

reply from server with referer:
Code:
RTSP/1.0 200 OK
Date: Thu, 12 May 2011 13:36:00 GMT
CSeq: 6
Session: 4532181684741337845;timeout=60
Server: WMServer/9.1.1.5001
Supported: com.microsoft.wm.srvppair, com.microsoft.wm.sswitch, com.microsoft.wm.eosmsg, com.microsoft.wm.fastcache, com.microsoft.wm.packetpairssrc, com.microsoft.wm.startupprofile
Range: npt=0.000-5373295904553959.424
Scale: 1.000
X-Accelerate-Streaming: AccelBandwidth=204000;AccelDuration=22059
Speed: 1.000
X-StartupProfile: Rate=10,12,15,20,30;MaxBytes=5057,4784,4784,4784,4784;Time=120,0,0,0,0;StartTime=2129332605;LastTime=23410;MaxDiffTime=18304;MaxDiffSndTime=2203;ByteRate=11621,11610,11610,11610,11610;
RTP-Info: url=rtsp://88.191.61.100/channel03/audio;seq=26759;rtptime=0, url=rtsp://88.191.61.100/channel03/video;seq=43766;rtptime=0
without referer:
Code:
Session: 7991051104280657537
EOF: true
AdministrativeDisconnection: true
Reply With Quote
  #3  
Old 05-13-2011, 08:26 AM
BBARGOUTI BBARGOUTI is offline
Junior Member
 
Join Date: Apr 2011
Posts: 13
BBARGOUTI is on a distinguished road
Default

Re: www.arab-channels.tv: I need help desperatly with ASX stream


Thanks for your replay. so what do you think i should use then this URL in other players to make it play with the referrer code...
Reply With Quote
  #4  
Old 05-14-2011, 10:18 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: www.arab-channels.tv: I need help desperatly with ASX stream


if you are trying to watch this with VLC etc. then AFAIK no player will let you specify the referer parameter. however there is an open source project called Live555 which is related to rtsp streaming that you can try to modify for your requirements. however if you are trying to embed this stream into your website following code works fine
Code:
<html>
<body>
<object>
<embed height='350' width='400' type="application/x-mplayer2" src="http://www.arab-channels.tv/asx/orangetv.asx" name="MediaPlayer" </object>
</body>
</html>
Reply With Quote
  #5  
Old 05-14-2011, 06:58 PM
BBARGOUTI BBARGOUTI is offline
Junior Member
 
Join Date: Apr 2011
Posts: 13
BBARGOUTI is on a distinguished road
Default

Re: www.arab-channels.tv: I need help desperatly with ASX stream


Thank you KSV for your quick reply...so I take it that I can not stream the link through my own media player because of the referrer request....ok..can you show me in this below example

GET /baghdad HTTP/1.1

Accept: */*

User-Agent: NSPlayer/12.0.7600.16385

Host: 94.75.234.39

Referer: http://94.75.234.39/baghdad

X-Accept-Authentication: Negotiate, NTLM, Digest, Basic

Pragma: version11-enabled=1

Pragma: no-cache,rate=1.000,stream-time=0,stream-offset=4294967295:4294967295,packet-num=4294967295,max-duration=0

Pragma: xPlayStrm=1

Pragma: client-id=3719619557

Pragma: LinkBW=1306842, AccelBW=2147483647, AccelDuration=18000

Supported: com.microsoft.wm.srvppair, com.microsoft.wm.sswitch, com.microsoft.wm.predstrm, com.microsoft.wm.startupprofile

Pragma: playlist-gen-id=23501

Pragma: xClientGUID={3300AD50-2C39-46c0-AE0A-FD9D505957C1}

Pragma: stream-switch-count=2

Pragma: stream-switch-entry=ffff:1:0 ffff:2:0

Accept-Language: en-us, *;q=0.1

Is it possible to make up the URL from the above information...

sorry, I am still learning....thanks again for great effort..
Reply With Quote
  #6  
Old 05-15-2011, 05:25 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: www.arab-channels.tv: I need help desperatly with ASX stream


Code:
mmsh://94.75.234.39/baghdad?MSWMExt=.asf
Reply With Quote
Reply Post New Thread
Tags: , , , , , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 01:57 PM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons