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 ?



All times are GMT -6. The time now is 12:40 AM.