Guest User

Untitled

a guest
Apr 9th, 2018
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. [paths]
  2. wishlist = D:\ChaturbateRecorder-master\wanted.txt
  3. save_directory = D:\ChaturbateRecorder-master\savedvids
  4.  
  5. # set the directory structure - default is "{path}/{model}/{st}_{model}.mp4"
  6. # {path} = save_directory set above. (your directory structure should start with this)
  7. # {model} = the models name
  8. # {gender} = the gender the model is set to at the time of the recording
  9. # "{year}, {month}, {day}, {hour}, {minutes}, {seconds}" should all be easy enough to figure out what these are
  10. # you can also change ".mp4" to another extension. ".ts" is what the stream is actual broadcast as.
  11. # example using a madeup "hannah" who is female: {path}/{gender}/{model}/{year}/{year}.{month}.{day}_{hour}.{minutes}.{seconds}_{model}.mp4 = "/Users/Joe/chaturbate/Female/hannah/2017/{year}.07.26_19.34.47_hannah.mp4"
  12. # This will also be the "Download directory" if you set a "completed_directory"
  13.  
  14. directory_structure = {path}/{model}/{year}.{month}.{day}_{hour}.{minutes}.{seconds}_{model}.mp4
  15.  
  16. # (OPTIONAL) - leave blank if you dont want files moved after completed
  17. # The files will be moved here once the stream has ended. The same naming structure will be used as above
  18. # if this is left empty, the videos wll remain in the same directory they were originally saved to
  19. # This path should be to a directory, not a filename! so do not include the filename portion, only the directory.
  20.  
  21. completed_directory =
  22.  
  23.  
  24. [settings]
  25. checkInterval = 5
  26.  
  27. # Specify the genders you would like to monitor to record. Separate multiple genders with a comma
  28. # acceptable genders are female, male, trans, and couple
  29.  
  30. genders = female, couple
  31.  
  32. # (OPTIONAL) - leave blank if you dont want to run a post processing script on the file
  33. # You can set a command to be ran on the file once it is completed. This can be any sort of a script you would like.
  34. # You can create a script to convert the video via ffmpeg to make it compatible for certain devices, create a contact sheet of the video
  35. # upload the video to a cloud storage drive via rclone, or whatever else you see fit.
  36. # set the string to be the same as you you would type into terminal to call the script manually.
  37. # The peramaters which will be passed to the script are as follows:
  38. # 1 = full file path (ie: /Users/Joe/chaturbate/Female/hannah/2017/2017.07.26_19.34.47_hannah.mp4)
  39. # 2 = filename (ie : 2017.07.26_19.34.47_hannah.mp4)
  40. # 3 = directory (ie : /Users/Joe/chaturbate/Female/hannah/2017/)
  41. # 4 = models name (ie: hannah)
  42. # 5 = gender (ie: Female)
  43. # to call a bash script called "MoveToGoogleDrive.sh" and located in the user Joes home directory, you would use:
  44. # postProcessingCommand = "bash /Users/Joe/home/MoveToGoogleDrive.sh"
  45. # this script will be ran on the files "download location" prior to it being moved to its "completed location".
  46. # The moving of the file will not take place if a post processing script is ran, so if you want to move it once it is completed, do so through commands in the script.
  47.  
  48. postProcessingCommand =
  49.  
  50. # Because depending on what the post processing script does, it may be demanding on the system.
  51. # Set the maximum number of concurrent post processing scripts you would like to be ran at one time.
  52.  
  53. postProcessingThreads =
  54.  
  55. [login]
  56. username =
  57. password =
Add Comment
Please, Sign In to add comment