diff --git a/README.md b/README.md index b16f24f..9e6a25b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# StreaMonitor -A Python3 application for monitoring and saving (mostly adult) live streams from various websites. +# Capparr +A Python3 application for monitoring and saving live streams from various camsites. Inspired by [Recordurbate](https://github.com/oliverjrose99/Recordurbate) @@ -22,12 +22,6 @@ Inspired by [Recordurbate](https://github.com/oliverjrose99/Recordurbate) | StripChat VR | `SCVR` | | for VR videos | No | | XLoveCam | `XLC` | | | No | -Currently not supported: -* Amateur.TV (They use Widevine now) -* Cherry.tv (They switched to Agora) -* ImLive (Too strict captcha protection for scraping) -* LiveJasmin (No nudity in free streams) -* ManyVids Live (They switched to Agora) There are hundreds of clones of the sites above, you can read about them on [this site](https://adultwebcam.site/clone-sites-by-platform/). diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..10e6731 --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +markdown: kramdown diff --git a/docker-compose.yml b/docker-compose.yml index 29d2b3f..cb40bc1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,14 +2,16 @@ services: streamonitor: # If you want to build locally, use this instead the image line below: # build: ./ + container_name: streamonitor # image: streamonitor:latest - image: ghcr.io/lossless1024/streamonitor:latest - restart: unless-stopped environment: # set timzeone #TZ: Etc/UTC + # maybe only useful for synology users + #PUID: 100 + #PGID: 1000 # unset password (admin by default) #STRMNTR_PASSWORD: '' # unbind web interface (bound to 127.0.0.1 by default) @@ -28,8 +30,12 @@ services: volumes: - ./downloads:/app/downloads - ./config.json:/app/config.json + - ./Controller.py:/app/Controller.py + - ./Downloader.py:/app/Downloader.py + - ./parameters.py:/app/parameters.py - ./stripchat_mouflon_keys.json:/app/stripchat_mouflon_keys.json - - /etc/timezone:/etc/timezone:ro + # not sable on sysnology docker + #- /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro ports: - '5000:5000'