PDA

View Full Version : Recording RTMP Webcams from cam4(HowTo record XXX/adult web-cam videos from cam4.com)


Pages : 1 2 [3]

horacio
07-12-2017, 04:25 PM
Does anyone have a way to cap cam4 unattended? Was using Elgero's cam4 grabber but that no longer works and he seems to have given up on this site after it went offline for a bit.

Don't need anything fancy, just something to run in the background for a few models 24/7.

I make a batch script that uses the standard Cam4 Streamlink plugin.
Script is for:

- Model List = C:\Windows\C4_Model.txt
- Save Directory = C:\Videos\Cam4\

If you want to change it, edit lines 6,17 and 29
If you want to track multiple models at once, you can start multiple copies of this script

@ECHO OFF
SETLOCAL EnableDelayedExpansion
:START
ECHO.
SET n=0
FOR /F "tokens=*" %%A IN (C:\Windows\C4_Model.txt) DO (
SET /A n=n+1
SET _fav!n!=%%A
ECHO !n! %%A
)
ECHO.
SET /P MODEL=Select Model (%M% %MODEL%):
FOR /L %%f IN (1,1,!n!) DO (
IF /I '%MODEL%'=='%%f' SET M=%%f
)
SET n=0
FOR /F "tokens=*" %%A IN (C:\Windows\C4_Model.txt) DO (
SET /A n=n+1
IF !n!==%M% SET MODEL=%%A
)
:C4-SL-R
ECHO.
ECHO ################################################## ###
ECHO ### C4-SL-R ### R E C O R D I N G - 2 4 / 7 #####
SET hour=%time:~0,2%
IF "%hour:~0,1%" == " " SET hour=0%hour:~1,1%
SET NOW=%date:~4,2%%date:~7,2%%date:~10,4%-%hour%%time:~3,2%%time:~6,2%
FOR /f "tokens=1-2 delims=/:" %%a IN ('time /t') DO (set mytime=%%a%%b)
SET OUT_DIR=C:\Videos\Cam4\
SET FILENAME=%MODEL%_C4_%NOW%.flv
SET OUTPUT=%OUT_DIR%%FILENAME%
SET FNAME=######## %FILENAME% ### %M% ##############################
SET _FNAME_=%FNAME:~5,53%
IF EXIST "%OUT_DIR%" (ECHO %_FNAME_%) ELSE (MD "%OUT_DIR%"
ECHO %_FNAME_%)
ECHO ################################################## ###
ECHO.
STREAMLINK "https://www.cam4.com/%MODEL%/" best -o "%OUT_DIR%%FILENAME%"
TIMEOUT 30
GOTO C4-SL-R
ENDLOCAL

wizard
07-12-2017, 11:52 PM
Many thanks for the script Horacio :) I will try it as soon as I have some spare time.

Moonspell
07-14-2017, 01:38 AM
no streamlink, rtmpdump script - standalone, is possible? :)

horacio
08-29-2017, 09:16 PM
no streamlink, rtmpdump script - standalone, is possible? :)

It is possible, of course:cool:

Look at: https://github.com/horacio9a/cam4-anonymous

Download link for all files in zip: https://codeload.github.com/horacio9a/cam4-anonymous/zip/master

uit
08-30-2017, 05:08 AM
someone help me with installation with python?
thancks

horacio
08-30-2017, 09:53 AM
someone help me with installation with python?
thancks

If you don't have Python on your computer then you first need to install.
Link is https://www.python.org/downloads/release/python-2713/ my recommendation is to install Python 2.7.13.
After installation directory C:\Python27 should be added to the 'path', this should be checked and possibly manually added the 'path'.
Instalation must be in the directory C:\Python27. Choose custom instalation. I am used this instalation file for my Windows7 32bit: http://www.mediafire.com/file/z0dy1qpjzpybc94/python-2.7.13.rar
For more information use Google ;)

The Bullfrog
09-02-2017, 04:15 AM
Thank you so much horacio, respect! :cool:

uit
09-02-2017, 03:42 PM
sorry but i have this error :(

error is: python:can't open file 'c4.py': (errno 2) no such file or directory

many thancks

horacio
09-04-2017, 12:12 AM
sorry but i have this error :(

error is: python:can't open file 'c4.py': (errno 2) no such file or directory

many thancks

All files from https://codeload.github.com/horacio9a/cam4-anonymous/zip/master must be in C:\-c4-py\
except c4.bat who can be in C:\Windows\ together with all rtmpdump files
Those who need to install python should watch this video: https://www.youtube.com/watch?v=QYUBz4mrnFU
In this youtube video at the end you can see how to find 'Environment Variables' where you need to check if there is 'C:\Windows\' and ';C:\Python27\;C:\Python27\Scripts\;' in the path
At the beginning of the edit line should be:
%SystemRoot%;%SystemRoot%\system32;%SystemRoot%\Sy stem32\Wbem;%SystemRoot%\System32\WindowsPowerShel l\v1.0\;
which in the translation means:
PATH=C:\Windows;C:\Windows\system32;C:\Windows\Sys tem32\Wbem;C:\Windows\System32\WindowsPowerShell\v 1.0\;
Somewhere in that line should also be located also: ';C:\Python27\;C:\Python27\Scripts\;'
My recommendation is to put in the C:\Windows all rtmpdump and ffmpeg, ffplay and some other similar files that other programs and scripts often call, and there is no need to have them in each directory in particular.

uit
09-04-2017, 01:55 PM
thanck you very much horacio :)

i use first metod of you writhe (message 7/12/2017).

last question. If possible save also private show in cam4? also in pm.

thancks horacio

david00
09-12-2017, 05:14 AM
when i try to start c4.bat and i choose between 1,2 ... i get written: python is not recognized as an internal or external command.help me please

horacio
09-12-2017, 11:06 AM
when i try to start c4.bat and i choose between 1,2 ... i get written: python is not recognized as an internal or external command.help me please

Or you did not install Python or it is not in the path.
Look at this, you should check it out:

http://stream-recorder.com/forum/showpost.php?p=93758&postcount=509

david00
09-13-2017, 06:38 AM
Or you did not install Python or it is not in the path.
Look at this, you should check it out:

http://stream-recorder.com/forum/showpost.php?p=93758&postcount=509
It is installed and I also saw the video yesterday, that's my line: %SystemRoot%\system32\WindowsPowerShell\v1.0\;C:\P ython27\;C:\Python27\Scripts

horacio
09-13-2017, 01:51 PM
It is installed and I also saw the video yesterday, that's my line: %SystemRoot%\system32\WindowsPowerShell\v1.0\;C:\P ython27\;C:\Python27\Scripts

Try replace your path line with this:

%SystemRoot%;%SystemRoot%\system32;%SystemRoot%\Sy stem32\Wbem;%SystemRoot%\System32\WindowsPowerShel l\v1.0\;C:\Python27\;C:\Python27\Scripts\;

Damianonymous
09-13-2017, 03:44 PM
@Horacio, in your bat files, when you change the folder location, you can go crazy :D What is the configuration file for if you need to change a few lines in a bat file? For a layman, this could be the biggest problem.

horacio
09-13-2017, 08:22 PM
@Horacio, in your bat files, when you change the folder location, you can go crazy :D What is the configuration file for if you need to change a few lines in a bat file? For a layman, this could be the biggest problem.

I see the most users have problem because rtmpdump.exe is not in the path.
That's why I added rtmpdump location in 'config.cfg' ... this is new default 'config.cfg'

[folders]
output_folder: C:/Videos/Cam4/
[files]
model_list: C:/Windows/C4_Model.txt
rtmpdump: C:/Windows/rtmpdump.exe

For beginners it is best to accept default value, and advanced users must edit 'c4.bat' and 'config.cfg'
To conclude, all files from zip should be placed in the 'C:\-c4-py\' directory except 'c4.bat' and 'C4_Model.txt' which should be moved to 'C:/Windows'. All the above changes is in version 1.0.4 which can be download from always same link: https://codeload.github.com/horacio9a/cam4-anonymous/zip/master

david00
09-14-2017, 08:57 AM
Try replace your path line with this:

%SystemRoot%;%SystemRoot%\system32;%SystemRoot%\Sy stem32\Wbem;%SystemRoot%\System32\WindowsPowerShel l\v1.0\;C:\Python27\;C:\Python27\Scripts\;

same error,I also tried uninstalling and reinstalling python but nothing.

these are the steps I did: I installed python in C:\ Python27, then downloaded the cam4-anonymus file and put the folder in C:\ - c4-py except the "c4.bat" and "C4_Model.txt" files that I put in C: \ Windows with "rtmpdump-2.4" and "scripts".

Then start the c4.bat file in windows and try all options (1,2,3) but I get the usual error: python is not recognized as an internal or external command, an executable program or a batch file.
Did I do something wrong?I used IDM before (it was so simple) but now it does not work anymore.

Damianonymous
09-14-2017, 11:03 AM
...I used IDM before (it was so simple) but now it does not work anymore.

For me still works...

https://s26.postimg.org/qwj00jybt/IDMcam4.jpg

horacio
09-14-2017, 05:43 PM
same error,I also tried uninstalling and reinstalling python but nothing.

these are the steps I did: I installed python in C:\ Python27, then downloaded the cam4-anonymus file and put the folder in C:\ - c4-py except the "c4.bat" and "C4_Model.txt" files that I put in C: \ Windows with "rtmpdump-2.4" and "scripts".

Then start the c4.bat file in windows and try all options (1,2,3) but I get the usual error: python is not recognized as an internal or external command, an executable program or a batch file.
Did I do something wrong?I used IDM before (it was so simple) but now it does not work anymore.

Read http://stream-recorder.com/forum/showpost.php?p=94159&postcount=516 and try version v.1.0.4 ... replace all files with v.1.0.4 and it should work without path for rtmpdump.exe

david00
09-15-2017, 08:13 AM
Read http://stream-recorder.com/forum/showpost.php?p=94159&postcount=516 and try version v.1.0.4 ... replace all files with v.1.0.4 and it should work without path for rtmpdump.exe

I had already done but it gives me the same error. :o
when i installed python asked me: for all users or just for myself, i put "for all users", i was wrong? Was this transition crucial for the operation?
I'm sorry for all these problems ;)

For me still works...

https://s26.postimg.org/qwj00jybt/IDMcam4.jpg
what version? tell me in pm please :)

horacio
09-15-2017, 09:49 AM
I had already done but it gives me the same error. :o
when i installed python asked me: for all users or just for myself, i put "for all users", i was wrong? Was this transition crucial for the operation?
I'm sorry for all these problems ;)
what version? tell me in pm please :)

Check if you have these files:

C:\Python27\python.exe
C:\Python27\pythonw.exe
C:\Python27\w9xpopen.exe

if you have you did not set a good path for C:\Python27\

https://s20.postimg.org/4nry4j6bh/2421.jpg

I use IDM 6.28 build 11

david00
09-16-2017, 06:53 AM
Check if you have these files:

C:\Python27\python.exe
C:\Python27\pythonw.exe
C:\Python27\w9xpopen.exe

if you have you did not set a good path for C:\Python27\



yes, there are, then?https://imgur.com/sGu4E3n



https://s20.postimg.org/4nry4j6bh/2421.jpg

I use IDM 6.28 build 11
I have updated idm to the latest version (the same as using Dami 6.28 build 17) but I always find the usual problem when i go to click "download this video i only go out several ts files with few KB and not the FLV file.https://imgur.com/Um8bNIv

I also tried to uninstall (with IObit) and reinstall idm but nothing, since it works for you I think it's a problem of my pc,bha.
As a browser I use GoogleChrome because with firefox I get not even the window that says "download this video".

horacio
09-17-2017, 03:38 AM
yes, there are, then?I have updated idm to the latest version (the same as using Dami 6.28 build 17) but I always find the usual problem when i go to click "download this video i only go out several ts files with few KB and not the FLV file.
I also tried to uninstall (with IObit) and reinstall idm but nothing, since it works for you I think it's a problem of my pc,bha.
As a browser I use GoogleChrome because with firefox I get not even the window that says "download this video".

You still do not have the directory C:\Python27 in the path ... you obviously made a mistake somewhere.
For IDM I also use Chrome ... try chrome://flags/#prefer-html-over-flash
Option Run all Flash content when Flash setting is set to "allow" must be 'enabled' for IDM.

david00
09-17-2017, 10:04 AM
You still do not have the directory C:\Python27 in the path ... you obviously made a mistake somewhere.

I noticed that in the video it is going to change the "path" line while I changed the "PSModulePath"line(that's where I found the python path) because the "Path" line is already a string, this one:
C:\ProgramData\Oracle\Java\javapath;C:\Windows\sys tem32;C:\Windows;C:\Windows\System32\Wbem;C:\Windo ws\System32\WindowsPowerShell\v1.0\;C:\Program Files\Smart Projects\IsoBuster;C:\Program Files\B1 Free Archiver;C:\Program Files\Common Files\Autodesk Shared\;C:\Program Files\Livestreamer;C:\Program Files\OpenVPN\bin
do I need to change the "Path" string?
https://imgur.com/QjKSkNM
https://imgur.com/tH3jsXA


For IDM I also use Chrome ... try chrome://flags/#prefer-html-over-flash
Option Run all Flash content when Flash setting is set to "allow" must be 'enabled' for IDM.
I did as you said, before it was set to "default" while it is now on "enabled" but it still has the same error. https://imgur.com/bxDkfGb

david00
09-20-2017, 05:13 AM
I modified the Path string and now I have no error: python is not recognized .......but (lol) now i have this error, can you help me out?
https://imgur.com/sn3aZXS
https://imgur.com/19bT8Qt

Damianonymous
09-20-2017, 02:41 PM
pip install -r Requirements.txt

Done?

david00
09-21-2017, 05:13 AM
pip install -r Requirements.txt

Done?

No because I did not understand what to do, what should I do?

horacio
09-21-2017, 08:16 AM
No because I did not understand what to do, what should I do?

Start 'Command Promt' and type 'pip list' <enter>

You will see that your python installation has no 'Command' module ... so you need to install it with the command:

pip install Command

you probably need to install some more modules.
@Damianonymous advised you well ... nothing bad will happen with point 1 of setup:

Setup
=====
1. Install requirements `pip install -r Requirements.txt`

Obviously, you do not know much about it and constantly philosophize yourself instead of reading README.md well and doing so, and after that you have the right to ask questions if something is wrong.

flipper2011
09-21-2017, 03:20 PM
When recording a model that goes private in the middle of recording, the batch file gets stuck, the filelength=0 (for the new private session) and you can't get out of the window EXCEPT if you close the window. You can't Control Break or X out.

Otherwise this works pretty well

david00
09-22-2017, 06:59 AM
Start 'Command Promt' and type 'pip list' <enter>

You will see that your python installation has no 'Command' module ... so you need to install it with the command:

pip install Command

you probably need to install some more modules.
@Damianonymous advised you well ... nothing bad will happen with point 1 of setup:

Setup
=====
1. Install requirements `pip install -r Requirements.txt`

Obviously, you do not know much about it and constantly philosophize yourself instead of reading README.md well and doing so, and after that you have the right to ask questions if something is wrong.
I had seen the video and followed the "pip install requests" command but probably did not add anything to me. I did as you said and did not have many modules, I installed:
pip install Command
pip install configparser
pip install colorama
pip install DateTime
pip install termcolor

then I also had to create the path C: \ Videos \ Cam4 because when I started c4.bat did not download anything.

and now finally works yeaaaaaaaa lol, thanks a lot horacio(:o ) and Damianonymous for your patience.
https://imgur.com/HgWDwSZ

horacio
09-22-2017, 09:15 AM
to @david00
Alleluia ... I'm glad it finally worked. Most of us try first without reading README.md thinking it will save time but this is an obvious example that it is better to first read the instructions;)

preview
10-06-2017, 05:15 AM
Anyone who has problems recording from cam4 today?

j_cool
10-06-2017, 05:34 AM
RTMP Proxy Server v2.4 GIT-2015-12-14 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu; license: GPL

Streaming on rtmp://0.0.0.0:1935
WARNING: Trying different position for client digest!
Processing connect
app : cam4-edge-live
flashVer : WIN 27,0,0,130
swfUrl : https://c4static-lw001.xcdnpro.com/client/Cam4Chatless_1.202_guest.swf
tcUrl : rtmp://srcm114.cam4.com/cam4-edge-live
pageUrl : https://www.cam4.com/chiennette
live : yes
Playpath : chiennette-247-0eb13d07-44dd-4d0f-b94b-e86514958e9d?playToken=null
Saving as : 2017-10-06_12-33-20_chiennette-247-0eb13d07-44dd-4d0f-b94b-e86514958e9d.flv
WARNING: ignoring too small audio packet: size: 0

makkabaeus
10-06-2017, 05:17 PM
I have problems today too.

libertyx
10-07-2017, 03:40 AM
YES

the auto detection in JMR will not work since yesterday

Router
10-08-2017, 09:47 PM
I can't download rtmp from cam4 with IDM anymore.. Anyone knows other method like that? :(

NerfHerder101
10-09-2017, 12:49 AM
I just use Tubedigger. I broke down and bought the full version. It's only $15USD after you use the 40% off coupon (just google Tubedigger Discount)

Either use TubeDiggers built in browser, or use a 32bit version of Opera or Firefox and use Tubediggers DL mode and make sure monitor browsers is enabled. It will download the stream even after you close the browser, so as long the model does not refresh, go into pvt or offline.

https://i.imgur.com/3YZ1RAU.png

I can't download rtmp from cam4 with IDM anymore.. Anyone knows other method like that? :(

Router
10-09-2017, 08:12 PM
I just use Tubedigger. I broke down and bought the full version. It's only $15USD after you use the 40% off coupon (just google Tubedigger Discount)

Either use TubeDiggers built in browser, or use a 32bit version of Opera or Firefox and use Tubediggers DL mode and make sure monitor browsers is enabled. It will download the stream even after you close the browser, so as long the model does not refresh, go into pvt or offline.

https://i.imgur.com/3YZ1RAU.png
Maybe other way? I'm looking for something similar to IDM wich allows you to download many of webcams at the same time :)

NerfHerder101
10-10-2017, 01:21 AM
Maybe other way? I'm looking for something similar to IDM wich allows you to download many of webcams at the same time :)

It will let you DL as many public shows as you want ;)

https://i.imgur.com/t4zuGJ5.png

horacio
10-10-2017, 01:57 AM
I just tested my script and saw it work without any problems.

https://s1.postimg.org/8cssg9zbf3/2445.jpg

Link:https://github.com/horacio9a/cam4-anonymous

Download link for zip file: https://codeload.github.com/horacio9a/cam4-anonymous/zip/master

NerfHerder101
10-10-2017, 02:22 AM
I just tested my script and saw it work without any problems.



No idea what I am doing wrong. Installed python and followed your instructions. Edited cfg and bat files to point to proper directories and I keep running into this issue.

https://i.imgur.com/vsoexnZ.png

**************
https://i.imgur.com/pQy46b1.png

I'll eventually figure it out. :|

horacio
10-10-2017, 10:27 AM
No idea what I am doing wrong. Installed python and followed your instructions. Edited cfg and bat files to point to proper directories and I keep running into this issue.

https://i.imgur.com/vsoexnZ.png

**************
https://i.imgur.com/pQy46b1.png

I'll eventually figure it out. :|

In C:\-c4-py\ must be all files from https://codeload.github.com/horacio9a/cam4-anonymous/zip/master except: 'c4.bat' and 'C4_Model.txt' who is in C:\Windows (there is also all rtmp, ffmpeg, ffplay and some other important *.exe who must be in PC path)
Check with 'pip list' what python modules you need. I see you need 'urllib3' module.
check also if other modules from Requirements.txt exist.

DateTime==4.1.1
requests==2.18.1
Command==0.1.0
colorama==0.3.7
termcolor==1.1.0
configparser==3.5.0

cristian
10-17-2017, 03:41 PM
can someone please help me to record the vip show in 17live?
https://seventeenlive.com/
for example i use this command
https://s1.pixxxels.org/6h4qr5blan/image.jpg
last week all was ok because when the model pass from free to private rtmpdump never stop to record and the same from private to vip
now rtmpdump stop to record from free to private and i must restart
but never record the vip show
can someone please help me?

Damianonymous
10-20-2017, 12:42 AM
I can't download rtmp from cam4 with IDM anymore.. Anyone knows other method like that? :(

The issue only occurs in Chrome, and other browsers still work with IDM on the Cam4 site.

Moonspell
10-20-2017, 02:14 AM
my question, is still the same, why a simply rtmdump script, for windows, no python or anything like that, it work? is really that difficult to make it work on windows without python or so?

Piccionazzo
11-06-2017, 01:07 PM
my question, is still the same, why a simply rtmdump script, for windows, no python or anything like that, it work? is really that difficult to make it work on windows without python or so?
I think it is not difficult, it is impossible.

Moonspell
11-07-2017, 03:19 PM
o yes? sure thing... :) impossible's nothing, so it must to have a way for make it work and trick it directly from windows :)

omassipolo
11-07-2017, 08:10 PM
The tricks mentioned here are really nice and might help to solve problems with other web-sites. However newer versions of RTMP Flash stream recorders (http://all-streaming-media.com/record-video-stream/record-streaming-video-Adobe-Flash-FLV-videos.htm) have better support of cam4.com. For example, Replay Media Catcher (http://all-streaming-media.com/record-video-stream/Replay-Media-Catcher-HTTP-RTMP-FLV-MP3-ripper-recorder.htm) can perfectly record RTMP web-cams from cam4:
Tutorial: How to record adult/sex/porn webcam videos from cam4 with Replay Media Catcher (http://all-streaming-media.com/download-porn-videos/record_2_www.cam4.com-How-to-record-adult-sex-porn-webcam-videos-from-cam4.htm)

your link is considered as by Chrome and Firefox

Deceptive site ahead

Attackers on all-streaming-media.com may trick you into doing something dangerous like installing software or revealing your personal information (for example, passwords, phone numbers, or credit cards). Learn more

Automatically send some system information and page content to Google to help detect dangerous apps and sites. Privacy policy

Damianonymous
11-08-2017, 06:18 AM
The post you quoted was sent 8 years ago, the page is inactive ;)

"The domain all-streaming-media.com may be for sale"

horacio
12-11-2017, 07:27 AM
New version of cam4 anonymous recorder v.1.0.7 for python27 is uploaded.
There are some changes like:
- The 'State Model' indication is added. If the model is offline or incorrect model name script stops.
- We can now choose other recording and viewing programs except rtmpdump who is default program.
- Default script is 'c4a.py' letter 'a' in the name means 'ALL' for 'all mode' record and play with hidden script traffic.
- Script 'c4aw.py' letter 'w' in the name means 'window' allow you to see what is actually happening in a separate window.
- Other scripts is for 24/7 permanent recordings.

All this is on: https://github.com/horacio9a/cam4-anonymous

Download link for zip file is: https://codeload.github.com/horacio9a/cam4-anonymous/zip/master

UserQ
12-17-2017, 08:08 AM
Thx for the app, very cool.

but how can i start recording the list of models without my attends?

So i want to add to the file list of models each name per line, start script and it will be checked every 30 sec if online, in case if online it will start recording. Something like was done for the MFC Recorder, if you know.

Thx.

I found, need to set the 5 option

horacio
12-17-2017, 10:16 PM
Thx for the app, very cool.

but how can i start recording the list of models without my attends?

So i want to add to the file list of models each name per line, start script and it will be checked every 30 sec if online, in case if online it will start recording. Something like was done for the MFC Recorder, if you know.

Thx.

I found, need to set the 5 option

So far, there have been several attempts to make good GUI applications but all of thats attempts have lasted very shortly because the Cam4 team watching this public forum well and often changes something so I do not know how much it would make any sense.

horacio
12-23-2017, 02:28 AM
Similar to what i already made for bongacams now i made an improvement of the original stramlink plugin script also for cam4.

All the information about this is there: https://github.com/horacio9a/streamlink-cam4

Download link for all files in zip is there: https://codeload.github.com/horacio9a/streamlink-cam4/zip/master

wizard
12-23-2017, 03:53 AM
Nice piece of work from you, just as always. Thanks !

mate__1974
12-30-2017, 12:01 PM
Hi,

I have a models list on my computer..
How I can start to recording from them all without needing to start every one individually.

How i start this script?
"
So i want to add to the file list of models each name per line, start script and it will be checked every 30 sec if online, in case if online it will start recording. Something like was done for the MFC Recorder, if you know.

Thx.

I found, need to set the 5 option"

mate__1974
12-30-2017, 12:03 PM
Thx for the app, very cool.

but how can i start recording the list of models without my attends?

So i want to add to the file list of models each name per line, start script and it will be checked every 30 sec if online, in case if online it will start recording. Something like was done for the MFC Recorder, if you know.

Thx.

I found, need to set the 5 option



Hi,,
I am interested how i can do this also?

horacio
12-31-2017, 02:26 AM
Hi,,
I am interested how i can do this also?

I think this type of recorder made @beaston02 so look at:

https://github.com/beaston02/CAM4Recorder

newmember27
04-10-2018, 03:49 AM
it still works properly with a small change but I do not share it again
:)

Could you send by email or PM for you?

flipper2011
04-14-2018, 02:19 AM
this script doesnt work anymore, i loved to know how to fix it so working again

gamer388
05-19-2018, 03:14 PM
Hi,
I'm not keen of the python script solution.
I would prefer to use a .exe program to record cam4.

I'm currently using chaturbateREC and the exe version of MFC recorder / livestreamer.

Moonspell
06-16-2018, 08:27 AM
Hi,
I'm not keen of the python script solution.
I would prefer to use a .exe program to record cam4.

I'm currently using chaturbateREC and the exe version of MFC recorder / livestreamer.



indeed!