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
  #961  
Old 07-04-2017, 11:44 AM
horacio horacio is offline
Senior Member
 
Join Date: Oct 2012
Posts: 213
horacio 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
I have same problem and just b4 few minutes I updated fix

You can manually remove these 2 lines for 'topic'

lin 137: var topic_dec = decodeURIComponent(m[14]);
lin 150: topic: topic_dec,

Don't worry about that because I am using 'tags' ... no 'topic' !
Reply With Quote
  #962  
Old 07-04-2017, 12:29 PM
horacio horacio is offline
Senior Member
 
Join Date: Oct 2012
Posts: 213
horacio 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 Damianonymous View Post
Alternatively, you can open "Link" in a new Chrome tab with an add-on:

https://chrome.google.com/webstore/d...pbekeedfgemhof
This plugin did not look very stable and I recommend try this one:

https://chrome.google.com/webstore/d...ffajdc/related

For now, it's OK for me
Reply With Quote
  #963  
Old 07-04-2017, 02:24 PM
xxhieixx xxhieixx is offline
Junior Member
 
Join Date: Apr 2017
Posts: 16
xxhieixx 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 mfmax View Post
I would like antihero to update CamgirlzREC as well...
I would like to see CamGirlzREC back up and running as well, it was simply a much more user friendly interface than Node is.
Does anyone have the source code for it? I can try and take a wack at it.
Reply With Quote
  #964  
Old 07-04-2017, 04:53 PM
ZeChico ZeChico is offline
Member
 
Join Date: Apr 2014
Posts: 31
ZeChico 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.

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];
}
Yep, if decodeURIComponent is used on a string with some characters not allowed on a url, it will crash the program without the use of try-catch combo.
Reply With Quote
  #965  
Old 07-04-2017, 05:13 PM
horacio horacio is offline
Senior Member
 
Join Date: Oct 2012
Posts: 213
horacio 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 ZeChico View Post
Yep, if decodeURIComponent is used on a string with some characters not allowed on a url, it will crash the program without the use of try-catch combo.
If this problem occurs again we can do decode in index.html as it was before

if (m.tags && m.tags.length > 3) {m.tags = decodeURIComponent(m.tags).substr(0,46);}
Reply With Quote
  #966  
Old 07-04-2017, 06:44 PM
CristianoA CristianoA is offline
Senior Member
 
Join Date: Nov 2012
Location: Micronesia
Posts: 261
CristianoA is on a distinguished road
Default

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


antihero was online Last Activity: Today 05:06 AM
Reply With Quote
  #967  
Old 07-04-2017, 07:33 PM
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 homah View Post
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.
I renamed the bat file, mfc-node started, but its still not working, all I get is:

[21:25:01] Server listening on: 0.0.0.0:9080
[21:25:04] 1307 model(s) online
[21:25:04] littlewetgf is AWAY or PRIVATE.
[21:25:04] IndiaSweet is online >>> start recording.
[[21:25:05] Done >>> will search for new models in 30 seconds.
[21:25:10] LatinLisa04 <<< stopped recording.
[21:25:10] IndiaSweet <<< stopped recording.

This keeps repeating every 30 seconds.

I tried using the default config file but the same thing happened.
Reply With Quote
  #968  
Old 07-04-2017, 07:36 PM
ZeChico ZeChico is offline
Member
 
Join Date: Apr 2014
Posts: 31
ZeChico 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
If this problem occurs again we can do decode in index.html as it was before

if (m.tags && m.tags.length > 3) {m.tags = decodeURIComponent(m.tags).substr(0,46);}
I'm actually doing it on my private version, because I'm now trying to keep main.js original and do most of the stuff in index.html.

index.html:
Code:
if (m.topic) {
  try {
     m.topic = decodeURIComponent(m.topic);
  }
   catch (e) {                                      
  }
}
				
if (m.topic && m.topic.length > 80) {
   m.topic = m.topic.substr(0, 79) + '…';
}
The url for the snap images is also being processed in index.html

Main.js:
Code:
 onlineModels.push({
  nm: m[0],
  uid: m[2],
  vs: m[3],
  camserv: m[6],
  new_model: m[15],
  camscore: m[16],
  continent: m[17],
  missmfc: m[19],
  rc: m[20],
  topic: m[21]
Reply With Quote
  #969  
Old 07-04-2017, 07:49 PM
pornici pornici is offline
Junior Member
 
Join Date: May 2017
Posts: 1
pornici is on a distinguished road
Default

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


Hey I have a problem with the horacio mfc-node/capturebate-node. I followed the instructions on the github page, but when I run the main.js and choose mfc it just opens another cmd window. Opening the link http://localhost:9080 does nothing
Quote:
This site can’t be reached

localhost refused to connect
Reply With Quote
  #970  
Old 07-04-2017, 10:31 PM
tienhinhconcho2018 tienhinhconcho2018 is offline
Member
 
Join Date: Jun 2017
Posts: 36
tienhinhconcho2018 is on a distinguished road
Default

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


Ch?°a nhá?*n y??u, Song Joong Ki

Song Joong Ki Ä‘?? c?? kh?? nhiá»?u vai diá»…n trong phim Ä‘iện á??nh v?* truyá»?n h?¬nh, vá»›i v?*i h?¬nh á??nh gá»?i ??, bá??n c?? biá??t Ä‘?? l?* phim n?*o kh?´ng?. á??nh: SPNá??u Há?*u duệ ??c v?*ng g??y sốt nhá»? 2 diá»…n vi??n ch?*nh Song Hye Kyo – Song Joong Ki c??ng số tiá»?n Ä‘á?§u t?° khủng th?¬ Signal Ä‘?°á»?c ngá»?i khen nhá»? ná»™i dung gay cá??n, cốt truyện cá??m Ä‘á»™ng. phá??i Song Joong Ki l?* trai Ä‘á??p vá??n ng?°á»?i m?? th?¬ Seul Ki lá??i kh?´ng má??y ?°a nh?¬n. Joo Byung Hee trong "Shut up! Flower Boy Band"Nhá??c tiá»?n tứ linh Ä‘á??n Byung Hee th?¬ kh?´ng thá»? kh?´ng nhá??c tá»›i ??o kho??c da, Ä‘?°á»?ng eyeliner cá»±c Ä‘á?*m v?* vai tr?? th?*nh vi??n ban nhá??c.

Hai ng?´i sao phim "Há?*u duệ ??c v?*ng", Song Joong Ki & Song Hye KyoTr??n d??ng xe tá??i c??n viá??t d??ng chá»?: â€?Ä?á??o diá»…n Baek Sang Hoon, nh?* quay phim Kim Si Hyung v?* Park Bo Gum, h??y Ä‘á??u tranh! Từ Song Hye Kyo v?* Song Joong Kiâ€?. Cá?*u nh??c Ä‘?? cao gá?§n bá?±ng má??. Ph??ng vi??n Ä‘á?·t c??u há»?i kh?? o??i Ä?m: â€?Ná??u cá?? hai bá»?n há»? c??ng r??i xuống n?°á»›c th?¬ c?´ sá?? cứu ai tr?°á»›c?â€?. Tuy nhi??n, ?´ng Seong c?©ng tiá??t lá?*u phá?§n má»›i n?*y ch?°a chá??c Ä‘?? c?? ná»™i dung tiá??p nối phá?§n má»™t. G-DragonG-Dragon Ä‘?°á»?c x??c nhá?*n vá»? th?*nh c?´ng của anh nh?° l?* má»™t thá?§n t?°á»?ng h?*ng Ä‘á?§u, Ä‘?? c?? t??c Ä‘á»™ng Ä‘??ng ká»? Ä‘á??n l?*n s??ng Hallyu vá»? ??m nhá??c, thá»?i trang v?* nhiá»?u lÄ©nh vá»±c kh??c. Ä?á??o diá»…n Seok Ho Yoon, Song Seung Hun v?* Won Bin – cá??m ??n quá»? quá??ng má»™t lá?§n ná»?a!!".

http://tienquocte.net/bo-tien-tu-lin...-lan-quy-phung
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 11:31 PM.


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