Library to upload a video on bitchute with a Selenium bot
Step 1. Add the JitPack repository
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>Step 2. Add the dependency
<dependency>
<groupId>com.github.gantoin</groupId>
<artifactId>bitchute-uploader</artifactId>
<version>1.1</version>
</dependency>BitchuteVideo video = new BitchuteVideo();
video.setTitle("My new uncensored Bitchute video");
video.setDescription("Hi guys! This is my new video. Thanks for watching!");
video.setVideoPath("/tmp/lorem_video.mp4");
video.setCoverPath("/tmp/lorem_video.jpg");BitchuteUpload bitchuteUpload = new BitchuteUpload("/path/to/your/chromedriver", "your_user@mail.com", "your_user_pwd", false);chrome driver pathyou can download a chromedriver here https://chromedriver.chromium.org/downloadsuser mailuser passwordheadless modeboolean for activation of the headless mode. If you don't know what is theheadless mode, check this page: https://developers.google.com/web/updates/2017/04/headless-chrome
Now, you can launch the Selenium bot with your BitchuteUpload object:
bitchuteUpload.launchSeleniumBot(video);Enjoy!