seeon.tv: Trying to record this streamI thought I had the correct stream from this website
http://www.seeon.tv/view/11073/ as this: rtmp://live0.seeon.tv/edge/nvcrd4lz4zs0w34 but it isn't working. I would love to setup a script where I can record this stream for 60 minutes when I execute the script. Any help on this would be greatly appreciated. Thanks. |
Re: seeon.tv: Trying to record this streamHave you tried to use RTMPexplorer (Windows)?
|
Re: seeon.tv: Trying to record this streamIt has to be done in linux. Any help with that?
|
Re: seeon.tv: Trying to record this streamthen use rtmpsrv or rtmpsuck
|
Re: seeon.tv: Trying to record this streamHi
rtmpsrv gives a command that doesn't work with RTMPDump.:( It gives this one:- Code:
rtmpdump -r "rtmp://live00.seeon.tv/redirect" -a "redirect" -f "LNX 10,1,102,64" -W "http://www.seeon.tv/jwplayer/player.swf" -p "http://www.seeon.tv/view/11073/" -y "nvcrd4lz4zs0w34" -o nvcrd4lz4zs0w34.flv Quote:
It gives this one:- Code:
rtmpdump -r "rtmp://live2.seeon.tv/edge/nvcrd4lz4zs0w34" -a "edge" -f "LNX 10,1,102,64" -W "http://www.seeon.tv/jwplayer/player.swf" -p "http://www.seeon.tv/view/11073/" -y "nvcrd4lz4zs0w34" -o nvcrd4lz4zs0w34.flv Quote:
|
Re: seeon.tv: Trying to record this stream |
Re: seeon.tv: Trying to record this streamQuote:
Quote:
I ran the dud command with -V parameter. It showed a redirect url, like you said. So I used it with the f,W,p,y and o parameters... And it worked OK :) :) It seems there are a few redirect links. Sometimes it's rtmp://live1.seeon.tv/edge/nvcrd4lz4zs0w34, sometimes live2, live3 and live4. |
Re: seeon.tv: Trying to record this streamWow you guys are awesome. So what would I do if I wanted to record the stream for 1 hour instead of indefinitely?
|
Re: seeon.tv: Trying to record this streamQuote:
Code:
rtmpdump.exe -r "rtmp://live1.seeon.tv/edge/nvcrd4lz4zs0w34" -p "http://www.seeon.tv/view/11073" -W "http://www.seeon.tv/jwplayer/player.swf" --stop 60 --live -o Test.flv Code:
RTMPDump v2.3 r568 (Compiled by KSV) |
Re: seeon.tv: Trying to record this streamIs there any way to have the filename dynamically changed based on date it was recorded etc? I want to use this record the stream everyday but I don't want it to overwrite itself.
|
Re: seeon.tv: Trying to record this streamThis is very simple in any scripting language. if you are using simple batch file then use:
Code:
for /f "tokens=1-6 delims=/:." %%a in ("%date%.%time%") do set FileName="MyShow - %%a-%%b-%%c - %%d-%%e-%%f.flv" |
Re: seeon.tv: Trying to record this streamQuote:
1. Where do the variables %%b, %%c, %%d, %%e, %%f come from? 2. What is "tokens=1-6 delims=/:."? |
Re: seeon.tv: Trying to record this streamQuote:
Code:
C:\Documents and Settings\Администратор\Мои документы\rtmpdump-2.3>for /F "token |
Re: seeon.tv: Trying to record this streamQuote:
PS: when using outside the batch file use single % eg: %a instead of %%a |
Re: seeon.tv: Trying to record this streamAny chance I could get you to write that same script but for a linux machine instead of a windows one? Thanks. :D
|
Re: seeon.tv: Trying to record this streamQuote:
|
Re: seeon.tv: Trying to record this streamQuote:
Code:
#! /bin/bash |
All times are GMT -6. The time now is 02:11 AM. |