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 > rtmpdump
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #11  
Old 06-28-2012, 05:17 AM
evol evol is offline
Senior Member
 
Join Date: Jun 2011
Posts: 228
evol is on a distinguished road
Question

Re: How to dump-problem


Quote:
Originally Posted by KSV View Post
package updated in repository. hopefully it would work better now.

Code:
https://github.com/K-S-V/Scripts/downloads
Hi KSV can we use this update like your example for chap ?
Code:
rtmpdump -r "rtmpt://213.250.3.162/" -a "" -y "espnclassic" -o Test.flv --timeout 1
Im guessing here and just change the "espnclassic" part ?
Reply With Quote
  #12  
Old 06-28-2012, 12:20 PM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: How to dump-problem


Quote:
Originally Posted by karlo2105 View Post
I found it those rtmp streams come from same source like this which only works for 20 seconds in VLC before dropping.

Code:
http://io.planet9.si/player/siolplayer.swf?liveid=hrt2&pid=orto.si
They aren't using any security tricks. try with curl or wget. if they can download continuously then it's vlc fault or bandwidth problem.

Quote:
Originally Posted by evol View Post
Hi KSV can we use this update like your example for chap ?
Code:
rtmpdump -r "rtmpt://213.250.3.162/" -a "" -y "espnclassic" -o Test.flv --timeout 1
Im guessing here and just change the "espnclassic" part ?
why not?


i have also re-uploaded the package with some minor tweaks. use --verbose | -V to see what's going on when using rtmpt.
Reply With Quote
  #13  
Old 06-28-2012, 07:48 PM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: How to dump-problem


Quote:
Originally Posted by KSV View Post
They aren't using any security tricks. try with curl or wget. if they can download continuously then it's vlc fault or bandwidth problem.
Code:
curl --url "http://io.planet9.si/player/siolplayer.swf?liveid=hrt2&pid=orto.si" | %systemdrive%\progra~2\videolan\vlc\vlc -
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  192k  100  192k    0     0   164k      0  0:00:01  0:00:01 --:--:--  232k
It show this in VLC

Quote:
avcodec error: Could not open d0: Specified event object handle is invalid
Concernig rtmpt, it's working a little bit better with --timeout 1, mostly after 3 or 4 tries, it opens.
Reply With Quote
  #14  
Old 06-28-2012, 08:29 PM
hasomaso hasomaso is offline
Senior Member
 
Join Date: Apr 2011
Posts: 943
hasomaso is on a distinguished road
Default

Re: How to dump-problem


Quote:
Originally Posted by karlo2105 View Post
Code:
curl --url "http://io.planet9.si/player/siolplayer.swf?liveid=hrt2&pid=orto.si" | %systemdrive%\progra~2\videolan\vlc\vlc -
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  192k  100  192k    0     0   164k      0  0:00:01  0:00:01 --:--:--  232k
It show this in VLC



Concernig rtmpt, it's working a little bit better with --timeout 1, mostly after 3 or 4 tries, it opens.


HRT1 HRT2 and there are other channels?
Reply With Quote
  #15  
Old 06-29-2012, 04:46 AM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: How to dump-problem


Quote:
Originally Posted by hasomaso View Post
HRT1 HRT2 and there are other channels?
Slovenian : Carli, Golica, Info TV, Planet TV
French : Mangas, Tiji, AB Moteurs, MCM Pop, XXL
English : ESPN Classic
Reply With Quote
  #16  
Old 06-29-2012, 06:14 AM
evol evol is offline
Senior Member
 
Join Date: Jun 2011
Posts: 228
evol is on a distinguished road
Talking

Re: How to dump-problem


Hi ive just intercepted a batch script from the inter webs for these channels

Code:
@echo off
TITLE FUTUBOX TEST
color fc
IF EXIST %systemdrive%\progra~2\videolan\vlc (SET "vlc=%systemdrive%\progra~2\videolan\vlc\vlc") ELSE (SET "vlc=%systemdrive%\progra~1\videolan\vlc\vlc")

set RTMPT=rtmpt://213.250.3.162/

REM Public Service Anouncements
set Caption1=Stream is starting so wait, wait and wait some more...
set Caption2=TIP_2: Make sure your running VLC version 2.0.0

:TOP
CLS
ECHO   	=======================
ECHO   	http://forum.wiziwig.eu
ECHO   	=======================
ECHO.
ECHO   	HOW TO USE 
ECHO   	=======================
ECHO   	1. Type channel name in lowercase and hit Enter.
ECHO   	2. Now just wait, if it dont start try again till it connects.
ECHO   	3. For faster input of last channel use the up key.
ECHO.
ECHO   	=======================
ECHO.
ECHO   	ENTER CHANNEL NAME...
ECHO.
ECHO   	EXAMPLE: espnclassic
ECHO.
ECHO   	=======================
set Playpath=
set /p "Playpath=  	Channel Name>" 
GOTO ONE

:ONE
cls
echo %Caption1%
echo.
echo %Caption2%
echo.
echo.
call futudump -r "%RTMPT%" -a "" -y "%Playpath%" --live --verbose --timeout 1 | %vlc% --play-and-exit --qt-minimal-view --width=720 --height=480 -
goto TOP

:EXIT
ping localhost -n 3 >nul
exit /b
It looks like you need to rename rtmpdump to futudump ?

Last edited by evol : 06-29-2012 at 09:41 AM.
Reply With Quote
  #17  
Old 06-29-2012, 08:50 AM
Josan420 Josan420 is offline
Senior Member
 
Join Date: Feb 2012
Location: India
Posts: 150
Josan420 is on a distinguished road
Default

Re: How to dump-problem


Quote:
Originally Posted by karlo2105 View Post
I found it those rtmp streams come from same source like this which only works for 20 seconds in VLC before dropping.

Code:
http://io.planet9.si/player/siolplayer.swf?liveid=hrt2&pid=orto.si
I tried older versions of VLC 1.1.11 it's the same thing.
I found they use some sort of tickets :
http://213.250.3.162/get.fstr?oid=hr...ygwjb9yp q5v7

Could you please KSV make some script for this provider?

Thanks very much.
even i have found this stream which stop after 15-20 sec in vlc .
Code:
http://aajtakhdlive-f.akamaihd.net/aajtakhdlive2_1_2@35432?v=2.4.5&fp=WIN%2011,3,300,257&r=YGIAW&g=FBCBMIZSQHQY
i want to watch this stream in my vlc but it stop after after some sec.
Code:
http://live.indiatimes.com/
please KSV help me
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 09:51 PM.


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