ecoeco
01-21-2017, 08:27 AM
Hello,
i think chaturbate have recently changed up their rtmp protocol. Can somebody with rtmpdump helper or sniffer can post a sample rtmpdump command, as the old one no longer works..?
Thanks guys.
troller12
01-21-2017, 01:39 PM
Hi,
so what does not work?All working.Just check your paramters you do use.Only thing what they changed is adding more server addresses and protocol is still same.
greetz
rykorb
01-21-2017, 04:19 PM
I think there may be an issue in resolving the rtmp stream URL as I'm having the same issue with livestreamer.
I keep getting an error that there is no stream, even though there clearly is. Example below. Apologies if any of the below is wrong, i dont normally manually run the commands, Capturebate normally takes care of this for me.
$ livestreamer rtmp://chaturbate.com/caylin best
[cli][info] Found matching plugin stream for URL rtmp://chaturbate.com/caylin
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (rtmp)
[cli][error] No data returned from stream
ecoeco
01-21-2017, 11:34 PM
So this is my default old command @troller12:
rtmpdump -r rtmp://edge50.stream.highwebmedia.com -p https://de.chaturbate.com/beryl18/ -C S:AnonymousUser -C S:beryl18 -C S:9 -C S:anonymous -y playpath -o /home/user/public_html/test.mp4
What am i missing :/
Hope anyone can help.
ihryjfbd
01-22-2017, 01:48 AM
@echo off
setlocal enableDelayedExpansion
set USERNAME=AnonymousUser
set PASSWORD=anonymous
set CB_VERSION=9
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%)
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
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
mike9274
01-22-2017, 02:49 AM
hi
i am new here i was using livestreamer but it doesn't seem to work anymore can someone help?
thanks
ecoeco
01-22-2017, 03:19 AM
i get this:
Connecting ...
INFO: Connected...
ERROR: rtmp server sent error
ERROR: rtmp server requested close
wrapped_it_up_and_sent_it
01-22-2017, 05:14 AM
I think there may be an issue in resolving the rtmp stream URL as I'm having the same issue with livestreamer.
I keep getting an error that there is no stream, even though there clearly is. Example below. Apologies if any of the below is wrong, i dont normally manually run the commands, Capturebate normally takes care of this for me.
$ livestreamer rtmp://chaturbate.com/caylin best
[cli][info] Found matching plugin stream for URL rtmp://chaturbate.com/caylin
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (rtmp)
[cli][error] No data returned from streamWhat's the likelihood of them fixing this on their end? Livestreamer hasn't been updated for about a year and a half. Of course this happens just as someone comes online for a good stream. :(
But for what it's worth, I just tested my capturebate-node setup on Windows and it works, and that's with all the components being outdated.
mike9274
01-22-2017, 05:31 AM
is there anything like livestreamer i can use thats easy to understand?
pretty much a noob about this stuff
rykorb
01-22-2017, 01:02 PM
Details on how to fix livestreamer can be found here:
https://github.com/chrippa/livestreamer/issues/1569
This thread also make mention of streamlink, a fork of livestreamer, which is still being updated.
troller12
01-22-2017, 02:09 PM
Hi again,
@ ecoeco
So not all paramter you have to use are static.Also in your default example there is no app paramter you have to use.Also remember not to use the edge value twice just once to play or record or the rtmp stream.Below a example....
rtmpdump -v -r "rtmp://edge??.stream.highwebmedia.com/live-edge" -p "https://chaturbate.com" -C S:AnonymousUser -C S:Modelxy -C S:2.651 -C S:anonymous -y "mp4:......." | "player" -
...use it like this.Dynamics are server address and the playpath of course.For ?? you can diffrent values from none till over 80 also you can use a / b too to have more addresses.If you hit same address twice then you get a failed message (now switch value).Remember that also not all slots are available everyday.
About playlist.So if you want to use Livestreamer then you should grab the m3u8 links directly from each model page and execute it with LS to play or record them.
[cli][info] Found matching plugin stream for URL hlsvariant://https://edge54.str
eam.highwebmedia.com/live-edge/modelxy-sd-..._fast_aac/playlist.m3u8
[cli][info] Available streams: 480p (worst, best)
[cli][info] Opening stream: 480p (hls)
[cli][info] Starting player: C:\Programme\MPC-HC\mpc-hc.exe
So I didnt try the latest LS version now but the simple way to use just the sitename/model dosent work with that LS version 1.12.2 and I get "Could not open stream: Missing #EXTM3U header".
PS: Just use RtmpDumpHelper to grab the stream paramters or other tools etc.If RtmpDumpHelper dosent work (OS isuue etc) then you could use rtmpsuck alone + hooking connect API sending the datas to your localhost address.So there are some methods you could try.
greetz
wrapped_it_up_and_sent_it
01-22-2017, 09:52 PM
Details on how to fix livestreamer can be found here:
https://github.com/chrippa/livestreamer/issues/1569
This thread also make mention of streamlink, a fork of livestreamer, which is still being updated.Thanks for highlighting this, managed to fix capturebate on my Raspberry Pi with this.
In case there's anyone out there looking for specific steps to fix their own livestreamer-based capturebate setup on Raspi (and likely anything Linux), then you simply need to:
cd /usr/lib/python2.7/dist-packages/livestreamer/plugins
sudo nano chaturbate.py
Then replace
_playlist_url_re = re.compile("html \+= \"src='(?P<url>[^']+)'\";")
with
_playlist_url_re = re.compile("loadHlsVideo\('(?P<url>[^']+)")
Hit Ctrl+X, press y, and enter. This will save the file. It should now work. The inital directory might be different depending on your python version.
j_cool
01-23-2017, 01:56 AM
RtmpdumpHelper / Rtmpsuck fail more and more often.
Is it rtmpsuck that fails or man in the middle ?
This is not clear to me:
quote:
If RtmpDumpHelper dosent work (OS isuue etc) then you could use rtmpsuck alone + hooking connect API sending the datas to your
localhost address.
Can you post some link to read more about this or to working example?
troller12
01-23-2017, 05:23 AM
Hi,
if RtmpdumpHelper / Rtmpsuck fail etc then check whether you did add the right port or range into the list to scan for.Also check the browser you do use so Chrome can make trouble (I dont use it).
If you fail to get any stream data then its a rtmpsuck issue or stream is protected etc.
Mostly I dont use Rtmpdump anymore and just in/de-ject my own hook dll into the process to pipe to localhost and using rtmpsuck to show / read the stream datas without to record files.So there are no infos / examples so far and I just made it by myself.Maybe its not a good info I did post for none coder people.
greetz
j_cool
01-23-2017, 05:49 AM
Good info to me though I cannot code my own dll,
or code on rtmpsuck.
guestbuy
01-23-2017, 03:16 PM
Is there a current branch of CaptureBate? I only see the one dated 2015.
Moonspell
01-26-2017, 11:44 AM
@echo off
setlocal enableDelayedExpansion
set USERNAME=AnonymousUser
set PASSWORD=anonymous
set CB_VERSION=9
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%)
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
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
Brilliant, pretty easy and well done batch :)
ihryjfbd
01-27-2017, 06:42 AM
Thanks could do with a few more statements than error or offline, anyone know the codes for group, private, ticket shows?
Can you try changing these too let me know if it create a folder for each model.
set OUT_DIR=C:\captures
set SECONDS=15
set /p model=Enter username:
set SECONDS=15
set /p model=Enter username:
set OUT_DIR=C:\captures\%model%
Not sure if the drive letter is real requirement or you can just set to dump in the current dictionary as rtmpdump.
Damianonymous
01-29-2017, 05:41 PM
%model% does not create a subfolder for the model. The drive letter is not needed, just set OUT_DIR=captures. The script works very well, if you can, add a function minFileSizeMb: ;)
P.S if you can clear the mail box (messages sent) You can not contact you ;)
http://stream-recorder.com/forum/private.php?s=&pp=&folderid=-1
ihryjfbd
01-31-2017, 09:50 AM
Ok try this instead, created the model folder for me just recording kokette22 now.
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
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.
:doCapture
for /r %%F in (*) do if %%~zF==0 @del "%%F"
Moonspell
01-31-2017, 01:59 PM
Ok try this instead, created the model folder for me just recording kokette22 now.
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
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.
: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...
ihryjfbd
01-31-2017, 06:20 PM
Odd it worked here np, what version of windows you running???
Here's the latest script
@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
Moonspell
02-01-2017, 05:30 PM
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
Damianonymous
02-01-2017, 06:29 PM
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).
kcraptor82
02-04-2017, 08:44 PM
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.
Damianonymous
02-05-2017, 01:41 AM
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.
confused.com
02-05-2017, 02:19 AM
I'm basically asking for a idiots guide to recording chaturbate.
http://stream-recorder.com/forum/showpost.php?p=89636&postcount=5
https://streamlink-builds.s3.amazonaws.com/nightly/windows/streamlink-latest.exe
korexaj
02-25-2017, 02:01 PM
Odd it worked here np, what version of windows you running???
Here's the latest script
@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
Moonspell
02-25-2017, 04:08 PM
sorry, i never had apple device, so... i can't help for mac.
xethubao
02-25-2017, 05:34 PM
dịch vá»? chuy???‰n nha?€ tro??n go??i (http://dichvuchuyennhatrongoi.org.vn/): 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 (http://dichvuchuyennhatrongoi.org.vn/): Taxi tá??i trá»?n g??i (http://dichvuchuyennhatrongoi.org.vn/) 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 (http://dichvuchuyennhatrongoi.org.vn/) 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.
http://vovgiaothong.vn/2016/BICH%20PHUONG/THANG6/22/vovgiaothong_8_37_dich_vu.jpg
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á»? (http://dichvuchuyennhatrongoi.org.vn/) 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
ynwa_lfc
02-28-2017, 03:06 PM
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.
Thanks for these simple instructions, even i was able to follow them!
Is it possible to view rooms once even if they are in private or a ticket show?
Damianonymous
03-01-2017, 12:45 AM
I am also curious but no one publicly give this method, because administrators Chaturbate read the forum and regularly patch up holes.
ynwa_lfc
03-01-2017, 01:45 PM
I am also curious but no one publicly give this method, because administrators Chaturbate read the forum and regularly patch up holes.
That makes sense, if anyone could PM me that would be great :)
Got a few PM's asking if anyone has told me already (i havent unfortunately :D)
genius20
03-09-2017, 03:55 AM
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.
Is there a way to record sound too?
Chakhal
03-09-2017, 07:38 AM
Is there a way to record sound too?
Works for me. Audio and video
Damianonymous
03-09-2017, 06:43 PM
Is there a way to record sound too?
Yes, Speex audio format.
jnektar
03-14-2017, 07:14 AM
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.
This is easy even for a techno-fool like me to follow. But I am getting an error on entering model name:
rtmpdump not recognised as int or ext command, operative program or batch file.
I googled it and tried to edit Path without success. Can someone walk me through a simple step by step (like the above quoted one) to fix this. I am on W7.
TIA.
Damianonymous
03-14-2017, 01:39 PM
You can paste the screenshot command window. Such an error gets when you do not have rtmpdump in the same folder as the script.
jnektar
03-15-2017, 10:50 AM
460You can paste the screenshot command window. Such an error gets when you do not have rtmpdump in the same folder as the script.
Thanks. I had the script and rtmpdump in a folder but the script was not in the rtmpdump folder LOL.
It now works but how do I save the stream? As you can tell I know nothing. I have searched but cannot find answer. It must be too basic a question (:
justinyo
03-15-2017, 03:25 PM
Hi bros..
Is anyone help about record c4 and cb private records... Really make me happy... pm please...
thnks.
Moonspell
03-15-2017, 04:00 PM
for record the privates, you need to goes in private, and register the private with a program like.. replay media catcher, it will work perfectly
Damianonymous
03-16-2017, 06:36 AM
Thanks. I had the script and rtmpdump in a folder but the script was not in the rtmpdump folder LOL.
It now works but how do I save the stream? As you can tell I know nothing. I have searched but cannot find answer. It must be too basic a question (:
If I understand well what you ask, the latest Scrypt ihryjfbd saves video in the same folder. Responsible for the storage location is a line; set OUT_DIR=captures\%model% Here you can change the location or remove %model% which make that video will not be categorized in subfolders.
jnektar
03-16-2017, 07:25 AM
If I understand well what you ask, the latest Scrypt ihryjfbd saves video in the same folder. Responsible for the storage location is a line; set OUT_DIR=captures\%model% Here you can change the location or remove %model% which make that video will not be categorized in subfolders.
Thanks. I found them!
The script downloads flv to c://captures :)
Unfortunately the flv has no sound :confused: which I need.
Any ideas?
troller12
03-16-2017, 11:52 AM
Hi,
if your model has sound and your recorded file/s not then its a Rtmpdump (librtmp) issue.In other rarly cases it can happen with the video track too and you only have just the sound track or the flv file headers are wrong (also cant fix this anymore).The missing sound track problem happens most if this happens.
So if you need your record with sound then just check the record on fly after few seconds in VLC player for example and check the codec infos to see whether you have a sound track.If not then stop the record and start a new so long till you got it.Just test a little.
greetz
jnektar
03-17-2017, 01:50 AM
Hi,
if your model has sound and your recorded file/s not then its a Rtmpdump (librtmp) issue.In other rarly cases it can happen with the video track too and you only have just the sound track or the flv file headers are wrong (also cant fix this anymore).The missing sound track problem happens most if this happens.
So if you need your record with sound then just check the record on fly after few seconds in VLC player for example and check the codec infos to see whether you have a sound track.If not then stop the record and start a new so long till you got it.Just test a little.
greetz
Thanks. All working now. Not sure why sound didn't record before but seems to be recording sound all the time now. :)
Ayato
03-30-2017, 05:11 AM
Hello guys
Thank you for this great topic, it works fine for me.
Do you know if there is a way to capture discussions too ?
I find this host : rtmp://chatws-25.highwebmedia.com/live-chat (and eventually this one : https://chatws\u002D25.stream.highwebmedia.com/ws).
The connexion with rtmpdump works for the first but doesn't capture anything. I know rtmp is for .flv file especially but it seems Chaturbate make it chat work too under rtmp..
What do you think about it ?
Thank you all
ihryjfbd
03-30-2017, 08:54 PM
Hello guys
Thank you for this great topic, it works fine for me.
Do you know if there is a way to capture discussions too ?
I find this host : rtmp://chatws-25.highwebmedia.com/live-chat (and eventually this one : https://chatws\u002D25.stream.highwebmedia.com/ws).
The connexion with rtmpdump works for the first but doesn't capture anything. I know rtmp is for .flv file especially but it seems Chaturbate make it chat work too under rtmp..
What do you think about it ?
Thank you all
http://stream-recorder.com/forum/showpost.php?p=87235&postcount=5
tvgplayer
04-13-2017, 01:10 PM
The latest streamlink chaturbate.py still working:
https://github.com/back-to/streamlink/blob/277d064051e9166f61df315ae04cc71011a61e98/src/streamlink/plugins/chaturbate.py
dtoxxx69
04-15-2017, 03:13 PM
The latest streamlink chaturbate.py still working:
https://github.com/back-to/streamlink/blob/277d064051e9166f61df315ae04cc71011a61e98/src/streamlink/plugins/chaturbate.py
hey - is anyone out there able to help me setup automated chaturbate recording using streamline?
I used to use capturebate with livestreamer but this is now broken
tvgplayer
04-15-2017, 03:47 PM
As I said in my previous post that chaturbate.py is still working. Just replace with the updated chaturbate.py file.
streamlink "https://chaturbate.com/celeste_k/" best
dtoxxx69
04-15-2017, 04:53 PM
As I said in my previous post that chaturbate.py is still working. Just replace with the updated chaturbate.py file.
streamlink "https://chaturbate.com/celeste_k/" best
hey - thanks but the problem I have is that the capturebate install I use is based on livestreamer
I've tried replacing the .py file with the above, but it fails because streamlink isn't installed
from what i can see capturebate creates .sh files that call livestreamer and I can't work out how to repurpose these for streamlink
tvgplayer
04-15-2017, 07:04 PM
hey - thanks but the problem I have is that the capturebate install I use is based on livestreamer
I've tried replacing the .py file with the above, but it fails because streamlink isn't installed
from what i can see capturebate creates .sh files that call livestreamer and I can't work out how to repurpose these for streamlink
Streamlink is based on livestreamer which is now obsolete. Just install streamlink and the updated chaturbate.py will work. It's easy. I record chaturbate videos with VLC every day this way.
Damianonymous
04-16-2017, 02:34 PM
hey - thanks but the problem I have is that the capturebate install I use is based on livestreamer
I've tried replacing the .py file with the above, but it fails because streamlink isn't installed
from what i can see capturebate creates .sh files that call livestreamer and I can't work out how to repurpose these for streamlink
Have you changed chaturbate.py to streamlink name on livestreamer?
from livestreamer.plugin import Plugin
from livestreamer.plugin.api import http
from livestreamer.plugin.api import validate
from livestreamer.stream import HLSStream
dtoxxx69
04-16-2017, 04:37 PM
Awesome - thanks both
Streamlink installed, then threw an error
Damian's tip solved it
appreciate the help fellas
kieudienk
04-16-2017, 09:27 PM
H?* Ná»™i k??u gá»?i ng?°á»?i d??n Má»? Ä?ức thá?? c?´ng an bị bá??t giá»?
H??n 30 ng?°á»?i trong Ä‘?? c?? nhiá»?u cá??nh s??t c?? động Ä‘?? bị má»™t số ng?°á»?i d??n x?? Ä?ồng T??m (Má»? Ä?ức, H?* Ná»™i) bá??t giá»? Ä‘?°a vá»? Nh?* vÄ?n h??a x?? chiá»?u 15/4. Ch?*nh quyá»?n Ä‘ang hÄ?ng h??i th??o gá»? t?¬nh h?¬nh.
Chiá»?u 16/4, Th?*nh á»§y H?* Ná»™i ra th?´ng Ä‘iệp k??u gá»?i thá?? nhá»?ng ng?°á»?i thá»±c thi c?´ng vá»? Ä‘ang bị giam cá?§m tr??i ph??p luá?*t. "Ä?á»? nghị chá??m dứt má»?i h?*nh vi vi phá??m luá?*t ph??p", H?* Ná»™i k??u gá»?i.
Theo Th?*nh á»§y, gá?§n Ä‘??y tá??i x?? Ä?ồng T??m li??n tiá??p xá??y ra t?¬nh trá??ng vi phá??m Ä‘á??t Ä‘ai. th?*nh thị Ä‘?? ứng dá»?ng nhiá»?u biện ph??p giá??i quyá??t, há»™i thoá??i nh?°ng t?¬nh h?¬nh "ng?*y má»™t trá»? n??n nghi??m trá»?ng".
http://imagizer.imageshack.us/a/img923/871/P3v5Aj.jpg
Tr?°á»›c Ä‘??, ng?*y 30/3 C?? quan Cá??nh s??t Ä‘iá»?u tra (C?´ng an thị th?*nh) khá»?i tố vá»? ??n h?¬nh sá»± G??y rối trá?*t tá»± c?´ng cá»™ng. Ng?*y 15/4, c?? quan Ä‘iá»?u tra thá»±c h?*nh lệnh bá??t 4 ng?°á»?i tá??i Má»? Ä?ức do c??o buá»™c c?? li??n quan vá»? ??n.
Tuy nhi??n qu?? tr?¬nh thá»±c thi lệnh bá??t Ä‘?? gá?·p phá??i sá»± phá??n ứng từ nhiá»?u ng?°á»?i d??n. H??n 30 ng?°á»?i, trong Ä‘?? c?? nhiá»?u cá??nh s??t thuá»™c trung Ä‘o?*n cá??nh s??t c?? động Ä‘?? bị ng?°á»?i d??n bá??t giá»? v?* Ä‘?°a vá»? há»™i tr?°á»?ng nh?* vÄ?n h??a th?´n Ho?*nh.
Tr?°a 16/4, ph??ng vi??n VnExpress ghi nhá?*n tá??i Ä‘??y rá??t Ä‘?´ng ng?°á»?i t?° thá»?c nhiá»?u chốt tá??i c??c ngá?? Ä‘?°á»?ng dá?«n v?*o th?´n. Khu vá»±c nh?* vÄ?n h??a c?? t?°á»?ng bao, cổng sá??t Ä‘?°á»?c kh??a k?*n. to?*n bá»™ cá»*a sổ khung nh?´m k?*nh Ä‘á»?u Ä‘?°á»?c c?*i chá?·t. Khoá??ng 30 ng?°á»?i tá»? há»?p b??n ngo?*i. Từng tốp cá?§m gá?*y đứng bao quanh.
Ph?*a sau nh?* vÄ?n h??a xá??p nhiá»?u can nhá»±a. B??n h?´ng nh?* c?? 2 cÄ?n ph??ng nhá»? chứa nhiá»?u chai lá»? v?* bao tá??i, bốc m??i kh?? chịu. Lối v?*o s??u trong th?´n xuá??t hiện h?*ng chá»?c kh??c gá»— lá»›n ná?±m ngay tr??n Ä‘?°á»?ng vá?*n chuyá»?n Ä‘i H?* Ná»™i (http://dichvuvantaivn.com/chanh-xe-sai-gon-van-chuyen-hang-di-ha-noi-gia-re/).
Trao đổi vá»›i VnExpress, má»™t ng?°á»?i d??n t??n Loan cho biá??t: "C??c cá??nh s??t Ä‘?°á»?c ch??ng t?´i cung cá??p đồ Ä?n, n?°á»›c uống Ä‘á?§y đủ v?* đối xá»* lịch sá»±".
Giá??i th?*ch vá»? việc bá??t giá»? cá??nh s??t, hai ng?°á»?i Ä‘?*n ?´ng nhá?*n l?* Ä‘á??i diện ng?°á»?i d??n cho biá??t, há»? muốn ch?*nh quyá»?n thá?? nhá»?ng ng?°á»?i trong x?? Ä‘?? bị bá??t chiá»?u qua.
"Nguyện vá»?ng cá»§a d??n c??c th?´n trong x?? muốn việc thu hồi, ph??ng th?*ch má?·t bá?±ng Ä‘?°á»?c thá»±c h?*nh Ä‘??ng quy định", má»™t phá»? ná»? đứng canh á»? nh?* vÄ?n h??a n??i.
Theo Th?*nh á»§y H?* Ná»™i, c??c c?? quan chức nÄ?ng Ä‘ang hÄ?ng h??i giá??i quyá??t rốt r??o vá??n Ä‘á»? nhá?±m ổn định t?¬nh h?¬nh vá»›i ?°u ti??n Ä‘??nh th??o cho nhá»?ng ng?°á»?i bị bá??t giá»?.
Ch?*nh quyá»?n Ä?á»? nghị ng?°á»?i d??n b?¬nh tÄ©nh cá»™ng t??c, kh?´ng Ä‘á»? bị kh?*ch động, Ä‘á??m bá??o an to?*n t?*nh mệnh cho nhá»?ng ng?°á»?i Ä‘ang thá»±c thi nhiệm vá»?.
Nguồn Vnexpress.net
JasonSm
04-21-2017, 12:24 AM
Odd it worked here np, what version of windows you running???
Here's the latest script
@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
Is Any way to adaptate this script to bongacams, please?)
Damianonymous
04-21-2017, 01:56 AM
Is Any way to adaptate this script to bongacams, please?)
BongaCams has a plugin in Streamlink: https://github.com/streamlink/streamlink
Remember that rtmpdump.exe must be added to the path or folder to the .bat script. For me it works like this:
@echo off
setlocal enableDelayedExpansion
set USERNAME=AnonymousUser
set PASSWORD=anonymous
set SECONDS=15
set /p model=Enter username:
set model=%model:https://bongacams.com/=%
set model=%model:/=%
set OUT_DIR=BongaCams\%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.
streamlink "https://bongacams.com/%model%/" best --http-header "swfUrl=https://bongacams.com/swf/chat/BCamChat.swf" --http-header "flashVer=WIN 25.0.0.148" -o "%OUT_DIR%\%model%_%ts%.flv
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
JasonSm
04-24-2017, 12:29 AM
Works great, thanks a lot :)
ramtico
04-24-2017, 09:25 AM
And for Cam4?
ngockieunhi3
04-24-2017, 10:23 PM
Up, up, up lá??i má»™t ng?*y má»›i bá??t Ä‘á?§u, má»?i ng?°á»?i ai ná??y Ä‘á»?u si??ng nÄ?ng l?*m việc kiá??m tiá»?n chÄ?m lo cho t?°??ng lai..
Ch??c tá??t cá?? Ä‘?°á»?c nhiá»?u may má??n.
Damianonymous
04-25-2017, 09:11 PM
And for Cam4?
The Streamlink team is working on the Cam4 plugin, I think it should be ready in version 0.6.0
If you do not want to wait, copy the following code to the notepad and save it as a Cam4.py in the ...\streamlink\plugins folder.
import re
from streamlink.plugin import Plugin
from streamlink.plugin.api import http, useragents, validate
from streamlink.stream import HLSStream, RTMPStream
from streamlink.utils import parse_json
class Cam4(Plugin):
_url_re = re.compile(r'https?://([a-z]+\.)?cam4.com/.+')
_video_data_re = re.compile(r"flashData: (?P<flash_data>{.*}), hlsUrl: '(?P<hls_url>.+?)'")
_flash_data_schema = validate.Schema(
validate.all(
validate.transform(parse_json),
validate.Schema({
'playerUrl': validate.url(),
'flashVars': validate.Schema({
'videoPlayUrl': validate.text,
'videoAppUrl': validate.url(scheme='rtmp')
})
})
)
)
@classmethod
def can_handle_url(cls, url):
return Cam4._url_re.match(url)
def _get_streams(self):
res = http.get(self.url, headers={'User-Agent': useragents.ANDROID})
match = self._video_data_re.search(res.text)
if match is None:
return
hls_streams = HLSStream.parse_variant_playlist(
self.session,
match.group('hls_url'),
headers={'Referer': self.url}
)
for s in hls_streams.items():
yield s
rtmp_video = self._flash_data_schema.validate(match.group('flas h_data'))
rtmp_stream = RTMPStream(self.session, {
'rtmp': rtmp_video['flashVars']['videoAppUrl'],
'playpath': rtmp_video['flashVars']['videoPlayUrl'],
'swfUrl': rtmp_video['playerUrl']
})
yield 'live', rtmp_stream
__plugin__ = Cam4
Then copy the .bat script and put it in the folder together with rtmpdump.exe with the KSW patch, or replace the old rtmpdump.exe with that version in the environment path https://github.com/K-S-V/Scripts/releases
@echo off
setlocal enableDelayedExpansion
set USERNAME=AnonymousUser
set PASSWORD=anonymous
set SECONDS=15
set /p model=Enter username:
set model=%model:https://cam4.com/=%
set model=%model:/=%
set OUT_DIR=Cam4\%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.
streamlink "https://cam4.com/%model%/" best --http-header "swfUrl=https://static.cam4.com/client/Cam4Chatless_1.176_guest.swf" --http-header "flashVer=WIN 25.0.0.148" -o "%OUT_DIR%\%model%_%ts%.flv
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
ramtico
04-26-2017, 09:38 AM
Thank you very, very much. Very good explanation. You made my day.
Is it possible to record different models at the same time?
asdf030989
05-03-2017, 08:52 PM
Is the cam4 plugin dont work?
I got the error of unable to open URL of the m3u8 playlist.
Damianonymous
05-04-2017, 05:56 AM
Let's go to the theme of Cam4.
http://stream-recorder.com/forum/recording-rtmp-webcams-cam4-howto-record-xxx-t2704p49.html
Can anyone help me with CaptureBate or script (for Linux (like bat-script for Windows in this topic)) for multiple dowloads by streamlink?
For example:
streamlink https://en.chaturbate.com/moonchristine/ best -o moonchristine.flv --retry-streams 60
Every 60 sec streamlink check link, but how I can scripting this for multiple downloads?
Thanks!
vanhiep891686
05-17-2017, 05:35 AM
https://www.facebook.com/images/emoji.php/v6/fbd/1/16/26d4.pngâ›” Bra d??y 4 d??y Ä‘an ch?©o - Ä‘á??ng cá??p - c?? t?*nh - quyá??n r?©.
https://www.facebook.com/images/emoji.php/v6/fbd/1/16/26d4.pngâ›” C??ng chi??m ng?°á»?ng á??nh d?°á»›i Ä‘??y nhá?*n ra Ä‘?°á»?c n?? Ä‘á??p nh?° n?*o á?? !
https://www.facebook.com/images/emoji.php/v6/fbd/1/16/26d4.pngâ›” M??t c?? thá»? th??o rá»?i, th??m m??t d?*y má»?ng tuá»? nhu cá?§u.
https://www.facebook.com/images/emoji.php/v6/fbd/1/16/26d4.pngâ›” Ren th?¬ cá»±c má»?m
https://www.facebook.com/images/emoji.php/v6/fbd/1/16/26d4.pngâ›” Ren viá»?n c?©ng rá??t tinh tá??
https://www.facebook.com/images/emoji.php/v6/fbd/1/16/26d4.pngâ›” C?? 2 m?*u :Ä?en:Trá??ng
https://www.facebook.com/images/emoji.php/v6/fbd/1/16/26d4.png⛔ H?*ng Việt Nam .
- Cagedbra shop CAM K?ŠT :
- Tá??t cá?? c??c sá??n phá?©m đồ l??t tá??i shop l?* sá??n phá?©m ho?*n há??o - chá??t l?°á»?ng v?°á»?t trá»™i.
- Tá??t cá?? c??c sá??n phá?©m Ä‘á»?u Ä‘?°á»?c tá»± chá»?p - Sá??n phá?©m kh??ch h?*ng Ä‘á?·t mua khi nhá?*n Ä‘?°á»?c sá?? giống y nh?° h?¬nh á??nh Ä‘?? Ä‘Ä?ng.
- Ä?á»? Ä‘?°??c t?° vá??n truy cá?*p tá??i Ä‘??y - fb:aocagedbrahanoi hoá?·c seach từ kh??a ??o bra
---------------------------------
- HOTLINE : 0982.928.693
- GIAO H?€NG Tá?¬N N?*I TR?ŠN TO?€N QUá»?C
- THANH TO??N SAU KHI NHá?¬N H?€NG
- INBOX hay COMMENT trá»±c tiá??p.
cam2fun
05-18-2017, 01:52 AM
http://www.cam2fun.com/cat/Guys
Free Chat with guys,
Live Gay Cams,
Free Gay Webcams at cam2fun
Free chat with guys, live gay cams, free gay webcams. Talk with gay guys and men instantly on cam2fun.com (http://www.cam2fun.com/cat/Guys)24 hours- Uncensored chat gay webcams.
free chat with men, live gay cams, free gay webcams (http://www.cam2fun.com/cat/Guys), Crazy Live Cams,FREE CAMS, FREE ADULT VIDEO CHAT, FREE SEX WEBCAMS, LIVE ADULT CAMS, FREE SEX WEBCAMS, ADULT WEBCAMS, FREE LIVE PORN, LIVE ADULT CAMS,FREE SEX WEBCAMS, ADULT WEBCAMS,FREE LIVE PORN.
Qoiqoi
05-26-2017, 01:17 AM
Hey all, the streamlink batch scripts work great but the output files have a variable framerate making them a pain to edit. Is it possible to output them at a constant 30 or something?
rantanplan
06-01-2017, 05:35 PM
Hey all,
it seems that capturing chaturbate with the patched rtmpdump does not work anymore. I'm using theses parameters:
-v
-r rtmp://edgeXX.stream.highwebmedia.com/live-edge
-p http://chaturbate.com/model_name
-C S:myname (flasharg[8])
-C S:model_name (flasharg[1])
-C S:2.661
-C S:pbkdf2_sha256$xxxxxxxxxxxxxxxxxxxxxxxx (flasharg[15])
-C S:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (flasharg[16])
-T m9z#$dO0qe34Rxe@sMYxx%
-y playpath
This worked fine for at least half a year....
Any idea what has changed?
There's a last flash arg, which looks like a JSON object. Not sure if it was there before:
{"username":"myname","org":"ATL","expire":1496354230,"sig":"xxxxxx","room":"model_name"}
Maybe we also have to send this in some way?
Cheers
trkient8
06-02-2017, 09:23 AM
Ph?? Tổng Gi??m đốc BQL dá»± ??n Ä??°á»?ng sá??t xin lá»—i sinh vi??n vá?? bá??n đồ
can hệ Ä‘á??n vá»? â€?nhá?·tâ€? bá??n đồ nh?* ga dá»± ??n Ä‘?°á»?ng sá??t C??t Linh - H?* Ä??´ng (H?* Ná»™i), bá»?a nay (2/6), ?´ng V?© Hồng Ph?°??ng - Ph?? gi??m đốc Ä‘iá»?u h?*nh Ban quá??n l?? dá»± ??n Ä??°á»?ng sá??t, Bá»™ giao th?´ng tá??i (GTVT) - Ä‘?? trá»±c tiá??p giao th?´ng vá»›i t??c giá?? tá??m bá??n đồ l?* sinh vi??n Ä??*o Má??nh S??n Ä‘á»? xin lá»—i.
?”ng V?© Hồng Ph?°??ng Ä‘?? gá»?i Ä‘iện trá»±c tiá??p cho anh Ä??*o Má??nh S??n, sinh vi??n nÄ?m 3 tr?°á»?ng Ä?á??i há»?c Kinh tá?? quốc d??n - ng?°á»?i vừa c?´ng nhá?*n bá??n quyá»?n đối vá»›i â€?Bá??n đồ vị tr?* c??c ga t?*uâ€? Ä‘ang Ä‘?°á»?c Ban Quá??n l?? dá»± ??n Ä??°á»?ng sá??t sá»* dá»?ng tá??i má»™t số pano tr?°ng b?*y giá»›i thiệu m?*ng l?°á»›i Ä‘?°á»?ng sá??t tỉnh th?*nh H?* Ná»™i tá??i ga La Kh??.
Do số Ä‘iện thoá??i cá»§a sinh vi??n S??n kh?´ng li??n lá??c Ä‘?°á»?c n??n l??nh Ä‘á??o Ban quá??n l?? dá»± ??n Ä‘?°á»?ng sá??t Ä‘?? Ä‘á»? lá??i tin nhá??n vá»›i ná»™i dung xin lá»—i.
http://imagizer.imageshack.us/v2/640x598q90/922/yDsgQO.png
Ná»™i dung tin nhá??n nh?° sau:
â€?Th??n gá»*i anh Ä??*o Má??nh S??n, sinh vi??n Ä?á??i há»?c KTQD!
T?´i l?* V?© Hồng Ph?°??ng, Ph?? gi??m đốc Ä‘iá»?u h?*nh Ban quá??n l?? dá»± ??n Ä‘?°á»?ng sá??t – Ä‘??n vị Ä‘?°á»?c giao nhiệm vá»? Ä‘á??i diện chá»§ Ä‘á?§u t?° Dá»± ??n Ä‘?°á»?ng sá??t Ä‘?´ thị C??t Linh – H?* Ä??´ng.
tr?°á»›c nhá??t, thay má?·t Ban quá??n l?? dá»± ??n Ä‘?°á»?ng sá??t, cho ph?©p t?´i Ä‘?°á»?c gá»*i lá»?i xin lá»—i đối vá»›i v?´ ?? d??ng bá??n đồ m?* ch?°a Ä‘?°á»?c sá»± đồng ?? cá»§a t??c giá??.
Ban quá??n l?? dá»± ??n Ä‘?°á»?ng sá??t mong muốn c?? buổi l?*m việc trá»±c tiá??p vá»›i bá??n Ä‘á»? thá??o luá?*n vá»? việc sá»* dá»?ng bá??n đồ n??i tr??n.
Má»™t lá?§n ná»?a, Ban quá??n l?? dá»± ??n Ä‘?°á»?ng sá??t th?*nh thá?*t xin lá»—i v?* rá??t mong nhá?*n Ä‘?°á»?c sá»± há»?p t??c cá»§a bá??n.
Tr??n tr�ng!�.
Theo Ban Quá??n l?? dá»± ??n Ä??°á»?ng sá??t, do kh?´ng giao th?´ng Ä‘?°á»?c trá»±c tiá??p vá»›i sinh vi??n Ä??*o Má??nh S??n, trong thá»?i k?¬ chá»? ?? kiá??n cá»§a t??c giá??, Ban quá??n l?? dá»± ??n Ä‘?°á»?ng sá??t sá?? tá??m dừng d??ng h?¬nh á??nh n??i tr??n tá??i má»™t số pano Ä‘ang tr?°ng b?*y tá??i ga La Kh??.
Ng?*y 20/5, Ban Quá??n l?? dá»± ??n Ä??°á»?ng sá??t má»? cá»*a nh?* ga La Kh?? - H?* Ä??´ng Ä‘??n ng?°á»?i d??n Ä‘á??n tham quan, t?¬m hiá»?u th??m vá»? dá»± ??n v?* nhá?*n c??c ?? kiá??n Ä‘??ng g??p cá»§a quá?§n ch??ng. #.
Tuy nhi??n, theo phá??n ??nh cá»§a sinh vi??n Ä??*o Má??nh S??n, bá??n đồ vị tr?* c??c ga t?*u do ch?*nh anh vá?? v?* tá??i l??n má??ng tá?§ng lá»›p nhá?±m má»?c Ä‘?*ch minh há»?a cho b?*i viá??t â€?Dá»± ??n Ä‘?°á»?ng sá??t Ä‘?´ thị H?* Ná»™iâ€? tr??n trang b??ch khoa má»? Wikipedia.org. C??c Ä‘??n vị thá»±c hiện Dá»± ??n Ä‘?°á»?ng sá??t Ä‘?´ thị C??t Linh - H?* Ä??´ng Ä‘?? lá??y bá??n vá?? n?*y vá»? d??ng gá»*i h?*ng vá»? Há??i Ph??ng (http://ship3978.com/xemchude/495/nhan-gui-hang-ghep-di-ve-hai-phong-nhanh-chong-.html).
nhá?*n vá»? việc n?*y, Ban Quá??n l?? dá»± ??n Ä??°á»?ng sá??t giá??ng giá??i: â€?Việc n?*y nhá?±m m?´ phá»?ng theo bá??n đồ quy hoá??ch giao th?´ng Ä‘?°á»?ng sá??t th?*nh phố Ä‘?°á»?c duyệt cho TP H?* Ná»™i. Ch??ng t?´i khai th??c từ má??ng internet, chỉ độc nhá??t v?´ nhị vá»›i mong muốn Ä‘á»? ng?°á»?i d??n c?? c??i nh?¬n tổng quan nhá??t vá»? tuyá??n Ä‘?°á»?ng sá??t th?*nh phố C??t Linh H?* Ä??´ng trong má??ng giao th?´ng Ä‘?°á»?ng sá??t th?*nh phố tổng thá»? cá»§a tỉnh th?*nh v?* kh?´ng d??ng v?*o bá??t cứ má»™t má»?c Ä‘?*ch th?°??ng nghiệp n?*oâ€?.
D?° luá?*n x?? há»™i b?*y tá»? sá»± bá??t b?¬nh vá»›i sá»± việc n?*y v?* cho rá?±ng Ä‘?? l?* sá»± cá?©u thá??, v?´ tr??ch nhiệm, thiá??u nghi??m t??c cá»§a c??c Ä‘??n vị thá»±c h?*nh Dá»± ??n Ä‘?°á»?ng sá??t C??t Linh - H?* Ä??´ng.
Nguồn Dantri.vn
rantanplan
06-02-2017, 09:30 AM
Ph?? Tổng Gi??m đốc BQL dá»± ??n Ä??°á»?ng sá??t xin lá»—i sinh vi??n vá?? bá??n đồ
Moderator?
wizard
06-02-2017, 09:48 AM
Moderator?
Unfortunately, moderators are away from here most of time. The best would be that you click on a spammer username, open his public profile and add him to the ignore list.
By doing this you will still see the bold threads when they reply but at least you will not have to scroll through ton of spam to find the regular content (spammer posts will be hidden :D :D :D )
Not the perfect but for sure far more the best solution you can have here as admins and mods are away ;)
rantanplan
06-02-2017, 10:07 AM
Unfortunately, moderators are away from here most of time. The best would be that you click on a spammer username, open his public profile and add him to the ignore list.
By doing this you will still see the bold threads when they reply but at least you will not have to scroll through ton of spam to find the regular content (spammer posts will be hidden :D :D :D )
Not the perfect but for sure far more the best solution you can have here as admins and mods are away ;)
Thanks for the hint!
cabulo
06-02-2017, 04:27 PM
admins and mods are away ;)
No, they are not away, they just don't interfere.
Somebody is paying for this for some reason of his own.
wizard
06-03-2017, 02:38 AM
No, they are not away, they just don't interfere.
Somebody is paying for this for some reason of his own.
Well if anyone do a little search it might be easy to figure out who and to guess the reasons why but that might go into a long discussion and is not a part of this topic. Therefore, let's keep on with CB discussion :)
rantanplan
06-04-2017, 06:19 PM
OK... back to the topic:
I did some ethernet sniffing (with wireshark).
Indeed the CB player sends this new line (flashvar "auth"):
{"username":"myname","org":"ATL","expire":1496354230,"sig":"xxxxxx","room":"model_name"}
"sig" looks like this: 1d58fe0742f9687962d8b3f4819ae453e592117aa7e52edc2a c1f295182d6ca2
so this i a 32byte key.
Just copying it from a running CB session does not work. I think that as long as we don't know the meaning of this "sig" we are out of luck.
supersonic80
06-04-2017, 07:42 PM
Nothing changed on Chaturbate, rtmpdump works fine as usual. I would recommend to check your rtmpdump.
Are you on Windows or Linux? I recently experienced an issue with linux when regular apt-get upgrade replaced patched rtmpdump library and everything stopped working until I manually restored rtmpdump-ksv.
OK... back to the topic:
I did some ethernet sniffing (with wireshark).
Indeed the CB player sends this new line (flashvar "auth"):
{"username":"myname","org":"ATL","expire":1496354230,"sig":"xxxxxx","room":"model_name"}
"sig" looks like this: 1d58fe0742f9687962d8b3f4819ae453e592117aa7e52edc2a c1f295182d6ca2
so this i a 32byte key.
Just copying it from a running CB session does not work. I think that as long as we don't know the meaning of this "sig" we are out of luck.
confused.com
06-10-2017, 05:08 AM
it might be easy to figure out who and to guess the reasons whyhttp://stream-recorder.com/forum/member.php?find=lastposter&t=956
Xirius
06-27-2017, 12:43 PM
I'm using the .bat script for chaturbate and it has worked great so far. I start it and it looks for when a stream starts and and records.
But now for a few weeks something is wrong. Now when I start the script after maybe 10 minutes of testing if a stream is live (or less) it get stuck on this screen forever:
http://i.imgur.com/dCy9oBf.png
so when the stream goes live it doesn't capture because it's stuck here. People have the same problem? I didn't change anything in the script. It does record if I start the script just as the channel goes live but the reason for using it is so I can run when I'm not here.
JasonSm
06-28-2017, 01:22 AM
yep, i have the same.
try to use this script for streamlink
@echo off
setlocal enableDelayedExpansion
set USERNAME=AnonymousUser
set PASSWORD=anonymous
set SECONDS=15
set /p model=Enter username:
set model=%model:https://chaturbate.com=%
set model=%model:/=%
set OUT_DIR=CB\%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.
streamlink "https://chaturbate.com/%model%/" best --http-header "swfUrl=https://en.chaturbate.com/static/flash/CBV_2p670.swf" --http-header "flashVer=WIN 25.0.0.148" -o "%OUT_DIR%\%model%_%ts%.flv
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
Damianonymous
06-28-2017, 04:18 AM
I looked at several transmissions, all after 2 hours stopped while connecting to edge1. Streamlink also has trouble connecting to servers, my videos recorded with it freeze every few seconds. I do not know if it's my computer problem, plugins or Chaturbate servers.
Xirius
06-30-2017, 04:07 AM
Thanks for the tip about streamlink. With that script it's working well so far. Not had any trouble with stutters yet, maybe it differs from girl to girl. I only record one and no problems.
Qoiqoi
07-03-2017, 01:42 AM
I looked at several transmissions, all after 2 hours stopped while connecting to edge1. Streamlink also has trouble connecting to servers, my videos recorded with it freeze every few seconds. I do not know if it's my computer problem, plugins or Chaturbate servers.
Something is definitely weird with the HLS streams. So much freezing on the output files, while the RTMP/Flash one plays fine. The RTMP files are annoying to edit though since it outputs the sound as Speex which needs to be converted and it all gets out of sync in Adobe Premiere after that.
fancy
07-13-2017, 05:39 PM
Help me, i use @echo off
setlocal enableDelayedExpansion
set USERNAME=AnonymousUser
set PASSWORD=anonymous
set SECONDS=15
set /p model=Enter username:
set model=%model:https://bongacams.com/=%
set model=%model:/=%
set OUT_DIR=BongaCams\%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%.ts
set PASSWORD=%PASSWORD:\u003D==%
color 2F && title %model% @ %time% - %server%
cls && echo Capturing: %model% @ %time% - %server% && echo.
streamlink "https://bongacams.com/%model%/" best -o "%OUT_DIR%\%model%_%ts%.ts
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 this not workhttps://pp.userapi.com/c639219/v639219427/2eb75/j7rdfRwqm0w.jpg
but when i use script for 'chaturbate', all good
Damianonymous
07-23-2017, 09:59 PM
The Bongacams plugin in Streamlink does not work. You need to follow plugins updates and replace if guys do the repairs.
https://github.com/streamlink/streamlink/tree/master/src/streamlink/plugins
stahlbl
12-23-2017, 05:16 PM
Hi all,
I'm getting NetStream.Play.Failed, any idea anyone what is wrong here?
Thanks!
~ $ rtmpdump -v -r "rtmp://edge35.stream.highwebmedia.com/live-edge" -p https://de.chaturbate.com/nikiitee/ -C S:AnonymousUser -C S:nikiitee -C S:2p680 -C S:anonymous -y "application/x-shockwave-flash" -o ~/nikiitee.swf
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
ERROR: Closing connection: NetStream.Play.Failed
j_cool
12-23-2017, 05:34 PM
Try KSV's rtmpdump.
horacio
12-24-2017, 08:11 AM
Hi all,
I'm getting NetStream.Play.Failed, any idea anyone what is wrong here?
Thanks!
~ $ rtmpdump -v -r "rtmp://edge35.stream.highwebmedia.com/live-edge" -p https://de.chaturbate.com/nikiitee/ -C S:AnonymousUser -C S:nikiitee -C S:2p680 -C S:anonymous -y "application/x-shockwave-flash" -o ~/nikiitee.swf
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
ERROR: Closing connection: NetStream.Play.Failed
I don't know what you used to get this very strange rtmpdump line.
If we don't complicate a lot, it's best to try my anonymous rtmpdump batch script:
http://stream-recorder.com/forum/showpost.php?p=93536&postcount=231
tranglinhdn1
12-25-2017, 03:50 AM
Hello, i think chaturbate have recently changed up their rtmp protocol. Can somebody with rtmpdump helper or sniffer can post a sample rtmpdump command, as the old one no longer works..? Thanks guys. Cá»*a H?*ng th?? c?°ng KPETMART (http://petdn.com/) nhá?*n cung cá??p, ph??n phối tá»›i c??c Ä‘á??i l??, bá??n h?*ng tr??n to?*n quốc nhá»?ng sá??n phá?©m d?*nh cho th?? c?°ng vá»›i nhiá»?u chá»§ng loá??i nh?° thức Ä?n, phá»? kiện v?* thuốc th?? y cho ch?? m?¨o, hamster, thá»? cá??nh, Bá»?_??.
Vá»›i mong muốn Ä‘?°á»?c há»?p t??c vá»›i c??c Ä‘á??i l??, c??c trang trá??i nu?´i th?? cá??nh tr??n khá??p má»?i tỉnh th?*nh tr??n cá?? n?°á»›c v?* mang Ä‘á??n cho ng?°á»?i nu?´i nhá»?ng sá??n phá?©m Ä‘a dá??ng v?* chá??t l?°á»?ng.
http://petdn.com/files/assets/12265586_997402733655772_3418610939821045448_o.jpg
Thức Ä?n v?* phá»? kiện cho th?? c?°ng
Vá»›i nhiá»?u nÄ?m kinh nghiệm trong ng?*nh kinh doanh thuốc th?? y, thức Ä?n phá»? kiện cho th?? c?°ng v?* dịch vá»? ch?? m?¨o, ch??ng t?´i thá??u hiá»?u nhá»?ng mong muốn cá»§a kh??ch h?*ng.
Lá»?I ??CH KH??CH H?€NG
Há»?p t??c vá»›i ch??ng t?´i, qu?? Ä‘á??i l?? sá?? lu?´n an t??m khi:
+ C?? Ä‘?°á»?c nguồn h?*ng chá??t l?°á»?ng, má?«u m?? Ä‘a dá??ng phong ph?? v?* li??n tá»?c Ä‘?°á»?c cá?*p nhá?*t.
+ Gi?? tốt, h?°á»?ng mức chiá??t khá??u cá??nh tranh.
+ Ä?á?·t h?*ng Ä‘??n giá??n, vá?*n chuyá»?n nhanh ch??ng, thanh to??n tiện lá»?i.
+ Ch?*nh s??ch đổi trá?? h?*ng há»?p l??, thuá?*n tiện.
+ C??c ch?°??ng tr?¬nh t?° vá??n, há»— trá»? quá??ng c??o.
C??C Má?¶T H?€NG CHỦ Yá??U Tá?*I KPETMART (http://petdn.com/) 0989.288.470
petshop th?? c?°ng KPETMART li??n tá»?c cá?*p nhá?*t, bổ sung vá»? số l?°á»?ng c?©ng nh?° chá»§ng loá??i c??c sá??n phá?©m, mang Ä‘á??n sá»± Ä‘a dá??ng trong sá»± lá»±a chá»?n sá??n phá?©m cá»§a kh??ch h?*ng.
1. Thức Ä?n cho ch?? m?¨o
http://petdn.com/files/assets/banbuondodungchomeo.jpg
Sá»?a cho m?¨o con Bio MilkThức Ä?n Me-O cho m?¨o lá»›n X?°??ng gá?·m ch?? Mondou 16cm Thức Ä?n m?¨o con Royal Canin Kitten36 Thức Ä?n ch?? con Smartheart Thức Ä?n ch?? lá»›n Smartheart Thức Ä?n Whiskas cho m?¨o lá»›n Thức Ä?n Whiskas cho m?¨o con X?°??ng t??i 10 c??i cho ch?? Thức Ä?n cho m?¨o tr??n 12 th??ng Royal Canin FIT32 Thức Ä?n cho m?¨o con Royal Canin Kitten 36 Thức Ä?n cho m?¨o nu?´i con Royal Canin Babycat 34 Thức Ä?n cho ch?? nu?´i con Royal Canin Club Pro A3 Thức Ä?n cho ch?? tr?°á»?ng th?*nh Royal Canin Club Pro CC Thức Ä?n cho ch?? con Royal Canin Maxi Junio Thức Ä?n cho ch?? tr?°á»?ng th?*nh Royal Canin Maxi Adult Thức Ä?n cho ch?? giống nhá»? Royal Canin Mini Junio Thức Ä?n kh?´ ANF 21 Ch?? Lá»›n Má»? Thức Ä?n kh?´ ANF 27 Ch?? Ä‘ang ph??t triá»?n Má»? Thức Ä?n kh?´ ANF 29 Ch?? Con Má»?
2. Thuốc th?? y
http://petdn.com/files/assets/thuocthuy.jpg
Má»? ká??m Oxyd trị ghá?» ná??m ch?? m?¨o Thuốc trị vi??m tai ch?? m?¨o Deroxyl Thuốc tá?©y giun s??n Endogard 10 Xịt ve rá?*n, bá»? ch?©t Fay Power 100 ml Thuốc nhá»? g??y Frontline Plus cho m?¨o Thuốc xịt bá»?, ve cho m?¨o Hantox Spray V??ng chống ve, rá?*n Fleadom cá»§a Virbac Vemedim diệt ve Diệt Muá»—i Fendona Diệt Gi??n Men ti??u h??a Pharbiozyon H??a chá??t diệt c?´n tr??ng Fendona 10sc Thuốc diệt bá»? ch?©t Hantox 200 Thuốc xịt m?¨o Hantox Thuốc diệt bá»? ch?? Vine -Frondog(VMD) Dinh d?°á»?ng da l?´ng ch?? m?¨o Megaderm Vá??c xin ph??ng 7 bệnh cho ch?? Thuốc trị ghá?» ch?? m?¨o Thivamidin Canxi Calci Delice Ch?? m?¨o Thuốc bổ cho chim Vinamix 200 Thuốc tá?©y giun Exotial (virbac) Nutri-plus gel Má»? ká??m Oxyd trị ghá?» ná??m ch?? m?¨o
4. D�ng c� vệ sinh
http://petdn.com/files/assets/bannecho.jpg
Phá??n tá??m kh?´ Fay Puppy 120gr (dá??ng bá»™t) Phá??n tá??m kh?´ ch?? m?¨o Sleeky Sá»?a tá??m ch?? m?¨o Hantox nh?© bá??c Ä?ịnh vị Ä‘á??i tiện cho ch?? BoBo C??t vệ sinh cho m?¨o Me-O C??t vệ sinh cho m?¨o Catsand Khay vệ xinh cho m?¨o h?¬nh vu?´ng (size nhá»?, to) Khay Vệ Sinh H??nh Trứng Khay Vệ Sinh Vu?´ng c?? gá??t c??t Khay Vệ Sinh Cho C??n to Khay Vệ Sinh C??n H?¬nh Ghá?? Ngồi Xá?»ng h??t c??t m?¨o H??t Ph??n H?¬nh Há»™p Nh?* Vệ Sinh H?¬nh M?¨o Nh?* Vệ Sinh 2 ngÄ?n Nh?* Vệ Sinh M?¨o c?? gi??
=> Há»?p t??c vá»›i c??c Ä‘á??i l?? ph??n phối b??n bu?´n đồ cho th?? c?°ng, thức Ä?n v?* phá»? kiện ch?? m?¨o, chim cá??nh KPETMART/ 19 Nguyá»…n Ph?°á»›c Th??i, Th?*nh phố Ä??* Ná?µng- hotline: 0989288470
4. Ä?ồ ch??i v?* phá»? kiện ch?? m?¨o
Rá»? m?µm ch?? nhá»? D??y dá??t ch?? Police D??y dá??t d?? th?°á»?ng X?*ch ch?? con Inox Rá»? m?µm to B?¬nh Gá??n Chuồng Nhá»? V??i gá??n Chuồng B?¬nh N?°á»›c Gá??n Chuồng Xịn Tay Tá??m K?¬m Cá??t M??ng (size nhá»?, to) K?¬m Cá??t M??ng To T??i Vá?*n Chuyá»?n ch?? m?¨o há»?a tiá??t (size S, M, L) T??i vá?*n chuyá»?n ch?? m?¨o trong suốt Chu?´ng H?¬nh Th?? Chu?´ng gá??n thá?» t??n V??ng Cổ 2 lá»›p (Loá??i 1cm, 1,5cm) V??ng cổ k?¨m n?? nhá»? Cổ Dá»? Xanh Ä?á»? Size S (1,5cm); M (2cm) ; L (2,5cm)j D??y + Cổ 2 lá»›p 1cm D??y + Yá??m Police (Loá??i 2cm, 2.5cm, 3cm) X?*ch Inox + V??ng Cổ (Loai nhá»?, loá??i trung, loá??i Ä‘á??i) B?¬nh Sá»?a Nhá»? T?´ng Ä??? B??ng 7 m?*u (Loá??i nhá»? 6cm, loá??i trung 7cm, loá??i Ä‘á??i 9cm) Ä?ồ Ch??i Con G?* (Size S 17cm, M 30cm, L 40cm) á»?ng Catnip cho m?¨o Gối Catnip cho m?¨o B??ng Catnip cho m?¨o Ä?ồ ch??i th??p 3 tá?§ng cho m?¨o Cá?§n c??u m?¨o c??n gá»— C?? C?*o m??ng to B?*n c?*o chuá»™t l?? xo B?*n l?´ng chuá»™t l?? xo Trá»? C?*o M??ng kh?´ng m??ng D??y +Yá??m Lagura bá??n 1,9cm Yá??m Ä‘á»? d?*nh cho m?¨o D??y + Yá??m in hoa d?*y b??ng L?°á»?c b?*n chống ná??ng L?°á»?c b?*n chống inox to Bồ c?*o chá»? Y xanh L?°á»?c inox 2 má?·t Chá??i L?´ng c??n gá»— (Loá??i nhá»?, vừa, to) L?°á»?c inox cho spa KhÄ?n si??u thá??m c?? há»™p (Loá??i to, loá??i b?©) B??t nhá»±a Fip tr??n Ä‘?´i Size S, M, L B??t nhá»±a Ä‘?´i nhá»? Bá»™ b??t Ä‘?´i c?? cá??p n?°á»›c Bá»™ cá??p n?°á»›c tá»± động Lồng sá??t trung 313 (60x43x51)
V?* nhiá»?u sá??n phá?©m kh??c...
Má»?i th?´ng tin chi tiá??t xin vui l??ng li??n hệ:
KPETMART (https://www.facebook.com/hashtag/kpetmart?source=feed_text&story_id=448327042168789)- Cá»*a H?*ng th?? c?°ng
Ä?ịa Chỉ: 19 nguyá»…n ph?°á»›c th??i, Q. Thanh Kh??, Ä??* Ná?´ng
hotline: 0989288470
https://www.facebook.com/images/emoji.php/v8/f5d/1/16/26a1.pngâš??¸?Fanpage: https://www.facebook.com/KPetMart.net/ (https://www.facebook.com/KPetMart.net/)
website: www.petdn.com (http://www.petdn.com/)
j_cool
12-26-2017, 02:25 AM
petmart's last post is too small.
I don't see it well.
vBulletin® , Copyright ©2000-2025, Jelsoft Enterprises Ltd.