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
  #811  
Old 05-03-2017, 01:21 PM
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)


Does anybody know some way to get via browser (preferably) or script, a complete listing of MFC models that are currently connected? Their respective status - online, away, group, private, etc - and also the general data - name, id, age, ethnic, country, continent, topic, camscore, rank, tags, etc - with the possibility of saving it in a file like .csv or .xlsx (or even .txt)?

Last edited by mfmax : 05-03-2017 at 03:47 PM.
Reply With Quote
  #812  
Old 05-04-2017, 09:40 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)


Can the file name be in the settings?
It is currently (model_name)_YYYY-MM-DD_HH-mm-ss, and I prefer (model_name)_MFC_DDMMYYYY-HHmmss for example.
Reply With Quote
  #813  
Old 05-04-2017, 03:52 PM
John1915 John1915 is offline
Junior Member
 
Join Date: May 2017
Posts: 8
John1915 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
Does anybody know some way to get via browser (preferably) or script, a complete listing of MFC models that are currently connected? Their respective status - online, away, group, private, etc - and also the general data - name, id, age, ethnic, country, continent, topic, camscore, rank, tags, etc - with the possibility of saving it in a file like .csv or .xlsx (or even .txt)?
You could pull the information from the JSONArray like all the "mfc recorder apps" do and output it into a filetype of your choosing. I don't really know how one would do this using a browser but it's definitely possible using an app or script. Somebody with a better understanding of websockets could tell you if/how this would be doable within a browser.

The JSONArray you would get for each model is formatted like this:
["nm","sid","uid","vs","pid","lv",{"u":["camserv","chat_color","chat_font","chat_opt","cre ation","avatar","profile","photos"]},{"m":["camscore","continent","flags","new_model","rank", "rc","topic","hidecs"]}]

vs would be a numeric value representing the model's status 0=online; 2=away; 12=private; 13=group, rc is the number of current viewers and everything else is pretty much what the name suggests.
Other data would have to be pulled from the model's profile; like: age, city, etc.

Last edited by John1915 : 05-05-2017 at 07:27 AM. Reason: additional info
Reply With Quote
  #814  
Old 05-05-2017, 12:45 PM
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)


Quote:
Originally Posted by mfmax View Post
Does anybody know some way to get via browser (preferably) or script, a complete listing of MFC models that are currently connected? Their respective status - online, away, group, private, etc - and also the general data - name, id, age, ethnic, country, continent, topic, camscore, rank, tags, etc - with the possibility of saving it in a file like .csv or .xlsx (or even .txt)?
Quote:
Originally Posted by John1915 View Post
You could pull the information from the JSONArray like all the "mfc recorder apps" do and output it into a filetype of your choosing. I don't really know how one would do this using a browser but it's definitely possible using an app or script. Somebody with a better understanding of websockets could tell you if/how this would be doable within a browser.

The JSONArray you would get for each model is formatted like this:
["nm","sid","uid","vs","pid","lv",{"u":["camserv","chat_color","chat_font","chat_opt","cre ation","avatar","profile","photos"]},{"m":["camscore","continent","flags","new_model","rank", "rc","topic","hidecs"]}]

vs would be a numeric value representing the model's status 0=online; 2=away; 12=private; 13=group, rc is the number of current viewers and everything else is pretty much what the name suggests.
Other data would have to be pulled from the model's profile; like: age, city, etc.

Thanks for the information. I was able to get this data through the webpage's source code when I accessed the mobile version using Chrome or Opera. After the recent MFC updates, it's no longer possible. I think the only method to get them is by using script through JSONArray, as you mentioned. Does anyone know how to perform this procedure?
Reply With Quote
  #815  
Old 05-05-2017, 01:45 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 mfmax View Post
Thanks for the information. I was able to get this data through the webpage's source code when I accessed the mobile version using Chrome or Opera. After the recent MFC updates, it's no longer possible. I think the only method to get them is by using script through JSONArray, as you mentioned. Does anyone know how to perform this procedure?
Look my post in this thread http://stream-recorder.com/forum/www...-t3851p69.html ... this python script working ok after recent MFC changes
Reply With Quote
  #816  
Old 05-05-2017, 02:18 PM
John1915 John1915 is offline
Junior Member
 
Join Date: May 2017
Posts: 8
John1915 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
Thanks for the information. I was able to get this data through the webpage's source code when I accessed the mobile version using Chrome or Opera. After the recent MFC updates, it's no longer possible. I think the only method to get them is by using script through JSONArray, as you mentioned. Does anyone know how to perform this procedure?
I made a little Java-App for you! It will pull all the info you can get from the JSONArray and parse it into a csv file that's being output into the Folder you run the App from! Additionally it will add a column for the download url of the video feed, as i thought this could be useful!

MFCOnlineModels-0.1.exe
http://www87.zippyshare.com/v/g8htCOxd/file.html

and here's the source code so you can see how it works/tweak it to your needs
http://www87.zippyshare.com/v/yjUfDz5p/file.html
Reply With Quote
  #817  
Old 05-05-2017, 03:27 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 John1915 View Post
I made a little Java-App for you! It will pull all the info you can get from the JSONArray and parse it into a csv file that's being output into the Folder you run the App from! Additionally it will add a column for the download url of the video feed, as i thought this could be useful!

MFCOnlineModels-0.1.exe
http://www87.zippyshare.com/v/g8htCOxd/file.html

and here's the source code so you can see how it works/tweak it to your needs
http://www87.zippyshare.com/v/yjUfDz5p/file.html
Good job John1915, Congratulations.
Some of the information below is missing:

"u":{"age":31
"avatar":1
"blurb":"I am a hot and sensual model always in the mood to have fun."
"camserv":846
"chat_bg":154
"chat_color":"CC3299"
"chat_opt":1
"city":"Colombia"
"country":"Colombia"
"creation":1467078102
"ethnic":"Other"
"occupation":"home"
"photos":9
"profile":1}
"m":{"camscore":91.300
"continent":"SA"
"flags":15392
"kbit":0
"lastnews":0
"mg":0
"missmfc":0
"new_model":0
"rank":0
"rc":6
"topic":""}}

But I'm sure this can be fixed.
How to make exe from the java files?
Reply With Quote
  #818  
Old 05-05-2017, 05:00 PM
John1915 John1915 is offline
Junior Member
 
Join Date: May 2017
Posts: 8
John1915 is on a distinguished road
Default

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


Can you be a little bit more specific about what exactly is missing? I parsed everything there is in the JSONArray to the file. As i said before, additional information could be downloaded from http://profiles.myfreecams.com/MODELNAME
If you want, I can try to implement this as well.
I used launch4j to create the exe from jar. http://launch4j.sourceforge.net/

UPDATE: I implemented the whole "get data from model's profile" thing but it takes forever to finish. I'll have another look at this tomorrow.
If you want to use this in a recorder app, it would probably be wise to download this in the background, cache it and when refreshing the model list only get the data from models that aren't cached yet. And maybe refresh the whole cache every 24h. FYI: It took me just over 7 minutes to get everything with 1497 models online.
Also it should be noted that not every model shares the same information on their profile.
Here is the csv with the newly added profile data: http://www1.zippyshare.com/v/cAqI7Jjd/file.html
Note that status, last broadcast/update and average rating are not being correctly parsed yet, that the columns don't correctly align and that there are some unnecessary commas in the csv.
I just wanted to share this so you can have a look at what data you can expect to get. Would this be what you mentioned was missing before?
Like i said, I will fix this tomorrow and upload a Version 0.2.

Last edited by John1915 : 05-05-2017 at 06:26 PM. Reason: update
Reply With Quote
  #819  
Old 05-06-2017, 12:19 AM
cam2fun cam2fun is offline
Adult webcams Online
 
Join Date: May 2017
Location: Landon
Posts: 57
cam2fun is on a distinguished road
Default

Solo Girls


girls is ready to satisfy all your needs Join Free Cams ,Free Adult Video Chat ,Free Sex Webcams, free web cam model, free sex webcams.

http://[URL="http://www.cam2fun.com/"]www.cam2fun.com/
[/url]
Reply With Quote
  #820  
Old 05-06-2017, 12:43 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 John1915 View Post
Can you be a little bit more specific about what exactly is missing? I parsed everything there is in the JSONArray to the file. As i said before, additional information could be downloaded from http://profiles.myfreecams.com/MODELNAME
If you want, I can try to implement this as well.
I used launch4j to create the exe from jar. http://launch4j.sourceforge.net/

UPDATE: I implemented the whole "get data from model's profile" thing but it takes forever to finish. I'll have another look at this tomorrow.
If you want to use this in a recorder app, it would probably be wise to download this in the background, cache it and when refreshing the model list only get the data from models that aren't cached yet. And maybe refresh the whole cache every 24h. FYI: It took me just over 7 minutes to get everything with 1497 models online.
Also it should be noted that not every model shares the same information on their profile.
Here is the csv with the newly added profile data: http://www1.zippyshare.com/v/cAqI7Jjd/file.html
Note that status, last broadcast/update and average rating are not being correctly parsed yet, that the columns don't correctly align and that there are some unnecessary commas in the csv.
I just wanted to share this so you can have a look at what data you can expect to get. Would this be what you mentioned was missing before?
Like i said, I will fix this tomorrow and upload a Version 0.2.
For my taste I would just add existing data: Ethnicity, Age, City and Country. I know this information is on: http://profiles.myfreecams.com/MODELNAME But I also know that these data were available along with other data before the last MFC updates with this url:

url = 'http://www.myfreecams.com/mfc2/php/mobj.php?f=' + fileno + '&s=xchat20'

... and now must be used this url:

url = 'http://www.myfreecams.com/php/FcwExtResp.php?' + fileno

but without Ethnicity, Age, City and Country data.

This is currently a problem for some MFC Recorders like MFCDump or mfc-node-recorder.

In my opinion, it would be necessary to analyze the python script I have upgraded (also in this thread) and which still displays all the data as before last MFC updates like on this image:



Otherwise I would reduce the number of data to the most minor:

nm, camserv, sid, uid, vs, flags, Ethnicity, Age, City and Country, continent, camscore and hls_url

And I would certainly add that the filename contains the date like:

OnlineModels_MFC_DDMMYYYY-HHmmss.csv

Once again, I congratulate you because I see that you are professional and do not keep your knowledge for yourself just like many others
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 05:48 PM.


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