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 > Media file management > Media players and codecs
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 02-25-2011, 07:12 AM
BananaGirl BananaGirl is offline
Junior Member
 
Join Date: Feb 2011
Posts: 16
BananaGirl is on a distinguished road
Default

www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


Hi, I want to watch the Kevin Trudeau Show (ustream.tv) every day with MPlayer or VLC without looking at the CPU goes to 30% to 100% every time I'm watching it live

Links:
http://www.ustream.tv/channel/kevin-trudeau-show
http://www.ustream.tv/channel/522259

I've found a related script to do that job but it does not work
gist: 634461 - download live video from ustream using rtmpdump.- GitHub (by fuba)
tech memo / Textt

I have tried to imitate Hacker News | For Linux users wanting to watching without using browser + flash, using mplayer... without success

This is the information that has been taken during the time that the show went on air live http://rghost.net/4522689 (files, links and wget logs of the http_headers)

The wanted stream(s)
rtmp://flash72.ustream.tv/ustreamVideo/522259
rtmp://flash73.ustream.tv/ustreamVideo/522259
rtmp://flash77.ustream.tv/ustreamVideo/522259
Reply With Quote
  #2  
Old 03-08-2011, 12:48 PM
BananaGirl BananaGirl is offline
Junior Member
 
Join Date: Feb 2011
Posts: 16
BananaGirl is on a distinguished road
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


The live stream begins on every Monday - Friday 10am - 11am PT (Pacific Time Zone).

The live stream started 48 minutes ago (for the record)

Edit:
I've found this url today: rtmp://flash60.ustream.tv/ustreamVideo/522259

This is the information that has been taken during the time that the show went on air live http://rghost.net/4686397 (I've downloaded everything that was on this page)
Reply With Quote
  #3  
Old 03-09-2011, 02:13 AM
Stream Recorder
 
Posts: n/a
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


How did you download the stream? Just used the URL above in MPlayer or VLC?

I use Replay Media Catcher 4 for downloading/capturing videos from UStream.TV
Reply With Quote
  #4  
Old 03-09-2011, 05:19 AM
BananaGirl BananaGirl is offline
Junior Member
 
Join Date: Feb 2011
Posts: 16
BananaGirl is on a distinguished road
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


Quote:
Originally Posted by Stream Recorder View Post
How did you download the stream? Just used the URL above in MPlayer or VLC?
I've found rtmp://flashXX.ustream.tv/ustreamVideo/522259 by reading the file 522259.amf?pageUrl=http:%2F%2Fwww.ustream.tv%2Fchannel%2Fkev in-trudeau-show&locale=en_US&encoded=1 with a Hex Editor.


Hex editors/viewers for X11 (GNU/FreeBSD/Linux):
Ghex, HT Editor, Jeex, wxHexEditor.

Hex editors/viewers for Window$:
Extreme Editor, MadEdit, PSPad (Proprietary/Not FLOSS).


To collect the data (in the archived file) I have used AdBlock Plus (Open blockable items) feature which is based on LiveHTTPHeaders.
Reply With Quote
  #5  
Old 03-11-2011, 08:36 AM
mocha mocha is offline
Junior Member
 
Join Date: Mar 2010
Posts: 23
mocha is on a distinguished road
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


Just curious regarding the perl script you linked to. I also experience where it does not work on every ustream page. Some pages it says "no video url at xxxxx.pl line 32", I tried hacking on the source but can't get it to work. The problem has something to do with this part.

Code:
sub get_video_url {
    my $url = shift;
    my $amf_bin = get($url);

    if ($amf_bin =~ m|(rtmp://[^/]+/ustreamVideo/(\d+))|m) {
        return ($1, $2);
    }
Reply With Quote
  #6  
Old 03-11-2011, 12:30 PM
BananaGirl BananaGirl is offline
Junior Member
 
Join Date: Feb 2011
Posts: 16
BananaGirl is on a distinguished road
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


Come'on, Come'on, !! the show is about to end in 30 minutes :P
P.S. I believe that every ustream.tv page with Live Stream can be tested.
Reply With Quote
  #7  
Old 03-12-2011, 12:23 AM
mocha mocha is offline
Junior Member
 
Join Date: Mar 2010
Posts: 23
mocha is on a distinguished road
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


Quote:
Originally Posted by BananaGirl View Post
Come'on, Come'on, !! the show is about to end in 30 minutes :P
P.S. I believe that every ustream.tv page with Live Stream can be tested.
Huh? My post was just a general question if anyone knew why that perl script doesn't seem to work on all live ustream channels.
Reply With Quote
  #8  
Old 03-25-2011, 01:27 PM
nullacht nullacht is offline
Senior Member
 
Join Date: Jan 2010
Posts: 230
nullacht will become famous soon enoughnullacht will become famous soon enough
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


rtmpdump command line (to save the stream locally):

Code:
rtmpdump -r "rtmp://ustream.fc.llnwd.net:1935/ustream/test/" -a "ustream/test/" -y "ustream@llnw_1_522259_live_1" -W "http://cdn1.ustream.tv/swf/4/viewer.rsl.568.swf" -o ustream@llnw_1_522259_live_1.flv --live
Code:
RTMPDump v2.3
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
11587.503 kB / 838.38 sec

Last edited by nullacht : 03-25-2011 at 02:40 PM.
Reply With Quote
  #9  
Old 03-30-2011, 07:04 AM
BananaGirl BananaGirl is offline
Junior Member
 
Join Date: Feb 2011
Posts: 16
BananaGirl is on a distinguished road
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


Quote:
Originally Posted by nullacht View Post
rtmpdump command line (to save the stream locally):

Code:
rtmpdump -r "rtmp://ustream.fc.llnwd.net:1935/ustream/test/" -a "ustream/test/" -y "ustream@llnw_1_522259_live_1" -W "http://cdn1.ustream.tv/swf/4/viewer.rsl.568.swf" -o ustream@llnw_1_522259_live_1.flv --live
Code:
RTMPDump v2.3
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
11587.503 kB / 838.38 sec
It is not working for me.
I'm trying every channel ID that I find at this page, and I can't make it work.

I'm even changing the .swf to the current player, but all I get is:
Code:
Connecting ...
INFO: Connected...
Starting Live Stream
That's all.

Edit: It is working with ktradio live video
(I'll continue on reporting concerning to other videos)
Thank you, nullacht.

Last edited by BananaGirl : 03-30-2011 at 12:53 PM.
Reply With Quote
  #10  
Old 04-01-2011, 12:14 PM
BananaGirl BananaGirl is offline
Junior Member
 
Join Date: Feb 2011
Posts: 16
BananaGirl is on a distinguished road
Default

Re: www.ustream.tv: watch Kevin Trudeau Show with MPlayer, VLC


Code:
$ rtmpdump -r "rtmp://ustream.fc.llnwd.net:1935/ustream/test/" -a "ustream/test/" -y "ustream@llnw_1_522259_live_1" -W "http://cdn1.ustream.tv/swf/4/viewer.rsl.568.swf" -o ustream@llnw_1_522259_live_1.flv --live
RTMPDump v2.2e
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
581.788 kB / 4.18 sec
Caught signal: 13, cleaning up, just a second...
ERROR: WriteN, RTMP send error 32 (46 bytes)
ERROR: RTMP_ReadPacket, failed to read RTMP packet body. len: 12365
581.788 kB / 4.18 sec
Download may be incomplete (downloaded about 0.00%), try resuming
$ rtmpdump -r "rtmp://ustream.fc.llnwd.net:1935/ustream/test/" -a "ustream/test/" -y "ustream@llnw_1_522259_live_1" -W "http://cdn1.ustream.tv/swf/4/viewer.rsl.568.swf" -o ustream@llnw_1_522259_live_1.flv --live
RTMPDump v2.2e
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
984.074 kB / 8.92 sec
ERROR: RTMP_ReadPacket, failed to read RTMP packet header
984.074 kB / 8.92 sec
Download complete
$
It is not stable :-/
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 05:52 AM.


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