Skip to content

mfc-node lets you follow and record your favorite models' shows on myfreecams.com

License

Notifications You must be signed in to change notification settings

asas232/mfc-node

 
 

Repository files navigation

mfc-node

mfc-node lets you follow and record your favorite models' shows on myfreecams.com

This is an attempt to create a script similar to capturbate-node based on different pieces of code found on the Internet.

alt screenshot

Credits:

Want to support?

Buy Me a Coffee at ko-fi.com

Requirements

Node.js used to run mfc-node, hence the name.

ffmpeg

Setup

  1. Install Node.js (minimum node version requirement: v6).
  2. Download and unpack the code.
  3. Open Terminal (macOS) or Command Prompt (Windows) and go into the directory where you unpacked the files.
  4. Install requirements by running npm install in the same directory as main.js is (Windows users have to install Git).
  5. Edit config.yml file and set desirable values for captureDirectory, completeDirectory, modelScanInterval.
  6. Install ffmpeg. For Windows users, copy ffmpeg.exe into same directory as main.js is.

Running

  1. Open Terminal (macOS) or Command Prompt (Windows) and go into the directory where you unpacked the files.

  2. Run node main.js.

  3. Open http://localhost:9080 in you browser. The list of online models will be displayed with a set of allowed commands for each model:

    • Include - if you want to record the model
    • Exclude - if you don't want to record the model anymore
    • Delete - if you are not interested in the model and want to hide her permanently

Note: This is not a real-time application. Whenever your include, exclude or delete the model your changes will be applied only with the next iteration of mainLoop function of the script. mainLoop runs every 30 seconds (default value for modelScanInterval).

Note: There is no auto reload feature, you have to reload the list manually (big red button), however, keep in mind the script updates the list internally every 30 seconds (modelScanInterval), therefore sometimes you'll have to wait 30 seconds to see any updates.

Note: Be mindful when capturing many streams at once to have plenty of space on disk and the bandwidth available or you’ll end up dropping a lot of frames and the files will be useless.

Converting

There is a simple script to convert .ts files. Just edit convert.yml file and set proper values for srcDirectory (should be the same with completeDirectory) and dstDirectory, then run node convert.js in a separate console window.

For advanced users

There are several special URLs that allow implementing some operations with a model even if she is offline.

Include

http://localhost:9080/models/include?nm=modelname
http://localhost:9080/models/include?uid=12345678

Exclude

http://localhost:9080/models/exclude?nm=modelname
http://localhost:9080/models/exclude?uid=12345678

Delete

http://localhost:9080/models/delete?nm=modelname
http://localhost:9080/models/delete?uid=12345678

About

mfc-node lets you follow and record your favorite models' shows on myfreecams.com

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 53.6%
  • JavaScript 43.7%
  • Shell 2.7%