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
  #21  
Old 01-31-2017, 02:59 PM
Moonspell Moonspell is offline
Senior Member
 
Join Date: Sep 2016
Posts: 227
Moonspell is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Quote:
Originally Posted by ihryjfbd View Post
Ok try this instead, created the model folder for me just recording kokette22 now.

Code:
set OUT_DIR=C:\captures
set SECONDS=15

set /p model=Enter username: 
set model=%model:https://chaturbate.com/=%
set model=%model:/=%

if not exist %OUT_DIR% (mkdir %OUT_DIR%)
to

Code:
set SECONDS=15

set /p model=Enter username: 
set model=%model:https://chaturbate.com/=%
set model=%model:/=%

set OUT_DIR=captures\%model%


if not exist %OUT_DIR% (mkdir %OUT_DIR%)
minFileSizeMb??
you could add this which clear the folder of all zero byte files.

Code:
:doCapture
for /r %%F in (*) do if %%~zF==0 @del "%%F"
where to add, exactly the lines for remove the 0kb files?
I mean, if i do add in the main script, after the "do capture" part, it doesn't work at all...
Reply With Quote
  #22  
Old 01-31-2017, 07:20 PM
ihryjfbd ihryjfbd is offline
Senior Member
 
Join Date: Oct 2015
Posts: 212
ihryjfbd is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Odd it worked here np, what version of windows you running???

Here's the latest script

Code:
@echo off
setlocal enableDelayedExpansion

set USERNAME=AnonymousUser
set PASSWORD=anonymous
set CB_VERSION=9

set SECONDS=15

set /p model=Enter username: 
set model=%model:https://chaturbate.com/=%
set model=%model:/=%

set OUT_DIR=captures\%model%

if not exist %OUT_DIR% (mkdir %OUT_DIR%)

for /L %%i in (1,1,99) do (
  set N=!time:~9,12!
  set /a N=10000!N! %% 10000
  set rand=!random!
  set /a rand=!rand!* 31/32768+1
  set /a rand=!N!+!rand!
  set /a rand=!rand!*31/131+1
)
set server=edge%rand%

:doCapture
for /r %%F in (*) do if %%~zF==0 @del "%%F"
set ts=%date:/=-%_%time::=-%
set ts=%ts: =%
set output=%OUT_DIR%\%model%_%ts%.flv
set PASSWORD=%PASSWORD:\u003D==%

color 2F && title %model% @ %time% - %server%
cls && echo Capturing: %model% @ %time% - %server% && echo.

rtmpdump --live --timeout 20 ^
-r "rtmp://%server%.stream.highwebmedia.com/live-edge" ^
-p "http://chaturbate.com/%model%" ^
-C S:%USERNAME% ^
-C S:%model% ^
-C S:%CB_VERSION% ^
-C S:%PASSWORD% ^
-y "playpath" -o %output%

for %%r in (%output%) do (
  if %%~zr lss 1 del %output%
  color 4F && title %model% - OFFLINE
)

set /a rand=%random%*31/32768+1
set server=edge%rand%

timeout %SECONDS%
goto doCapture
Reply With Quote
  #23  
Old 02-01-2017, 06:30 PM
Moonspell Moonspell is offline
Senior Member
 
Join Date: Sep 2016
Posts: 227
Moonspell is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


confirm, work perfectly, I made a mistake, on the code, earlier, in the copy-paste, but it works 100%.
Thanks a lot
And I add also, it works smoothly on windows 10
Reply With Quote
  #24  
Old 02-01-2017, 07:29 PM
Damianonymous Damianonymous is offline
Senior Member
 
Join Date: Jan 2017
Posts: 187
Damianonymous is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


For individual downloads use scripts ihryjfbd, since failure ChaturbateRec, it works perfectly and is easy to use and requires only rtmpdump. There is a second script using Livestreamer but there are errors in it,and most recently plugin needed a few amendments. To mass downloads on my Windows 7 with rtmpdump, works https://github.com/sstativa/capturebate-node (Node.js) and
https://github.com/falsovsky/chaturbate (Python).
Reply With Quote
  #25  
Old 02-04-2017, 09:44 PM
kcraptor82 kcraptor82 is offline
Junior Member
 
Join Date: Feb 2017
Posts: 1
kcraptor82 is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


I have looked at various sites, and even forums, but still can't figure out how to do any of this? Is there a site or can someone put a guide together explaining how the hell do you do this? I'm basically asking for a idiots guide to recording chaturbate. I have tried to set this up under a linux VM, no go. Tried Windows, no go. So reading thru this particular post it seems there is a easy way to do this but it keeps escaping me.
Reply With Quote
  #26  
Old 02-05-2017, 02:41 AM
Damianonymous Damianonymous is offline
Senior Member
 
Join Date: Jan 2017
Posts: 187
Damianonymous is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


1) Copy the script to notepad
2) Save as chaturbate.bat
3) Download https://github.com/K-S-V/Scripts/releases
4) Chaturbate.bat and rtmpdump.exe, place it in the same folder
5) click chaturbate.bat and enter the model name or link.
Reply With Quote
  #27  
Old 02-05-2017, 03:19 AM
confused.com confused.com is offline
Senior Member
 
Join Date: Jan 2017
Posts: 165
confused.com is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Quote:
Originally Posted by kcraptor82 View Post
I'm basically asking for a idiots guide to recording chaturbate.
http://stream-recorder.com/forum/sho...36&postcount=5

https://streamlink-builds.s3.amazona...ink-latest.exe

Last edited by confused.com : 02-05-2017 at 04:14 AM.
Reply With Quote
  #28  
Old 02-25-2017, 03:01 PM
korexaj korexaj is offline
Member
 
Join Date: Feb 2017
Posts: 63
korexaj is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


Quote:
Originally Posted by ihryjfbd View Post
Odd it worked here np, what version of windows you running???

Here's the latest script

Code:
@echo off
setlocal enableDelayedExpansion

set USERNAME=AnonymousUser
set PASSWORD=anonymous
set CB_VERSION=9

set SECONDS=15

set /p model=Enter username: 
set model=%model:https://chaturbate.com/=%
set model=%model:/=%

set OUT_DIR=captures\%model%

if not exist %OUT_DIR% (mkdir %OUT_DIR%)

for /L %%i in (1,1,99) do (
  set N=!time:~9,12!
  set /a N=10000!N! %% 10000
  set rand=!random!
  set /a rand=!rand!* 31/32768+1
  set /a rand=!N!+!rand!
  set /a rand=!rand!*31/131+1
)
set server=edge%rand%

:doCapture
for /r %%F in (*) do if %%~zF==0 @del "%%F"
set ts=%date:/=-%_%time::=-%
set ts=%ts: =%
set output=%OUT_DIR%\%model%_%ts%.flv
set PASSWORD=%PASSWORD:\u003D==%

color 2F && title %model% @ %time% - %server%
cls && echo Capturing: %model% @ %time% - %server% && echo.

rtmpdump --live --timeout 20 ^
-r "rtmp://%server%.stream.highwebmedia.com/live-edge" ^
-p "http://chaturbate.com/%model%" ^
-C S:%USERNAME% ^
-C S:%model% ^
-C S:%CB_VERSION% ^
-C S:%PASSWORD% ^
-y "playpath" -o %output%

for %%r in (%output%) do (
  if %%~zr lss 1 del %output%
  color 4F && title %model% - OFFLINE
)

set /a rand=%random%*31/32768+1
set server=edge%rand%

timeout %SECONDS%
goto doCapture
can someone convert this for mac os please
Reply With Quote
  #29  
Old 02-25-2017, 05:08 PM
Moonspell Moonspell is offline
Senior Member
 
Join Date: Sep 2016
Posts: 227
Moonspell is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


sorry, i never had apple device, so... i can't help for mac.
Reply With Quote
  #30  
Old 02-25-2017, 06:34 PM
xethubao xethubao is offline
Junior Member
 
Join Date: Feb 2017
Posts: 15
xethubao is on a distinguished road
Default

Re: Chaturbate Sample Rtmpdump


dịch vá»? chuy???‰n nha?€ tro??n go??i: Taxi ta?‰i tro??n go??i: 0437 733 733
B??n cá??nh Ä‘??, dịch vá»? chuyá»?n nh?* trá»?n g??i c?©ng bị nhiá»?u kh??ch h?*ng phá??n ??nh l?* k?©m chá??t l?°á»?ng. Anh Phá??m Hồng Ph?? á»? ph?°á»?ng Việt H?°ng,
Chuy???‰n nha?€ tro??n go??i: Taxi tá??i trá»?n g??i Thá»?i gian qua, má»™t số trung t??m thá»? dá»?c thá?©m má»?, yoga tr??n địa b?*n H?* Ná»™i Ä‘?? tung ra h?*ng loá??t dịch vá»? â€?trá»?n g??i’ cho kh??ch h?*ng. Theo Ä‘??, khi thanh to??n tr?°á»›c má»™t khoá??n tiá»?n nhá??t định, kh??ch h?*ng sá?? Ä‘?°á»?c sá»* dá»?ng dịch vá»? trong v??ng 3 nÄ?m, 5 nÄ?m, thá?*m ch?* l?* 10 nÄ?m.

Ná??u so s??nh vá»›i việc trá?? theo th??ng th?¬ g??i n?*y rá?» h??n nhiá»?u, do Ä‘?? Ä‘?? há??p dá?«n Ä‘?°á»?c má»™t bá»™ phá?*n kh??ch h?*ng. Chị V?© Thị An á»? ph?°á»?ng Kim M??, quá?*n Ba Ä??¬nh, H?* Ná»™i cho biá??t, 6 th??ng tr?°á»›c khi Ä‘á??n má»™t trung t??m thá»? dá»?c thá?©m má»? v?* yoga á»? quá?*n T??y Hồ, chị Ä‘?°á»?c nh??n vi??n tá??i Ä‘??y t?° vá??n, vá»›i số tiá»?n 100 triệu đồng chị An sá?? Ä‘?°á»?c sá»* dá»?ng c??c dịch vá»? trá»?n g??i tốt nhá??t tá??i Ä‘??y trong v??ng 10 nÄ?m li??n tá»?c.

Theo Ä‘??, chị An sá?? Ä‘?°á»?c sá»* dá»?ng ph??ng tá??m, ph??ng tá?*p ri??ng c??ng má»™t số ?°u Ä‘??i Ä‘á?·c biệt chỉ d?*nh cho kh??ch h?*ng VIP. Nghe b??i tai v?* nhá?*n thá??y mức ph?* â€?trá»?n g??iâ€? ná»™p 1 lá?§n rá?» h??n nhiá»?u so vá»›i việc thanh to??n từng nÄ?m n??n chị An k?? há»?p đồng. Tuy vá?*y chỉ sau má»™t thá»?i gian ngá??n tá?*p luyện, chị An Ä‘?? tá»? ra thá??t vá»?ng.



Kh??ch h?*ng cá?§n lá»±a chá»?n dịch vá»? chÄ?m s??c sức khá»?e trá»?n g??i của nh?* cung cá??p c?? uy t?*n

Theo chị, d?? cam ká??t kh??ch h?*ng VIP sá?? Ä‘?°á»?c h?°á»?ng dịch vá»? vá»›i chá??t l?°á»?ng tốt nhá??t nh?°ng nh?* cung cá??p kh?´ng thá»±c hiện nghi??m t??c lá»?i hứa n?*y. Ä?á»? tÄ?ng doanh thu, há»? Ä‘?? triá»?n khai h?*ng loá??t ch?°??ng tr?¬nh khuyá??n m??i b??n dịch vá»? ngá??n há??n vá»›i gi?? rá?» khiá??n l?°á»?ng kh??ch v?*o trung t??m tÄ?ng Ä‘á»™t biá??n l?*m cho c??c ph??ng tá?*p, ph??ng tá??m… th?°á»?ng xuy??n qu?? tá??i, k?©o theo Ä‘iện, n?°á»›c phá?*p ph?? l?*m á??nh h?°á»?ng trá»±c tiá??p Ä‘á??n kh??ch h?*ng VIP.

â€?Do qu?? ná??n, t?´i v?* má»™t số kh??ch h?*ng kh??c c?? ?? định chá??m dứt há»?p đồng tr?°á»›c thá»?i há??n Ä‘á»? chuyá»?n sang trung t??m kh??c nh?°ng Ä‘iá»?u Ä‘?? c?©ng đồng nghÄ©a vá»›i việc ch??ng t?´i sá?? má??t kh?´ng to?*n bá»™ số tiá»?n Ä‘?? ná»™p. H??n ná»?a, trong vÄ?n bá??n Ä‘?? k?? giá»?a hai b??n c?©ng kh?´ng c?? Ä‘iá»?u khoá??n n?*o quy định vá»? tr??ch nhiệm của b??n cung cá??p dịch vá»? ná??u chá??t l?°á»?ng kh?´ng Ä‘?°á»?c nh?° cam ká??t n??n x?©t cho c??ng, ch??ng t?´i l?* ng?°á»?i ná??m dao Ä‘á?±ng l?°á»?iâ€?, chị An thá»? d?*i.

Kh?´ng chỉ c?? trung t??m thá»? dá»?c thá?©m má»?, hiện má»™t số trung t??m ngoá??i ngá»? c?©ng t?¬m c??ch thu h??t sá»± ch?? ?? của phá»? huynh bá?±ng c??c kh??a há»?c â€?trá»?n g??iâ€? vá»›i thá»?i gian từ 2-5 nÄ?m vá»›i há»?c ph?* h?*ng chá»?c triệu đồng. Tuy vá?*y, Ä‘iá»?u Ä‘??ng n??i l?* trong há»?p đồng k?? ká??t giá»?a hai b??n c?©ng kh?´ng há»? xuá??t hiện Ä‘iá»?u khoá??n vá»? tr??ch nhiệm của trung t??m trong tr?°á»?ng há»?p há»? kh?´ng thá»±c hiện Ä‘??ng cam ká??t. Do Ä‘??, trong tr?°á»?ng há»?p há»?c vi??n há»?c tá?*p kh?´ng hiệu quá?? hoá?·c trung t??m Ä‘á»™t ngá»™t dừng hoá??t Ä‘á»™ng hay chuyá»?n Ä‘i n??i kh??c, chỉ kh??ch h?*ng l?* ng?°á»?i chịu thiệt.

…đá??n dịch vá»? sức khá»?e, chuyá»?n nh?* trá»?n g??i

Ngo?*i c??c dịch vá»? tr??n, thá»?i gian qua má»™t số ng?°á»?i d??n c??n sá»* dá»?ng dịch vá»? sức khá»?e trá»?n g??i. Khi sá»* dá»?ng dịch vá»? n?*y, ng?°á»?i bệnh Ä‘?°á»?c cá??p thá?» há»™i vi??n, Ä‘?°á»?c quan t??m, chÄ?m s??c sức khá»?e to?*n diện. Hồ s?? kh??ch h?*ng Ä‘?°á»?c l?°u tá??i c??c Ä‘??n vị cung cá??p dịch vá»? v?* theo định ká»? kh??ch h?*ng Ä‘?°á»?c th?´ng b??o Ä‘á??n kh??m sức khá»?e. Tuy Ä‘?°á»?c quá??ng c??o l?* â€?trá»?n g??iâ€? song Ä‘á??n thá»?i Ä‘iá»?m hiện tá??i, gá?§n nh?° chỉ c?? dịch vá»? sinh sá??n l?* trá»?n g??i theo Ä‘??ng nghÄ©a.

B??n cá??nh Ä‘??, dịch vá»? chuyá»?n nh?* trá»?n g??i c?©ng bị nhiá»?u kh??ch h?*ng phá??n ??nh l?* k?©m chá??t l?°á»?ng. Anh Phá??m Hồng Ph?? á»? ph?°á»?ng Việt H?°ng, quá?*n Long Bi??n, H?* Ná»™i chia sá?», c??ch Ä‘??y v?*i th??ng anh Ä‘?? thu?? má»™t Ä‘??n vị chuyá»?n nh?* trá»?n g??i vá»›i mức ph?* kh?? rá?».

Theo cam ká??t của b??n cung cá??p dịch vá»?, anh Ph?? chỉ cá?§n thanh to??n tiá»?n, cung cá??p địa chỉ má»›i cá?§n chuyá»?n Ä‘á??n, c??n việc lau ch??i, Ä‘??ng g??i, vá?*n chuyá»?n, sá??p xá??p đồ Ä‘á??c b??n cung cá??p dịch vá»? sá?? lo to?*n bá»™. Tuy vá?*y, trong qu?? tr?¬nh chuyá»?n nh?*, anh Ph?? Ä‘?? phá??i thanh to??n th??m h?*ng loá??t c??c chi ph?* ph??t sinh nh?° tiá»?n th??o lá??p thiá??t bị, tiá»?n l?*m vệ sinh đồ Ä‘á??c, tiá»?n thu?? ng?°á»?i vá?*n chuyá»?n đồ từ ngo?*i ng?µ v?*o trong nh?*.

Kh?´ng nhá»?ng thá??, vá»? chồng anh c??n phá??i ?¨ cổ thu dá»?n, mang v??c đồ Ä‘á??c. â€?Tổng chi ph?* ph??t sinh xá??p xỉ bá?±ng tiá»?n dịch vá»? trá»?n g??i t?´i Ä‘?? thanh to??n, song Ä‘?*nh chịu do kh?´ng thoá?? thuá?*n ká»? ngay từ Ä‘á?§uâ€?, anh Ph?? cho biá??t.

L?? do ch?*nh khiá??n nhá»?ng dịch vá»? mang t??n â€?trá»?n g??iâ€? thu h??t sá»± quan t??m của nhiá»?u ng?°á»?i d??n chá??ng qua l?* Ä‘??nh tr??ng t??m l?? muốn Ä‘?°á»?c h?°á»?ng dịch vá»? chá??t l?°á»?ng cao vá»›i chi ph?* thá??p. Song theo luá?*t s?° Ho?*ng Huy Ä??°á»?c - Ph?? Chủ nhiệm Ä?o?*n Luá?*t s?° H?* Ná»™i, ná??u kh?´ng Ä‘á»?c ká»? há»?p đồng tr?°á»›c khi Ä‘á?·t b??t k??, kh??ch h?*ng sá?? tá»± Ä‘á?©y m?¬nh v?*o ho?*n cá??nh bá??t lá»?i.

Bá»?i há?§u há??t c??c há»?p đồng trá»?n g??i Ä‘á»?u do b??n cung cá??p dịch vá»? Ä‘?°a ra vá»›i c??c Ä‘iá»?u khoá??n soá??n sá?µn, trong Ä‘?? chủ yá??u n??i vá»? nghÄ©a vá»? của kh??ch h?*ng, há?§u nh?° kh?´ng Ä‘á»? cá?*p Ä‘á??n tr??ch nhiệm ph??p l?? của b??n cung cá??p dịch vá»?. B??n cá??nh Ä‘??, tr?°á»›c khi sá»* dá»?ng dịch vá»?, kh??ch h?*ng há?§u nh?° phá??i thanh to??n 100% ph?* n??n trong tr?°á»?ng há»?p ná??u kh?´ng thá»?a m??n vá»? chá??t l?°á»?ng dịch vá»?, kh??ch h?*ng c?? muốn chá??m dứt há»?p đồng c?©ng kh?´ng thá»? Ä‘??i lá??i Ä‘?°á»?c tiá»?n n??n Ä‘?*nh â€?Ä‘??m lao phá??i theo lao
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:31 PM.


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