Page 3 of 4

Re: IPTV playlists

Posted: Sat Jul 24, 2010 9:48 am
by wildone1965
Thanks for your quick reply, but it still wont create the list. I even started WMS as admin in Vista. Any idea what i might be doing wrong?

Re: IPTV playlists

Posted: Sat Jul 24, 2010 1:16 pm
by Eugene
wildone1965 wrote:Any idea what i might be doing wrong?
wildone1965 wrote: I even started WMS as admin in Vista.

Re: IPTV playlists

Posted: Sat Jul 24, 2010 2:36 pm
by wildone1965
I got the IPTV list added now. A lot of programs dont work at all. The ones that work with VLC wont play on my Sony TV though. Maybe the screenshot can help to solve the problem.

Re: IPTV playlists

Posted: Sat Jul 24, 2010 2:53 pm
by Eugene
wildone1965 wrote:I got the IPTV list added now. A lot of programs dont work at all. The ones that work with VLC wont play on my Sony TV though. Maybe the screenshot can help to solve the problem.
Settings - Transcoder - Profiles - "Internet television" - Restore
Rtsp-streams usually do not work through routers

Re: IPTV playlists

Posted: Sun Jul 25, 2010 11:21 am
by isopor
I have this URL for BBC: http://cctv.ws/5/625v31
It plays on Windows Media Player but not on VLC 1.1
Is it possible to put it in WMS ? How?

Re: IPTV playlists

Posted: Sun Jul 25, 2010 12:07 pm
by Eugene
isopor wrote:I have this URL for BBC: http://cctv.ws/5/625v31
It plays on Windows Media Player but not on VLC 1.1
Is it possible to put it in WMS ? How?
For me and WMP does not play

Re: IPTV playlists

Posted: Sun Jul 25, 2010 3:19 pm
by isopor
Eugene wrote:
isopor wrote:I have this URL for BBC: http://cctv.ws/5/625v31
It plays on Windows Media Player but not on VLC 1.1
Is it possible to put it in WMS ? How?
For me and WMP does not play
I checked and played it now with WMP (my version is a bit old: 10.00.00.4074)
I noticed that the real URL might be:

Code: Select all

http://stream01.viewtv.co.uk/VODPlatformViewTV?Wyygpqb7qclEAEuYlrZb4uwDbnvXHhDxFS1iLtPm6AT24xzVAgiDO03nd0FVQpvG7mRU0YhnSmgd3eio_bkpIA!!
(This works too)

Or maybe:

Code: Select all

mms://stream01.viewtv.co.uk/VODPlatformViewTV?Wyygpqb7qclEAEuYlrZb4uwDbnvXHhDxFS1iLtPm6AT24xzVAgiDO03nd0FVQpvG7mRU0YhnSmgd3eio_bkpIA!!&MSWMExt=.asf
(This doesn't work though).

Can you check again?

Re: IPTV playlists

Posted: Sun Jul 25, 2010 4:30 pm
by Eugene
isopor wrote:
Eugene wrote:
isopor wrote:I have this URL for BBC: http://cctv.ws/5/625v31
It plays on Windows Media Player but not on VLC 1.1
Is it possible to put it in WMS ? How?
For me and WMP does not play
I checked and played it now with WMP (my version is a bit old: 10.00.00.4074)
I noticed that the real URL might be:

Code: Select all

http://stream01.viewtv.co.uk/VODPlatformViewTV?Wyygpqb7qclEAEuYlrZb4uwDbnvXHhDxFS1iLtPm6AT24xzVAgiDO03nd0FVQpvG7mRU0YhnSmgd3eio_bkpIA!!
(This works too)

Or maybe:

Code: Select all

mms://stream01.viewtv.co.uk/VODPlatformViewTV?Wyygpqb7qclEAEuYlrZb4uwDbnvXHhDxFS1iLtPm6AT24xzVAgiDO03nd0FVQpvG7mRU0YhnSmgd3eio_bkpIA!!&MSWMExt=.asf
(This doesn't work though).

Can you check again?
My mistake, I tried to play asx-file from response http://cctv.ws/5/625v31, if add http://cctv.ws/5/625v31, WMP plays video. I think the feature in the request header that sends WMP. If make such requests in WMS (like podcasts), I think will work, but needs analyse

Re: IPTV playlists

Posted: Mon Jul 26, 2010 3:22 pm
by Eugene
isopor wrote:I have this URL for BBC: http://cctv.ws/5/625v31
It plays on Windows Media Player but not on VLC 1.1
Is it possible to put it in WMS ? How?
New profile:
Execute mode: Parameters
Language: PascalScript
Transcoder: VLC

Code: Select all

begin
  TranscodingParams := WmsTranscodingProfileParams('Internet-television');
  if WmsRegExMatch('REF HREF="(.*?)"', WmsDownloadURL(mpFilePath), InputFileName) then   
    TranscodingParams := ReplaceStr(TranscodingParams, '<INPUT FILE>', 
                                    ReplaceStr(InputFileName, 'http://', 'mms://'));      
end.

Re: IPTV playlists

Posted: Mon Jul 26, 2010 7:03 pm
by isopor
Thanks, that works!
(To other users: I also set Language=PAscal Script and Transcoder=WMSMPEG)