User cannot change video folder using java api
nick318 opened this issue · 2 comments
nick318 commented
Hi, in that commit you deleted some setters from configuration, why did you do that?
So, my code does not work anymore:
VideoRecorder.conf() .withVideoFolder("target/videos") .videoEnabled(true) .withVideoSaveMode(VideoSaveMode.FAILED_ONLY);
SergeyPirogov commented
It was replaced by config file, you are able to do the same but with property file. See https://github.com/SergeyPirogov/video-recorder-java#configuration
nick318 commented
Thank you