Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (Adult streaming videos) (http://stream-recorder.com/forum/forumdisplay.php?f=40)
-   -  

www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)

(http://stream-recorder.com/forum/showthread.php?t=3851)

00101010101 11-17-2018 11:27 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
I've noticed too that the 960p streams drop in and out, so you don't get smooth playback. Switching from livestreamer to streamlink w/ --stream-sorting-excludes=960p fixed it up, though for some reason I also had to replace the streamlink hls plugin with the old livestreamer stream plugin for it to work at all with hlsvariant: URIs (I didn't try to fix the original hls plugin, maybe someone here already has).

dm9452 11-18-2018 05:40 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
[quote=korexaj;96634]if you're using ffmpeg to record simple solution is to add this parameter
Code:

-map 0:1 -map 0:2
I use one of horacio's programs(.exe version), which uses ffmpeg in the background. Don't know where to insert the parameter. :(

korexaj 11-18-2018 07:56 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
[quote=dm9452;96643]
Quote:

Originally Posted by korexaj (Post 96634)
if you're using ffmpeg to record simple solution is to add this parameter
Code:

-map 0:1 -map 0:2
I use one of horacio's programs(.exe version), which uses ffmpeg in the background. Don't know where to insert the parameter. :(

not sure which one you're talking about (i use his streamlink version). you can't edit .exe files because those have been compiled. the "-map 0:1 -map 0:2" parameter can be added just after the url for example "ffmpeg -i URL -map 0:1 -map 0:2".

dm9452 12-02-2018 12:31 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
[quote=korexaj;96644]
Quote:

Originally Posted by dm9452 (Post 96643)

not sure which one you're talking about (i use his streamlink version). you can't edit .exe files because those have been compiled. the "-map 0:1 -map 0:2" parameter can be added just after the url for example "ffmpeg -i URL -map 0:1 -map 0:2".

Thanks!
I found his Node version, which is edit-able, via google. And it works!

OntintheGod 12-05-2018 08:02 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
I am using mfc-node horacio9a's .exe version. Does anyone has solution for me please ?

dm9452 12-06-2018 03:51 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by OntintheGod (Post 96655)
I am using mfc-node horacio9a's .exe version. Does anyone has solution for me please ?

Just use his .js version, which is almost identical to the .exe version, other than that you have to install Git and Node.js to run it.

OntintheGod 12-07-2018 11:17 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by dm9452 (Post 96656)
Just use his .js version, which is almost identical to the .exe version, other than that you have to install Git and Node.js to run it.

from where can i download it? any available instructions?

dm9452 12-07-2018 05:20 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by OntintheGod (Post 96657)
from where can i download it? any available instructions?

PM'd the link.

I chose "ff-ts" as my "downloadProgram", so I edited line 214 of main.js from
Code:

  if (config.downloadProgram == 'ff-ts') {captureProcess = spawn('ffmpeg', ['-hide_banner','-v','fatal','-i',hls_url,'-c','copy','-vsync','2','-r','60','-b:v','500k',path + '/' + filename])}
to
Code:

  if (config.downloadProgram == 'ff-ts') {captureProcess = spawn('ffmpeg', ['-hide_banner','-v','fatal','-i',hls_url,'-map','0:1','-map','0:2','-c','copy','-vsync','2','-r','60','-b:v','500k',path + '/' + filename])}

OntintheGod 12-13-2018 12:34 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by dm9452 (Post 96658)
PM'd the link.

I chose "ff-ts" as my "downloadProgram", so I edited line 214 of main.js from
Code:

  if (config.downloadProgram == 'ff-ts') {captureProcess = spawn('ffmpeg', ['-hide_banner','-v','fatal','-i',hls_url,'-c','copy','-vsync','2','-r','60','-b:v','500k',path + '/' + filename])}
to
Code:

  if (config.downloadProgram == 'ff-ts') {captureProcess = spawn('ffmpeg', ['-hide_banner','-v','fatal','-i',hls_url,'-map','0:1','-map','0:2','-c','copy','-vsync','2','-r','60','-b:v','500k',path + '/' + filename])}


i downloaded everything, run node main.js and i get the following error:
events.js:160
throw er; // Unhandled 'error' event
^

Error: spawn mfcd ENOENT
at exports._errnoException (util.js:1012:11)
at Process.ChildProcess._handle.onexit (internal/child_process.js:182:32)
at onErrorNT (internal/child_process.js:348:16)
at _combinedTickCallback (internal/process/next_tick.js:74:11)
at process._tickCallback (internal/process/next_tick.js:98:9)

any idea how to solve it ?

supersonic80 12-13-2018 03:46 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
I assume you are talking about horacio9a's version.
First of all, he has 2 branches (master and v2). I believe master is old, v2 to is the latest. Maybe you are actually after v2.

As for your original problem, there is a credits section on the page, just download and install mfcd.exe
https://github.com/horacio9a/mfc-node/tree/master



Quote:

Originally Posted by OntintheGod (Post 96674)
i downloaded everything, run node main.js and i get the following error:
events.js:160
throw er; // Unhandled 'error' event
^

Error: spawn mfcd ENOENT
at exports._errnoException (util.js:1012:11)
at Process.ChildProcess._handle.onexit (internal/child_process.js:182:32)
at onErrorNT (internal/child_process.js:348:16)
at _combinedTickCallback (internal/process/next_tick.js:74:11)
at process._tickCallback (internal/process/next_tick.js:98:9)

any idea how to solve it ?


korexaj 12-14-2018 10:37 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by OntintheGod (Post 96674)
i downloaded everything, run node main.js and i get the following error:
events.js:160
throw er; // Unhandled 'error' event
^

Error: spawn mfcd ENOENT
at exports._errnoException (util.js:1012:11)
at Process.ChildProcess._handle.onexit (internal/child_process.js:182:32)
at onErrorNT (internal/child_process.js:348:16)
at _combinedTickCallback (internal/process/next_tick.js:74:11)
at process._tickCallback (internal/process/next_tick.js:98:9)

any idea how to solve it ?

that error in this case means the mfcd file is not in the same folder or you're using the wrong version for your operating system i.e linux version will not work on windows and vice versa.

source: i came across this exact issue before and downloading correct mfcd file fixed it

OntintheGod 12-14-2018 11:24 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by korexaj (Post 96680)
that error in this case means the mfcd file is not in the same folder or you're using the wrong version for your operating system i.e linux version will not work on windows and vice versa.

source: i came across this exact issue before and downloading correct mfcd file fixed it

thanks for the reply, mfcd was missing....
now, which method of recording should i select in order to not have the freezing problems?

korexaj 12-15-2018 08:57 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by OntintheGod (Post 96681)
thanks for the reply, mfcd was missing....
now, which method of recording should i select in order to not have the freezing problems?

i found streamlink to be the best all round for MFC. i use mfcd if a stream has no mobile feed as it can't be recorded with ffmpeg or streamlink.

however mfcd can't record the latest hd streams because its a new implementation which was introduced after the program was created. same actually applies to the whole script in general, it cannot record hd streams which might not be a big issue for some as only few models actually stream in HD (majority are 240p and 600p).

supersonic80 12-17-2018 05:44 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by OntintheGod (Post 96681)
thanks for the reply, mfcd was missing....
now, which method of recording should i select in order to not have the freezing problems?

You might try to use this version, should save you a bit of time.
https://mega.nz/#!1nAiFYTZ!Kd3NNBAoI...iFJd0XyX xJRU

Control via http://localhost:9080

OntintheGod 12-17-2018 12:43 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by korexaj (Post 96689)
i found streamlink to be the best all round for MFC. i use mfcd if a stream has no mobile feed as it can't be recorded with ffmpeg or streamlink.

however mfcd can't record the latest hd streams because its a new implementation which was introduced after the program was created. same actually applies to the whole script in general, it cannot record hd streams which might not be a big issue for some as only few models actually stream in HD (majority are 240p and 600p).

ok thanks but i change config to record using streamlink but soomething is missing.... i get an error; what program should i install (streamlink?) and where?

OntintheGod 12-17-2018 01:24 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by supersonic80 (Post 96693)
You might try to use this version, should save you a bit of time.
https://mega.nz/#!1nAiFYTZ!Kd3NNBAoI...iFJd0XyX xJRU

Control via http://localhost:9080

thanks, i installed it, localhost says it is capturing the model i choose but nothing appears at capture dir console shows that recording start and stop

i really do not know what is wrong

supersonic80 12-17-2018 03:11 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
You don't need to do anything with config.yml file, it should work "out of the box".
Just download and install streamlink (this is a unspesified requirement)
https://github.com/streamlink/streamlink/releases


Quote:

Originally Posted by OntintheGod (Post 96698)
thanks, i installed it, localhost says it is capturing the model i choose but nothing appears at capture dir console shows that recording start and stop

i really do not know what is wrong


j_cool 12-28-2018 11:45 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by supersonic80 (Post 96693)
You might try to use this version, should save you a bit of time.
https://mega.nz/#!1nAiFYTZ!Kd3NNBAoI...iFJd0XyX xJRU

Control via http://localhost:9080

This mfc node looks good, readme file is missing.
There are exe and config file only, simple users guide would be helpful showing one real life example of usage.

cabulo 12-29-2018 01:49 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by j_cool (Post 96730)
one real life example of usage.

before:

Code:

captureDirectory: ./capture
completeDirectory: ./complete
modelScanInterval: 30
createModelDirectory: true
minFileSizeMb: 10
dateFormat: YYYYMMDD-HHmmss
port: 9080
debug: true
hlsDebug: false
models: []
queue: []
extraArgs: '--stream-sorting-excludes "960p,5564k" --default-stream best,best-unfiltered'


after:


?


I mean, how these 2 lines would be used ?

models: []
queue: []


Quote:

Originally Posted by supersonic80 (Post 96699)
You don't need to do anything with config.yml file

after:

Code:

captureDirectory: ./capture
completeDirectory: ./complete
modelScanInterval: 30
createModelDirectory: true
minFileSizeMb: 10
dateFormat: YYYYMMDD-HHmmss
port: 9080
debug: true
hlsDebug: false
models: []
queue: []
extraArgs: '--stream-sorting-excludes "960p,5564k" --default-stream best,best-unfiltered'


cabulo 12-29-2018 02:36 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
As a first time user of mfc-node.exe when I double click on it it opens cmd.window and shows this:

[12/29/2018 - 09:33:14] Server listening on: 0.0.0.0:9080
[2018/12/29 - 09:33:15] Connecting to MyFreeCams websocket server xchat72...
[2018/12/29 - 09:33:16] Login handshake completed. Logged in as 'Guest64159' with sessionId 874672205
[12/29/2018 - 09:33:17] [DEBUG] Start new cycle
[12/29/2018 - 09:33:17] 1378 model(s) online
[12/29/2018 - 09:33:17] [DEBUG] 0 model(s) in config
[12/29/2018 - 09:33:17] [DEBUG] 0 model(s) to capture
[12/29/2018 - 09:33:17] Done, will search for new models in 30 second(s).

What I have to do next (or before) to make something happen ?

Damianonymous 12-29-2018 03:37 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by cabulo (Post 96732)
What I have to do next (or before) to make something happen ?

http://localhost:9080/


cabulo 12-29-2018 05:02 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Anybody else here with clear and simple instructions that I can follow ?

Or some other common sense link on this forum ?

Sharinel 12-29-2018 10:06 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Cabulo - the url that was posted by Damian is the next step, but it only works if your cmd window is running.

Step 1 - Double click on the mfc-node.exe to bring up your cmd window
Step 2 - click on the localhost url which should then bring up a browser window as shown in the darkened background of Damians screenshot (it lists all the models, you can order it by the columns at the top of the page - model name, number of viewers etc)
Step 3 - Click on a models name in the browser list which will show the foreground image that Damian linked, his example being LexiVixi
Step 4 - Click on the record button at the bottom left of the window, that will add the model to the list of your recorded models.

At that point if you change back to your cmd window you should see a note that the model has been added and is now recording, and that will refresh every 30 secs.


If you try to click on the localhost link without your cmd window being run first you will get an error message (mine is Firefox can’t establish a connection to the server at localhost:9080.)

Hope that works for you!

cabulo 12-29-2018 10:20 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
This is clear, helpful and works.

Cheers !

horacio 01-07-2019 02:17 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
This is the win-x86 EXE version of the program who is originally on the link: https://github.com/horacio9a/mfc-node/tree/v2
This EXE version is less demanding because you don't have to have Node.js installed along with other modules that are otherwise required.
Those more experienced can always look at the github link for more details.
Download link is: https://www.mediafire.com/file/wel6d...3.0.1.rar/file

Syl0pt 01-09-2019 04:00 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
I'm having trouble installing horacio9a's mfc-node-2 https://github.com/horacio9a/mfc-node/tree/v2.
Hoping someone here may have an idea. After downloading it and running: npm install I get:


Quote:

$ npm install
npm ERR! file /home/user/Videos/mfc-node-2/package.json
npm ERR! code EJSONPARSE
npm ERR! JSON.parse Failed to parse json
npm ERR! JSON.parse Unexpected string in JSON at position 463 while parsing '{
npm ERR! JSON.parse "name": "mfc-node",
npm ERR! JSON.parse "version": "3.'
npm ERR! JSON.parse Failed to parse package.json data.
npm ERR! JSON.parse package.json must be actual JSON, not just JavaScript.

npm ERR! A complete log of this run can be found in:
npm ERR! /home/user/.npm/_logs/2019-01-09T19_10_58_843Z-debug.log
And here's the complete log:
----------------------
Quote:

0 info it worked if it ends with ok
1 verbose cli [ '/home/user/.nvm/versions/node/v10.13.0/bin/node',
1 verbose cli '/home/user/.nvm/versions/node/v10.13.0/bin/npm',
1 verbose cli 'install' ]
2 info using npm@6.4.1
3 info using node@v10.13.0
4 verbose npm-session 60c7f24cf354951c
5 silly install runPreinstallTopLevelLifecycles
6 silly install loadCurrentTree
7 silly install readLocalPackageData
8 timing stage:rollbackFailedOptional Completed in 4ms
9 timing stage:runTopLevelLifecycles Completed in 25ms
10 verbose stack Error: Failed to parse json
10 verbose stack Unexpected string in JSON at position 463 while parsing '{
10 verbose stack "name": "mfc-node",
10 verbose stack "version": "3.'
10 verbose stack at parseError (/home/user/.nvm/versions/node/v10.13.0/lib/node_modules/npm/node_modules/read-package-json/read-json.js:452:11)
10 verbose stack at parseJson (/home/user/.nvm/versions/node/v10.13.0/lib/node_modules/npm/node_modules/read-package-json/read-json.js:104:26)
10 verbose stack at /home/user/.nvm/versions/node/v10.13.0/lib/node_modules/npm/node_modules/read-package-json/read-json.js:51:5
10 verbose stack at /home/user/.nvm/versions/node/v10.13.0/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js:78:16
10 verbose stack at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3)
11 verbose cwd /home/user/Videos/mfc-node-2
12 verbose Linux 4.4.0-141-generic
13 verbose argv "/home/user/.nvm/versions/node/v10.13.0/bin/node" "/home/user/.nvm/versions/node/v10.13.0/bin/npm" "install"
14 verbose node v10.13.0
15 verbose npm v6.4.1
16 error file /home/user/Videos/mfc-node-2/package.json
17 error code EJSONPARSE
18 error JSON.parse Failed to parse json
18 error JSON.parse Unexpected string in JSON at position 463 while parsing '{
18 error JSON.parse "name": "mfc-node",
18 error JSON.parse "version": "3.'
19 error JSON.parse Failed to parse package.json data.
19 error JSON.parse package.json must be actual JSON, not just JavaScript.
20 verbose exit [ 1, true ]

dm9452 01-10-2019 01:15 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Syl0pt (Post 96760)
I'm having trouble installing horacio9a's mfc-node-2 ... After downloading it and running: npm install I get:

So do I.

The .exe version works though. It's great that it can capture wide-screen streams using ffmpeg now. However, it can't create individual directories for different models under naming rules "id+nm" like some previous editions. Can you put that feature back, @horacio? Many thanks.

supersonic80 01-10-2019 03:25 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Syl0pt (Post 96760)
I'm having trouble installing horacio9a's mfc-node-2 https://github.com/horacio9a/mfc-node/tree/v2.
Hoping someone here may have an idea.

There is a comma missing at line 18 of package.json but I doubt that it will help.

The MFCAuto package was taken down by DMCA notice. npm will fail to install it and without this package, the script is "useless".

Syl0pt 01-10-2019 11:38 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
[/quote]The MFCAuto package was taken down by DMCA notice. npm will fail to install it and without this package, the script is "useless".[/quote]

I have an MFCAuto.v5.6.2 in a tar.gz. Can I use that in some way to get the script up and running?

Damianonymous 01-10-2019 04:48 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Change line 18 in package.json to:

Code:

"MFCAuto": "Damianonymous/MFCAuto",

supersonic80 01-10-2019 04:48 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Syl0pt (Post 96764)
The MFCAuto package was taken down by DMCA notice. npm will fail to install it and without this package, the script is "useless".

I have an MFCAuto.v5.6.2 in a tar.gz. Can I use that in some way to get the script up and running?

Usually, you just need to unpack the archive into the script folder and make changes in package.json file, something like this (I suppose MFCAuto on the line 18)

Code:

"MFCAuto": "file:./<name of the dir where you unpacked MFCAuto>",
Then run 'npm install' again

Syl0pt 01-10-2019 11:32 PM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Damianonymous (Post 96765)
Change line 18 in package.json to:

Code:

"MFCAuto": "Damianonymous/MFCAuto",

Well, that actually worked to my surprise.

But upon running 'node main.js', it starts up correctly then gives this:

Quote:

[00:29:24] Server listening on: 0.0.0.0:8888
[2019/01/11 - 00:29:25] Connecting to MyFreeCams websocket server xchat63...
[2019/01/11 - 00:29:26] Login handshake completed. Logged in as 'Guest22003' with sessionId 431235452
[00:29:28] [DEBUG] Start new cycle.
[00:29:28] 1549 model(s) online.
[00:29:28] [DEBUG] 0 model(s) in the queue.
[00:29:28] [DEBUG] 1 model(s) in config.
[00:29:28] [DEBUG] 1 model(s) to recording.
[00:29:28] HOTREAL36DD now online - starting recording process.
[00:29:28] Done, will search for new models in 30 second(s).
events.js:167
throw er; // Unhandled 'error' event
^

Error: spawn mfcd ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:232:19)
at onErrorNT (internal/child_process.js:407:16)
at process._tickCallback (internal/process/next_tick.js:63:19)
Emitted 'error' event at:
at Process.ChildProcess._handle.onexit (internal/child_process.js:238:12)
at onErrorNT (internal/child_process.js:407:16)
at process._tickCallback (internal/process/next_tick.js:63:19)
so so close. lol

Any ideas?

Hermiod 01-11-2019 12:14 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by horacio (Post 96758)
This is the win-x86 EXE version of the program who is originally on the link: https://github.com/horacio9a/mfc-node/tree/v2
This EXE version is less demanding because you don't have to have Node.js installed along with other modules that are otherwise required.
Those more experienced can always look at the github link for more details.
Download link is: https://www.mediafire.com/file/wel6d...3.0.1.rar/file

Thanks, that is working.

Did your version ever split by id+nm?

Hermiod 01-11-2019 12:15 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Syl0pt (Post 96767)
Well, that actually worked to my surprise.

But upon running 'node main.js', it starts up correctly then gives this:



so so close. lol

Any ideas?

You need MFCD.exe

Syl0pt 01-11-2019 12:51 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Hermiod (Post 96769)
You need MFCD.exe

lol. I used to use it back when I had windows. Doesn't work with Linux. Not even with Wine.

horacio 01-11-2019 02:53 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Syl0pt (Post 96770)
lol. I used to use it back when I had windows. Doesn't work with Linux. Not even with Wine.

You can try:

http://www.mediafire.com/file/fw1p4p...Linux.rar/file

but rename MFCDLinux to MFCD

Syl0pt 01-11-2019 03:11 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by horacio (Post 96771)
You can try:

http://www.mediafire.com/file/fw1p4p...Linux.rar/file

but rename MFCDLinux to MFCD

Yeah, I'll give it a try. Thanks.

I'm assuming the problem with the bloated resolution is fixed here, correct?

horacio 01-11-2019 03:11 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by dm9452 (Post 96761)
So do I.

The .exe version works though. It's great that it can capture wide-screen streams using ffmpeg now. However, it can't create individual directories for different models under naming rules "id+nm" like some previous editions. Can you put that feature back, @horacio? Many thanks.

You can try change in config.yml

createModelDirectory: true

and than have individual directories for different models under naming rules "nm"

Syl0pt 01-11-2019 03:22 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Syl0pt (Post 96772)
Yeah, I'll give it a try. Thanks.

I'm assuming the problem with the bloated resolution is fixed here, correct?

Unfortunately that didn't work for me. Says 'Access Denied'.

What about the problem I was having with the v2 install here: http://stream-recorder.com/forum/sho...postcount=1552

Anything look fixable there? It starts up fine then gives the error.

horacio 01-11-2019 03:38 AM

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


 
Quote:

Originally Posted by Syl0pt (Post 96774)
Unfortunately that didn't work for me. Says 'Access Denied'.

What about the problem I was having with the v2 install here: http://stream-recorder.com/forum/sho...postcount=1552

Anything look fixable there? It starts up fine then gives the error.

I'd love to look like your config.yml without a models


All times are GMT -6. The time now is 05:28 AM.