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 > Video stream recording (Adult streaming videos)
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #31  
Old 04-27-2017, 08:26 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: Bongacams record in Away mode or PRVT?


First get your parameters:


C:\MISC\STREAMLINK>set url=https://bongacams.com/Kira

C:\MISC\STREAMLINK>streamlink.exe --stream-url https://bongacams.com/Kira best
rtmp://94.199.250.59:1935/bongacams conn=S:guest198661 conn=S:c27574aeeeecf666a12b4fbd68acf4c5 conn=B:0 conn=S:02132f3d93f408fce67fe6e972cf0c93 flashVer=WIN\2024,0,0,186 live=1 pageUrl=https://bongacams.com/Kira playpath=stream_Kira?uid=e78cedc414ffd8f0c45354e09 c471dcd realtime=1 swfUrl=https://bongacams.com/swf/chat/BCamChat.swf?cache=201704211040 tcUrl=rtmp://94.199.250.59:1935/bongacams

C:\MISC\STREAMLINK>pause
Press any key to continue . . .


rtmp://94.199.250.59:1935/bongacams
conn=S:guest198661
conn=S:c27574aeeeecf666a12b4fbd68acf4c5
conn=B:0
conn=S:02132f3d93f408fce67fe6e972cf0c93
flashVer=WIN\2024,0,0,186
live=1
pageUrl=https://bongacams.com/Kira
playpath=stream_Kira?uid=e78cedc414ffd8f0c45354e09 c471dcd
realtime=1
swfUrl=https://bongacams.com/swf/chat/BCamChat.swf?cache=201704211040
tcUrl=rtmp://94.199.250.59:1935/bongacams



Translate this to rtmpdump:



@FOR /f %%b IN ('DT') DO @set d=%%b

rtmpdump -v -r "rtmp://94.199.250.59:1935/bongacams" ^
-a "bongacams" ^
-f "WIN\2024,0,0,186" ^
-W "https://bongacams.com/swf/chat/BCamChat.swf?cache=201704211040" ^
-p "https://bongacams.com/Kira" ^
-C S:guest813943 ^
-C S:3084b1c487d0973bea87a96e22ebbc82 ^
-C B:0 ^
-C S:55fb47075cec063e67cd602f53580d03 ^
-y "stream_Kira?uid=e78cedc414ffd8f0c45354e09c471 dcd" ^
-o "CarrieYv_%d%.flv"




C:\MISC\CAMS>rtmpdump -v -r "rtmp://94.199.250.59:1935/bongacams" -a "bongacams" -f "WIN\2024,0,0,186" -W "https://bongacams.com/swf/chat/BCamChat.swf?cache=201704211040" -p "https://bongacams.com/Kira" -C S:guest813943 -C S:3084b1c487d0973bea87a96e22ebbc82 -C B:0 -C S:55fb47075cec063e67cd602f53580d03 -y "stream_Kira?uid=e78cedc414ffd8f0c45354e09c471 dcd" -o "CarrieYv_2017-04-27_14-20-23.flv"
RTMPDump v2.4 GIT-2015-12-14 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
865.549 kB / 459.98 sec



I changed a few params from yesterday's test batch file, I think only -p, -y, -r.

Last edited by j_cool : 04-27-2017 at 09:15 AM.
Reply With Quote
  #32  
Old 04-27-2017, 10:05 PM
Moonspell Moonspell is offline
Senior Member
 
Join Date: Sep 2016
Posts: 227
Moonspell is on a distinguished road
Default

Re: Bongacams record in Away mode or PRVT?


the rtmdump code you posted isn't working at all, btw...
Reply With Quote
  #33  
Old 04-28-2017, 04:09 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: Bongacams record in Away mode or PRVT?


Nothing at all may work tomorrow or later today in the day.

I got parameters with streamlink, could had saved it with streamlink as well.

All that needed changing from my last day's batch file was -r and -y.


Here is brief summary of my findings:

http://en.bongacam.org is harder to get parameters than https://www.bongacams.com

KSV's rtmpdump works for now if you get right parameters.
Reply With Quote
  #34  
Old 04-29-2017, 07:37 PM
ihryjfbd ihryjfbd is offline
Senior Member
 
Join Date: Oct 2015
Posts: 212
ihryjfbd is on a distinguished road
Default

Re: Bongacams record in Away mode or PRVT?


Code:
@echo off
SET hour=%time:~0,2%
IF "%hour:~0,1%" == " " SET hour=0%hour:~1,1%
SET min=%time:~3,2%
IF "%min:~0,1%" == " " SET min=0%min:~1,1%
SET secs=%time:~6,2%
IF "%secs:~0,1%" == " " SET secs=0%secs:~1,1%
SET year=%date:~-4%
SET month=%date:~3,2%
IF "%month:~0,1%" == " " SET month=0%month:~1,1%
SET day=%date:~0,2%
IF "%day:~0,1%" == " " SET day=0%day:~1,1%
SET _my_datetime=%day%-%month%-%year%_%hour%-%min%-%secs%
SET file=%_my_datetime%

set /p model=Model Username: 
set model=%model:https://bongacams.com/=%
set model=%model:/=%

setlocal enableDelayedExpansion
set OUT_DIR=bongacams\%model%
if not exist %OUT_DIR% (mkdir %OUT_DIR%)

streamlink https://bongacams.com/%model% best -o "%OUT_DIR%\%file%_%model%.flv"

Last edited by ihryjfbd : 04-29-2017 at 08:55 PM.
Reply With Quote
  #35  
Old 04-30-2017, 05:25 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: Bongacams record in Away mode or PRVT?


Quote:
Originally Posted by troller12 View Post
So streamlink does use the bonga script = plugin.You have to read the script to see what it does.
Code:
    def _get_stream_uid(self, username):
        m = md5(username.encode('utf-8') + str(time.time()).encode('utf-8'))
        return m.hexdigest()
It builds a MD5 hash from username & time = unique MD5 hash (because time is always else of course) which get used one time.If you would make a re-call with same hash then you get rejected by server to access the stream as I said before.Server does check the hash you did send and must do a check whether this hash was already send or not (compare logs) and if the hash was found then it will reject the access till the logged hash get expired in the log etc.Its just a verify check to prevent calling the stream more than one time with same hash.There are also other cam sites using hash log & checks to prevent the same.Mostly depends on stream IP + Model X + hash.In this case if you want to play & record the stream same time and using same stream datas then it will fail.In this case just change the hash a little and then you can do both.Other sites only allow to use one stream server address for one instance only like CB (free users / I am no member) and then you need to change the server address number to call another or same stream too.If you check CB then you see they have a lot addresses from 0 - 100 + you can use and also diffrent server names you can use or switch.

As I already said you just need to build any unique MD5 hash and use it for your playpath after modelname.

The script does use hashlib import md5 to build a MD5 hash.So if you code in any not scripting language then you could use cryptohash.lib for example to build MD5 hashes or also many other hashes etc.

greetz
If bongacams is worth the effort, maybe just changing one digit manually in a hash would work.

As I found out from research MD5 is something like cow to steak, steak to cow, so they don't know themselves really what they are getting back as long as hash is different and number of digits counts, and no matter what digits, is ok.

http://stackoverflow.com/questions/1...ypt-md5-hashes

Last edited by j_cool : 04-30-2017 at 06:30 AM.
Reply With Quote
  #36  
Old 07-17-2017, 08:15 AM
JasonSm JasonSm is offline
Junior Member
 
Join Date: Mar 2017
Posts: 20
JasonSm is on a distinguished road
Default

Re: Bongacams record in Away mode or PRVT?


looks like streamlink plugin doesn`t work for now. Well, we should wait some new release, maybe after that everything will be okay again.
Reply With Quote
  #37  
Old 09-13-2017, 04:26 PM
Damianonymous Damianonymous is offline
Senior Member
 
Join Date: Jan 2017
Posts: 187
Damianonymous is on a distinguished road
Default

Re: Bongacams record in Away mode or PRVT?


You can test the repaired plugin in the new Streamlink version:

https://github.com/streamlink/stream...ases/tag/0.8.1
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 02:13 AM.


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