Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording (Adult streaming videos)
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1521  
Old 11-18-2018, 12:27 AM
00101010101 00101010101 is offline
Junior Member
 
Join Date: Aug 2016
Posts: 5
00101010101 is on a distinguished road
Default

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).
Reply With Quote
  #1522  
Old 11-18-2018, 06:40 PM
dm9452 dm9452 is offline
Junior Member
 
Join Date: Sep 2015
Posts: 20
dm9452 is on a distinguished road
Default

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.
Reply With Quote
  #1523  
Old 11-18-2018, 08:56 PM
korexaj korexaj is offline
Member
 
Join Date: Feb 2017
Posts: 63
korexaj is on a distinguished road
Default

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


[quote=dm9452;96643]
Quote:
Originally Posted by korexaj View Post
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".
Reply With Quote
  #1524  
Old 12-02-2018, 01:31 PM
dm9452 dm9452 is offline
Junior Member
 
Join Date: Sep 2015
Posts: 20
dm9452 is on a distinguished road
Default

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


[quote=korexaj;96644]
Quote:
Originally Posted by dm9452 View Post

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!
Reply With Quote
  #1525  
Old 12-05-2018, 09:02 AM
OntintheGod OntintheGod is offline
Member
 
Join Date: Apr 2017
Posts: 35
OntintheGod is on a distinguished road
Default

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 ?
Reply With Quote
  #1526  
Old 12-06-2018, 04:51 AM
dm9452 dm9452 is offline
Junior Member
 
Join Date: Sep 2015
Posts: 20
dm9452 is on a distinguished road
Default

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


Quote:
Originally Posted by OntintheGod View Post
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.
Reply With Quote
  #1527  
Old 12-07-2018, 12:17 PM
OntintheGod OntintheGod is offline
Member
 
Join Date: Apr 2017
Posts: 35
OntintheGod is on a distinguished road
Default

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


Quote:
Originally Posted by dm9452 View Post
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?
Reply With Quote
  #1528  
Old 12-07-2018, 06:20 PM
dm9452 dm9452 is offline
Junior Member
 
Join Date: Sep 2015
Posts: 20
dm9452 is on a distinguished road
Default

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


Quote:
Originally Posted by OntintheGod View Post
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])}
Reply With Quote
  #1529  
Old 12-13-2018, 01:34 PM
OntintheGod OntintheGod is offline
Member
 
Join Date: Apr 2017
Posts: 35
OntintheGod is on a distinguished road
Default

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


Quote:
Originally Posted by dm9452 View Post
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 ?
Reply With Quote
  #1530  
Old 12-13-2018, 04:46 PM
supersonic80 supersonic80 is offline
Senior Member
 
Join Date: Mar 2016
Posts: 138
supersonic80 is on a distinguished road
Default

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 View Post
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 ?
Reply With Quote
Reply Post New Thread
Tags: , , , , , , , , , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 10:19 PM.


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