Go Back  
Reply
 
Thread Tools
Old 08-07-2011   #1
vSaAmTp
Member
 
vSaAmTp's Avatar
 
Join Date: May 2011
Location: @My Sweet Home
Posts: 93
Likes: 36
Liked 40 Times in 23 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Cool Tutorial: Get RTMP(E) Link from LiveStream with Windows

To get a rtmp Link of a LiveStream make this:

1. Go to this Page and Download the Free Tool
http://www.hensence.com/en/coojah/download.htm

- Blader was in the CooJah Download, no Extra Download of Blader

2. Install the Tool

- Installer was Chinese, but Software was in English

3. Start the Tool as Admin (Right Mouse Click)




4. Go to the Stream Page you want
- Example: http://www.redbull.tv


5. Get the Stream URL in the Software
- Click on the Tab Video




- You see a link with RTMP://
- Right Click on the Link
- Left Click on Download by Blader




- Now you have all you need




- Copy it to your Editor



Now you can take your Link (Sorry, no Pic, only 5 Attachments):

PHP Code:
urlrtmp://cp93704.live.edgefcs.net:443/live?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId=/redbull2@21839?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId=
applive?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId=
flashVerWIN 10,3,181,34
pageUrl
http://www.redbull.tv/Redbulltv
swfUrlhttp://admin.brightcove.com/viewer/us1.25.05.11.2011-08-02174047/federatedVideo/BrightcovePlayer.swf
tcUrlrtmp://cp93704.live.edgefcs.net:443/live?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId=
playPathredbull2@21839?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId
Now make your Player Link. Take this:

PHP Code:
<url> <swfUrl> <pageUrlswfVfy=true live=true <tcUrl
And you have this:

PHP Code:
rtmp://cp93704.live.edgefcs.net:443/live?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId=/redbull2@21839?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId= http://admin.brightcove.com/viewer/us1.25.05.11.2011-08-02174047/federatedVideo/BrightcovePlayer.swf http://www.redbull.tv/Redbulltv swfVfy=true live=true rtmp://cp93704.live.edgefcs.net:443/live?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId= 
Thats all...


One Sample for the XML File:

XML File:

PHP Code:
<?xml version="1.0" encoding="utf-8"?> 
<rss version="2.0"> 
    <channel> 
    <title>WatchTV - List</title> 
    <link>http://www.github.com/facanferff/showtime</link> 
    <description>TV Channels</description> 
    <item> 
        <title>Name of the channel</title> 
        <link>rtmp link, consult: http://www.ps3hax.net/showthread.php?t=25881</link> 
        <thumbnail>tv channel logo</thumbnail> 
        <country>two letters identifying the country of the channel (e.g.: us)</country> 
    </item> 
</channel> 
</rss>

Now i Put the Redbull TV in:

PHP Code:
<?xml version="1.0" encoding="utf-8"?> 
<rss version="2.0"> 
    <channel> 
    <title>WatchTV - List</title> 
    <link>http://www.github.com/facanferff/showtime</link> 
    <description>TV Channels</description> 
    <item> 
        <title>Redbull TV</title> 
        <link>rtmp://cp93704.live.edgefcs.net:443/live?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId=/redbull2@21839?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId= http://admin.brightcove.com/viewer/us1.25.05.11.2011-08-02174047/federatedVideo/BrightcovePlayer.swf http://www.redbull.tv/Redbulltv swfVfy=true live=true rtmp://cp93704.live.edgefcs.net:443/live?videoId=784059486001&lineUpId=&pubId=710858724001&playerId=761157706001&affiliateId=</link> 
        <thumbnail>http://www.servustv.com/cs/RedBullTV/images/logo.png</thumbnail> 
        <country>at</country> 
    </item> 
</channel> 
</rss>
title = Name of the Station (Redbull TV)
link = the RTMP(E) link of the Station
thumbnail = Logo of the Station
country = Place of the Station (Austria = at)


Finish..


More Streams:

Put it <item> Stream Data1 </item>
<item> Stream Data2 </item> and so on

PHP Code:
.. 
<
item
        <
title>Name of the Stream 1</title
        <
link>rtmp linkconsulthttp://www.ps3hax.net/showthread.php?t=25881</link> 
        
<thumbnail>tv channel logo</thumbnail
        <
country>two letters identifying the country of the channel (e.g.: us)</country
    </
item
<
item
        <
title>Name of the Stream 2</title
        <
link>rtmp linkconsulthttp://www.ps3hax.net/showthread.php?t=25881</link> 
        
<thumbnail>tv channel logo</thumbnail
        <
country>two letters identifying the country of the channel (e.g.: us)</country
    </
item
.. 

Must look then Finish:

PHP Code:
<?xml version="1.0" encoding="utf-8"?> 
<rss version="2.0"> 
    <channel> 
    <title>WatchTV - List</title> 
    <link>http://www.github.com/facanferff/showtime</link> 
    <description>TV Channels</description> 
    <item> 
        <title>Name of the Stream 1</title> 
        <link>rtmp link, consult: http://www.ps3hax.net/showthread.php?t=25881</link> 
        <thumbnail>tv channel logo</thumbnail> 
        <country>two letters identifying the country of the channel (e.g.: us)</country> 
    </item> 
<item> 
        <title>Name of the Stream 2</title> 
        <link>rtmp link, consult: http://www.ps3hax.net/showthread.php?t=25881</link> 
        <thumbnail>tv channel logo</thumbnail> 
        <country>two letters identifying the country of the channel (e.g.: us)</country> 
    </item> 
</channel> 
</rss>


Old:
Click here to see full text
1. Go to this Page and Download the Free Tool
http://www.hensence.com/en/coojah/download.htm

2. Install the Tool

3. Start the Tool

4. Go to the Stream Page you want

5. Get the Stream URL in the Software


other Tools: http://rtmpdump.mplayerhq.hu/ or http://www.donationcoder.com/Softwar...per/index.html

Other HowTo

This Faq is not for Sharing on PSX-Scene.com !!! I dont want this.
Attached Images
File Type: jpg 1.jpg (291.6 KB, 472 views)
File Type: jpg 2.jpg (200.1 KB, 467 views)
File Type: jpg 3.jpg (239.0 KB, 461 views)
File Type: jpg 4.jpg (106.9 KB, 450 views)
File Type: jpg 5.jpg (256.4 KB, 458 views)

Last edited by vSaAmTp; 08-09-2011 at 01:50 PM. Reason: Update with Pics and Example
vSaAmTp is offline   Reply With Quote
Old 08-07-2011   #2
FreakAlchemist
Member
 
FreakAlchemist's Avatar
 
Join Date: Sep 2010
Location: In The Clouds
Posts: 288
Likes: 89
Liked 19 Times in 18 Posts
Mentioned: 4 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to FreakAlchemist Send a message via Skype™ to FreakAlchemist
What about the blader program,do i use that as well?
__________________
Ps3: CECH2001A-4.30.2 Rebug
X360: Falcon-16197 Freeboot
FreakAlchemist is offline   Reply With Quote
Old 08-08-2011   #3
cheezyness
Apprentice
 
Join Date: Mar 2011
Posts: 15
Likes: 1
Liked 6 Times in 2 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Originally Posted by FreakAlchemist View Post
What about the blader program,do i use that as well?
I don't believe it necessary to. Thanks OP.

Edit: Awesome! The program is chinese؟

Last edited by cheezyness; 08-08-2011 at 05:31 AM.
cheezyness is offline   Reply With Quote
Old 08-08-2011   #4
riki102
Apprentice
 
Join Date: Jun 2011
Posts: 7
Likes: 1
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
how should I know which link from the software? step 5? Not clear tuttorial at all.
riki102 is offline   Reply With Quote
Old 08-08-2011   #5
vSaAmTp
Member
 
vSaAmTp's Avatar
 
Join Date: May 2011
Location: @My Sweet Home
Posts: 93
Likes: 36
Liked 40 Times in 23 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Step 5: Click on the rtmp:// Link, then right Mouse an Copy URL or make this: http://stream-recorder.com/forum/sho...94&postcount=8

Blader was in the CooJah Pack, no Extra Download need.

Or you can make this: http://all-streaming-media.com/recor...rv-Windows.htm

Last edited by vSaAmTp; 08-08-2011 at 03:01 PM.
vSaAmTp is offline   Reply With Quote
Old 08-09-2011   #6
vSaAmTp
Member
 
vSaAmTp's Avatar
 
Join Date: May 2011
Location: @My Sweet Home
Posts: 93
Likes: 36
Liked 40 Times in 23 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Update of the Tutorial... Hope it was better now... Smile..
vSaAmTp is offline   Reply With Quote
Old 08-09-2011   #7
itskamel
Senior Member
 
itskamel's Avatar
 
Join Date: May 2011
Location: somewhere close
Posts: 3,981
Likes: 1,181
Liked 2,210 Times in 926 Posts
Mentioned: 329 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to itskamel
better yes. also could you show us how to add them to the xml file proplerly?
itskamel is offline   Reply With Quote
Likes: (1)
Old 08-09-2011   #8
vSaAmTp
Member
 
vSaAmTp's Avatar
 
Join Date: May 2011
Location: @My Sweet Home
Posts: 93
Likes: 36
Liked 40 Times in 23 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
I have... Look ^^^ at the Bottom of the Tut...
vSaAmTp is offline   Reply With Quote
Old 08-09-2011   #9
DonnyDangerous
Apprentice
 
Join Date: Oct 2010
Posts: 1
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
i cant get the keyboard to popup in showtime to put in the url to my xml, does anyone know how to do this?

thanks!

__

Found the setting in this file:
/dev_hdd0/game/HTSS00003/USRDIR/settings/settings/plugins/watchtv

will try it now =)

Last edited by DonnyDangerous; 08-09-2011 at 03:37 AM.
DonnyDangerous is offline   Reply With Quote
Old 08-09-2011   #10
itskamel
Senior Member
 
itskamel's Avatar
 
Join Date: May 2011
Location: somewhere close
Posts: 3,981
Likes: 1,181
Liked 2,210 Times in 926 Posts
Mentioned: 329 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to itskamel
Originally Posted by vSaAmTp View Post
I have... Look ^^^ at the Bottom of the Tut...
ok you lost me where it says now make your player link take this.

that i dont understand

**edit also copied your link in the xml and still nothing. this is really pissing me off.

Last edited by itskamel; 08-09-2011 at 03:48 AM.
itskamel is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



PS3Hax.net is Copyright © 2010-2013.
Use of this site is governed by our Terms of Use and Privacy Policy. All Trademarks and images are owned by their respected owners.
Posts and links are subject to each author on this forum and are no way affiliated with the operations and/or opinions of ps3hax.net
All times are GMT -5. The time now is 05:10 PM.