For direct video downloading, we use black_ring_downloader
.
-
Substitute
<URL_OF_VIDEO>
with the actual video URL and<DOWNLOAD_LOCATION>
with your chosen location.Example:
docker run -it --rm -e url=https://www.p***b.com/view_video.php?viewkey=1321312323 -e quality=half -v /tmp/test:/opt/download bytenerdalpha/black_ring_downloader:v0.0.1
The black_ring_monitor
allows continuous monitoring and downloading of URLs found in a text file.
-
Provide your
<FILE_LOCATION_WITH_URLS>
and<DOWNLOAD_LOCATION>
in the below command.Example:
docker run -it --rm -e quality=half -v /home/random/myinput.txt:/tmp/download.txt -v /tmp/test:/opt/download bytenerdalpha/black_ring_monitor:v0.0.1
With the docker-compose file and a VPN, you can ensure your downloads are done via the VPN network. The example provided here is for Surfshark VPN.
- Copy the
env.template
file to a.env
file. - Update the
.env
based on the guide here. - Start the VPN with:
docker-compose up -d surf
- Start the monitoring service with:
docker-compose up black_ring
This project is based on EchterAlsFake/PHUB. Kudos to the maintainer.