https://github.com/issung/single-image-scraper
Simple .NET console app to routinely download a singular URL.
https://github.com/issung/single-image-scraper
Last synced: 9 months ago
JSON representation
Simple .NET console app to routinely download a singular URL.
- Host: GitHub
- URL: https://github.com/issung/single-image-scraper
- Owner: Issung
- Created: 2023-02-04T06:37:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-04T11:02:07.000Z (over 3 years ago)
- Last Synced: 2025-01-16T21:17:05.257Z (over 1 year ago)
- Language: C#
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# single-image-scraper
Simple .NET console app to routinely download a singular URL to desired path with desired interval.
Designed to:
* Not break during network issues (catch exception and log any error for each scrape loop).
* Work nicely across opens & closes (append file number by looking at current number of files in directory).
* End processing neatly (use CTRL + C to invoke tidy cancellation).
```
-o, --outputpath Directory to output files to. Default is the application running directory.
-i, --inputurl Required. URL to routinely scrape from.
-t, --timeinterval Interval between scrapes, format HH:MM:SS. Default 1 minute.
--help Display this help screen.
--version Display version information.
```
Once I had all the images I wanted I used this command within Ubuntu WSL
```
ffmpeg -framerate 55 -i 'Image (%d).jpg' -vcodec h264 -crf 22 -s 3648x2052 "Timelapse.mp4"
```