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
  #951  
Old 07-04-2017, 01:45 AM
Hermiod Hermiod is offline
Member
 
Join Date: Jun 2017
Posts: 56
Hermiod 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 horacio View Post
I agree with your thinking and I just made some steps in that direction.
I've put my versions of Node Recorder for ShowUp and Chaturbate on https://github.com/horacio9a
For those who are slightly weaker here are the following and download links:

https://codeload.github.com/horacio9...ode/zip/master => 'C:\-nm-mfc\'
https://codeload.github.com/horacio9...ode/zip/master => 'C:\-nm-cb\'
https://codeload.github.com/horacio9...ode/zip/master => 'C:\-nm-su\'

My node.bat batch script supports the above directories, but it is not a problem to edit node.bat if it is not case.
I node.bat keep in 'C:\Windows\'. I suggest that after editing node.bat using the program 'Advanced BAT_to_EXE_Converter' create an exe whose shortcut can put in the taskbar for easy launch.
Does that mean your scipt only works on C:\-nm-mfc?

I keep trying to run it elsewhere and it just fails, even tried moving just main.js/index.html to my other working folder of mfc-node and it also fails to record stuff.

Renaming node.bat manages to start it, but nothing happens.

EDIT: Tried running the commands in node.bat manually, they just end up at a windows error box.
Reply With Quote
  #952  
Old 07-04-2017, 01:57 AM
homah homah is offline
Junior Member
 
Join Date: Jun 2017
Posts: 15
homah 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 Hermiod View Post
Does that mean your scipt only works on C:\-nm-mfc?
If you right click and edit the .bat file you'll see the cd command that will change to this directory. Try making a shortcut to node.exe and add " main.js" to the end of the target by going into the properties of that shortcut.
Reply With Quote
  #953  
Old 07-04-2017, 06:18 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)


Quote:
Originally Posted by Hermiod View Post
Does that mean your scipt only works on C:\-nm-mfc?

I keep trying to run it elsewhere and it just fails, even tried moving just main.js/index.html to my other working folder of mfc-node and it also fails to record stuff.

Renaming node.bat manages to start it, but nothing happens.

EDIT: Tried running the commands in node.bat manually, they just end up at a windows error box.

THANK YOU for all your support, YES, i did it make it work
but to make it work, i had to rename node.bat to node1.bat because when i was trying to node main.js the system recognised node (batch file).

so now its working, i do not know if it is recording something, or how to start stop etc, but i will check

MANY THANKS to ALL DEVELOPERS
Reply With Quote
  #954  
Old 07-04-2017, 07:22 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)


THANK YOU for all your support, YES, i did it make it work
but to make it work, i had to rename node.bat to node1.bat because when i was trying to node main.js the system recognised node (batch file).

so now its working, i do not know if it is recording something, or how to start stop etc, but i will check

MANY THANKS to ALL DEVELOPERS
Reply With Quote
  #955  
Old 07-04-2017, 08:13 AM
moooby moooby is offline
Junior Member
 
Join Date: Jul 2015
Posts: 7
moooby is on a distinguished road
Exclamation

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


Quote:
Originally Posted by horacio View Post
I agree with your thinking and I just made some steps in that direction.
I've put my versions of Node Recorder for ShowUp and Chaturbate on https://github.com/horacio9a
For those who are slightly weaker here are the following and download links:

https://codeload.github.com/horacio9...ode/zip/master => 'C:\-nm-mfc\'
https://codeload.github.com/horacio9...ode/zip/master => 'C:\-nm-cb\'
https://codeload.github.com/horacio9...ode/zip/master => 'C:\-nm-su\'

My node.bat batch script supports the above directories, but it is not a problem to edit node.bat if it is not case.
I node.bat keep in 'C:\Windows\'. I suggest that after editing node.bat using the program 'Advanced BAT_to_EXE_Converter' create an exe whose shortcut can put in the taskbar for easy launch.
Hello, I tried to run Horacio's script but I get the following parse error, does anyone else get this? It fails to get the model list. Perhaps MFC changed something on the back end again

Reply With Quote
  #956  
Old 07-04-2017, 08:47 AM
homah homah is offline
Junior Member
 
Join Date: Jun 2017
Posts: 15
homah 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 moooby View Post
Perhaps MFC changed something on the back end again
Mines still okay.
Reply With Quote
  #957  
Old 07-04-2017, 08:56 AM
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)


Quote:
Originally Posted by moooby View Post
Hello, I tried to run Horacio's script but I get the following parse error, does anyone else get this? It fails to get the model list. Perhaps MFC changed something on the back end again

This is because of "invalid" topic of some model.

Dirty fix is to find the lines

Code:
var topic_dec = decodeURIComponent(m[14]);
var tags_dec = decodeURIComponent(m[21]);
and replace by
Code:
var topic_dec = '';
try {
    topic_dec = decodeURIComponent(m[14]);
} catch (err) {
    topic_dec = m[14];
}
var tags_dec = '';
try {
    tags_dec = decodeURIComponent(m[21]);
} catch (err) {
    tags_dec = m[21];
}
Reply With Quote
  #958  
Old 07-04-2017, 09:23 AM
mfmax mfmax is offline
Junior Member
 
Join Date: Apr 2017
Posts: 25
mfmax is on a distinguished road
Thumbs up

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


Quote:
Originally Posted by John1915 View Post
First: Thanks to mfmax for letting me know about the recent mfc update!

Here is version 0.2.5 of OnlineModels:
http://www76.zippyshare.com/v/LOVPThZA/file.html

Changes:
updated JSON parsing to work with recent mfc update

Important: The order in which the app outputs the data changed a bit to represent the actual layout mfc uses. Now "blurb" is also being read from rdata (fast) and the index of a couple items has changed. If you use this to parse data to your own app, please check if everything works correctly!

Update: I'm still planning on releasing 0.3 at some point but am currently swamped with irl stuff. I have some really nice features planned that just need more time, so I really can't give an eta but I can promise that I'll work on it!

It's me who thanks!
Reply With Quote
  #959  
Old 07-04-2017, 09:31 AM
mfmax mfmax is offline
Junior Member
 
Join Date: Apr 2017
Posts: 25
mfmax is on a distinguished road
Default

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


I would like antihero to update CamgirlzREC as well...
Reply With Quote
  #960  
Old 07-04-2017, 09:43 AM
moooby moooby is offline
Junior Member
 
Join Date: Jul 2015
Posts: 7
moooby 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 supersonic80 View Post
This is because of "invalid" topic of some model.
Thank you supersonic80. That seems to have fixed 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 04:52 AM.


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