# Web Cam Suggestion?

**URL:** https://community.tempest.earth/t/web-cam-suggestion/3573
**Category:** Tempest Owners
**Created:** [May 21, 2019, 2:49am UTC](https://community.tempest.earth/t/web-cam-suggestion/3573 "2019-05-21T02:49:37Z")
**Posts on this page:** 3
**Page:** 3

<div class="post-metadata">

### Author: ![iladyman](https://sea2.discourse-cdn.com/flex020/user_avatar/community.tempest.earth/iladyman/32/2305_2.png) [@iladyman](https://community.tempest.earth/u/iladyman)
#### Post date: [January 7, 2024, 10:59pm UTC](https://community.tempest.earth/t/web-cam-suggestion/3573/41 "2024-01-07T22:59:10Z")

</div>

Hi Amanda and welcome,  
The Tempest has no way of integrating a camera.  
Our requests to incorporate a camera view into the Tempest display of our weather has not produced anything.  
Those of us who are displaying a picture of our clouds and weather are using different software to the default Tempest display.  
My guess is that you may want to know if you can display your pictures onto a publicly accessible web page along with your weather information from the Tempest?  
My advice is to read the manual for your cameras to see if they provide anything to do that.  
An option may be to upload images to [windy.com](http://windy.com) by giving them the link to your camera, but I am only guessing what you may be wanting to achieve.  
Another option is to use a raspberrypi to run weewx but that involves technical skill.  
What is your desire or purpose of what you want to do?  
Cheers Ian 🙂

---

<div class="post-metadata">

### Author: ![steve.palmieri](https://sea2.discourse-cdn.com/flex020/user_avatar/community.tempest.earth/steve.palmieri/32/15414_2.png) [@steve.palmieri](https://community.tempest.earth/u/steve.palmieri)
#### Post date: [January 14, 2024, 1:56pm UTC](https://community.tempest.earth/t/web-cam-suggestion/3573/42 "2024-01-14T13:56:26Z")

</div>

If you have any home security cameras, you can manually cross-referene video and weather based on timestamps.

**This worked GREAT for me when filing an insurance claim for wind damage.**  
I fast tracked the insurance company’s research by providing the document below.

I found the wind event from Tempest data, then went to that timestamp on my RING video archive.

You can automate all this, that would need to be a custom thing.

 ![image](https://us1.discourse-cdn.com/flex020/uploads/sws/original/3X/2/b/2b9e5f09320fe9e35644837300ae374ce81b655e.jpeg)

---

<div class="post-metadata">

### Author: ![vinceskahan](https://sea2.discourse-cdn.com/flex020/user_avatar/community.tempest.earth/vinceskahan/32/2785_2.png) [@vinceskahan](https://community.tempest.earth/u/vinceskahan)
#### Post date: [January 14, 2024, 7:49pm UTC](https://community.tempest.earth/t/web-cam-suggestion/3573/43 "2024-01-14T19:49:27Z")

</div>

There are lots of ways to get weather cams and timelapse etc. given a little work.

If you have a pi and any old usb camera running “fswebcam” periodically via cron can take great photos. Then stitch them together with ffmpeg on a pi into a movie. Or run ‘motion’ on the pi in timelapse mode. So many ways to get there.

But that doesn’t integrate the images or movies into the Tempest weather app etc. which is what lots of folks have asked for over the years.

Generating the snapshots…

```auto
#!/bin/bash
NOW=`date +%s`
fswebcam /home/pi/timelapse/out/${NOW}.jpg

```

Processing them into a movie…

```auto
# process jpg into a mp4 the mac can read natively
# ref: https://medium.com/@sekhar.rahul/creating-a-time-lapse-video-on-the-command-line-with-ffmpeg-1a7566caf877

# note this uses 432x240 which is the default resolution above for this camera
# you can generate bigger ones by adding -r 1280x720 for example above
# and tuning the -s option below to whatever is actually generated
# (the 'file' command seems to report tht out)

ffmpeg -y \
   -framerate 30 \
   -pattern_type glob -i "/home/pi/timelapse/out/*.jpg" \
   -s:v 432x240 \
   -c:v libx264 \
   -crf 17 \
   -pix_fmt yuv420p \
        /home/pi/timelapse/out/my-timelapse.mp4

```

Just as a data point, processing 12 hours of snapshots on a pi5 into a movie takes about 15 secs this way. There are of course a zillion commercial products for mac/windows that do the same kinds of things and many cameras let you query their interfaces for data.

[Previous page](https://community.tempest.earth/t/web-cam-suggestion/3573.md?page=2)
