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)

Hermiod 07-04-2017 12:45 AM

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


 
Quote:

Originally Posted by horacio (Post 92463)
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.

homah 07-04-2017 12:57 AM

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


 
Quote:

Originally Posted by Hermiod (Post 92495)
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.

OntintheGod 07-04-2017 05:18 AM

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


 
Quote:

Originally Posted by Hermiod (Post 92495)
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

OntintheGod 07-04-2017 06:22 AM

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

moooby 07-04-2017 07:13 AM

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


 
Quote:

Originally Posted by horacio (Post 92463)
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 :(


homah 07-04-2017 07:47 AM

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


 
Quote:

Originally Posted by moooby (Post 92500)
Perhaps MFC changed something on the back end again :(

Mines still okay.

supersonic80 07-04-2017 07:56 AM

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


 
Quote:

Originally Posted by moooby (Post 92500)
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];
}


mfmax 07-04-2017 08:23 AM

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


 
Quote:

Originally Posted by John1915 (Post 92482)
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! :)

mfmax 07-04-2017 08:31 AM

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


 
I would like antihero to update CamgirlzREC as well... :(

moooby 07-04-2017 08:43 AM

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


 
Quote:

Originally Posted by supersonic80 (Post 92502)
This is because of "invalid" topic of some model.

Thank you supersonic80. That seems to have fixed it :)


All times are GMT -6. The time now is 06:18 AM.