How to record Streams?!

5 (3 rating(s))

(5 / 5, 3 ratings)

Amateur models online
Author Posts

09.07.2014, 00:47

Re: How to record Streams?!

bigfoot57 wrote:When recording Redlight Central 2 or RLC2 as in your bat file my recordings for this channel start 55min 46 seconds into the recording never at the start anyone else having this occurrence and if so how do you correct it


Yes a few times, but I always use FLVExtract to turn my files into mkv's which fixes the problem.

28.06.2014, 09:15

Re: How to record Streams?!

When recording Redlight Central 2 or RLC2 as in your bat file my recordings for this channel start 55min 46 seconds into the recording never at the start anyone else having this occurrence and if so how do you correct it

25.06.2014, 13:22

Re: How to record Streams?!

maja1 wrote:try URLSnooper 2 + orbit

What can i make with this.

25.06.2014, 12:54

Re: How to record Streams?!

try URLSnooper 2 + orbit

20.06.2014, 23:44

Re: How to record Streams?!

Etv are now using Open Broadcaster Software:-[hidden link - please register] to broadcast their live tv stream.

It also allows you to record your screen, so the same software can be used at both ends, A nice circleBig Grin

15.06.2014, 00:31

Re: How to record Streams?!

is it possible to record playboytv / redlight channels from rampant site using rtmpdump ?

14.06.2014, 19:17

Re: How to record Streams?!

genya wrote:For those people who use rtmpdump on Windows here are 2 short example for a bat file which use "automatic filename".
( My bat files are in same folder as the rtmpdump. )

#1. Example
for /f "tokens=1-3 delims=/.-" %%a in ('date /t') do (set datestamp=%%c"-"%%b"-"%%a)
for /f "tokens=1-4 delims=/:.," %%a in ("%time%") do (set timestamp=%%a"h"%%b"m"%%c"s"%%d"hs")

set FileName="%datestamp%_%timestamp%_channelname.flv"
set FileName=%FileName%

rtmpdump -r "rtmp://..........................." -f "...." -W "http://..." -p "http://..." --live -y "...." -o "%FileName%"

In this case the file name will look like this: 13-06-2014_22h04m39s82hs_channelname.flv
...
snip
...
A big big thanks for switchblade123, dackel0401 and TheDarkKnight Smile

PS.: I tried these commands on Windows XP.

The date and time command read these values from the system settings so if your date and time format is different in the system in this case the output file name will be different( i think ). In my case the time format is " "HH":"mm":"ss" " and the date format is YYYY-MM-DD.
Sorry i forgot to write this first time. Blush

14.06.2014, 01:47

Re: How to record Streams?!

if you want to save your files to a different drive / folder you can use for example "F:\Streams\ %filename%" instead of just %FileName%

13.06.2014, 22:47

Re: How to record Streams?!

For those people who use rtmpdump on Windows here are 2 short example for a bat file which use "automatic filename".
( My bat files are in same folder as the rtmpdump. )

#1. Example
for /f "tokens=1-3 delims=/.-" %%a in ('date /t') do (set datestamp=%%c"-"%%b"-"%%a)
for /f "tokens=1-4 delims=/:.," %%a in ("%time%") do (set timestamp=%%a"h"%%b"m"%%c"s"%%d"hs")

set FileName="%datestamp%_%timestamp%_channelname.flv"
set FileName=%FileName%

rtmpdump -r "rtmp://..........................." -f "...." -W "http://..." -p "http://..." --live -y "...." -o "%FileName%"

In this case the file name will look like this: 13-06-2014_22h04m39s82hs_channelname.flv

#2. Example
for /f "tokens=1-3 delims=/.-" %%a in ('date /t') do (set datestamp=%%a"-"%%b"-"%%c)
for /f "tokens=1-3 delims=/:.," %%a in ("%time%") do (set timestamp=%%a"h"%%b"min"%%c"sec")

set FileName="%datestamp%_%timestamp%_channelname.flv"
set FileName=%FileName%

rtmpdump -r "rtmp://..........................." -f "...." -W "http://..." -p "http://..." --live -y "...." -o "%FileName%"

in this case the file name will look like this: 2014-06-13_22h13min33sec_channelname.flv

And here is a concrete example:
For /f "tokens=1-3 delims=/.-" %%a in ('date /t') do (set datestamp=%%a"-"%%b"-"%%c)
For /f "tokens=1-4 delims=/:.," %%a in ("%time%") do (set timestamp=%%a"h"%%b"m"%%c"s"%%d"hs")

set FileName="%datestamp%_%timestamp%_CGHc1.flv"
set FileName=%FileName%

rtmpdump -r "rtmp://46.105.116.159/cgtv" -f "WIN 11,7,700,224" -W "http://iptv.firestormmedia.tv/flash/player/player.swf" -p "http://iptv.firestormmedia.tv/iframes/firecall/?type=1&affid=1234&width=981&hO=0" --live -y "livestreamx" -o %FileName%

It is the output file name: 2014-06-13_23h10m38s56hs_CGHc1.flv

A big big thanks for switchblade123, dackel0401 and TheDarkKnight Smile

PS.: I tried these commands on Windows XP.

08.05.2014, 23:43

Re: How to record Streams?!

Hey guys sorry I haven't been active in the site for a months I have been very busy here. I came by to say i have updated the Google Doc Studio66 Codes, it looks like you all have been helping each other out nicely while I was away. I will test and see if any other streams are broken or not. These codes have been updated as of today so they are fresh with the new Studio66 changes.

Oh yeah just a Reminder to newer members or people who forgot I posted the links to my RTMPDump Tutorial and RTMPDump Stream Codes to my Forum Signature you can view it by enabling this through your settings on the site, Thank You.

02.05.2014, 20:53

Re: How to record Streams?!

never mind.... found it Smile

-o "F:\Streams\ %filename%"

02.05.2014, 19:51

Re: How to record Streams?!

nice one TheDarkKnight Smile

the -o %FileName% part, is there anyway to edit this so it saves the file in a different directory / drive?

02.05.2014, 18:42

Re: How to record Streams?!

Here's all of the Studio 66 streams in auto-naming format...

S661.bat...

For /f "tokens=1-4 delims=/-" %%a in ('date /t') do (set mydate=%%a%%b%%d%%c)
For /f "tokens=1-2 delims=/:" %%a in ("%TIME%") do (set mytime=%%a%%b)

set FileName="Studio66_Ch1_%mydate%_%mytime%.flv"
set FileName=%FileName: =%

d:\rtmpd\rtmpdump.exe rtmpdump -r "rtmp://178.33.229.131/leved/" -f "WIN 11,2,202,235" -W "http://iptv.firestormmedia.tv/flash/rampant.tv/player.swf" -p "http://www.rampant.tv/streams" --live -y "studio66tv_channel1" -o %FileName%

S662.bat...

For /f "tokens=1-4 delims=/-" %%a in ('date /t') do (set mydate=%%a%%b%%d%%c)
For /f "tokens=1-2 delims=/:" %%a in ("%TIME%") do (set mytime=%%a%%b)

set FileName="Studio66_Ch2_%mydate%_%mytime%.flv"
set FileName=%FileName: =%

d:\rtmpd\rtmpdump.exe rtmpdump -r "rtmp://178.33.229.131/leved/" -f "WIN 11,2,202,235" -W "http://iptv.firestormmedia.tv/flash/rampant.tv/player.swf" -p "http://www.rampant.tv/streams" --live -y "studio66tv_channel2" -o %FileName%

S663.bat...

For /f "tokens=1-4 delims=/-" %%a in ('date /t') do (set mydate=%%a%%b%%d%%c)
For /f "tokens=1-2 delims=/:" %%a in ("%TIME%") do (set mytime=%%a%%b)

set FileName="Studio66_Ch3_%mydate%_%mytime%.flv"
set FileName=%FileName: =%

d:\rtmpd\rtmpdump.exe rtmpdump -r "rtmp://178.33.229.131/leved/" -f "WIN 11,2,202,235" -W "http://iptv.firestormmedia.tv/flash/rampant.tv/player.swf" -p "http://www.rampant.tv/streams" --live -y "studio66tv_channel3" -o %FileName%

S664.bat...

For /f "tokens=1-4 delims=/-" %%a in ('date /t') do (set mydate=%%a%%b%%d%%c)
For /f "tokens=1-2 delims=/:" %%a in ("%TIME%") do (set mytime=%%a%%b)

set FileName="Studio66_Ch4_%mydate%_%mytime%.flv"
set FileName=%FileName: =%

d:\rtmpd\rtmpdump.exe rtmpdump -r "rtmp://178.33.229.131/leved/" -f "WIN 11,2,202,235" -W "http://iptv.firestormmedia.tv/flash/rampant.tv/player.swf" -p "http://www.rampant.tv/streams" --live -y "studio66tv_channel4" -o %FileName%



...Just change the bits in bold to point to your copy of rtmpdump.exe

02.05.2014, 00:30

Re: How to record Streams?!

Thanks samoth & westy27,

just spent the last few hours learning how to use wireshark, I have been able to restore all my studio66 streams.

Cool

01.05.2014, 23:53

Re: How to record Streams?!

Looks like they changed the code :
Amateur models online