Initial version, not so dynamic
This commit is contained in:
17
PictureFetcher.ps1
Normal file
17
PictureFetcher.ps1
Normal file
@@ -0,0 +1,17 @@
|
||||
# PictureFetcher.ps1
|
||||
# Connects to the cameras and downloads the current picture
|
||||
|
||||
$storageDir = "\\Megabyte.home.zyrex.org\Vault\Vault\Upload\Webcam\Timelapse\"
|
||||
|
||||
$urlTunet = "http://172.17.50.221/cgi-bin/api.cgi?cmd=Snap&channel=0&rs=wuuPhkmUCeI9WG7C&user=snapshot&password=snapshot"
|
||||
$urlGaardsplass = "http://172.17.50.220/ISAPI/Streaming/channels/101/picture"
|
||||
|
||||
$fileTunet = "$storageDir\Tunet_$(Get-Date -Format "yyyyMMdd_HH-mm-ss").jpg"
|
||||
$fileGaardsplass = "$storageDir\Gaardsplass_$(Get-Date -Format "yyyyMMdd_HH-mm-ss").jpg"
|
||||
|
||||
|
||||
$webclient = New-Object System.Net.WebClient
|
||||
$webclient.DownloadFile($urlTunet,$fileTunet)
|
||||
|
||||
$webclient.Credentials = new-object System.Net.NetworkCredential('snapshot', 'Snapshot')
|
||||
$webclient.DownloadFile($urlGaardsplass,$fileGaardsplass)
|
||||
Reference in New Issue
Block a user