Questions tagged [timelapse]

77 questions
0
votes
2 answers

Timelapse (1/6 fps) from slo-mo (240 fps) with ffmpeg

I recorded slo-mo video on an iPhone SE (2) by mistake instead of timelapse. I know there's a lot of answers to this question here, but I'm trying again and again and always something's wrong (like a video that has a correct total no. of frames, but…
baskak
  • 1
0
votes
1 answer

How to create a time-lapse animation of my data in Google Earth Studio?

I have a kmz file of color-coded point data (of percentages) I'd like to show over time (by year) in Google Earth Studio. Anyone know how to do this? Data looks like this (percent_empty goes from 0% ->100%):
Nate
  • 411
  • 2
  • 10
0
votes
0 answers

Creating timelapse video with ffmpeg using list of URL images from .txt file

I have pretty simple question. Is it possible to render timelapse video using ffmpeg, from the list of URL images listed in .txt file? (https://via.placeholder.com/350x150 -> image example) This is how it works with the list of images from local…
0
votes
0 answers

File size limit in making timelapse video on the fly with OpenCV, Picamera and an IR camera

I am creating a raspberry pi timelapse camera encoding video with CV2 videowriter Each image captured with picamera is added to the videowriter and once the intended number of images are taken the videowriter closes. However - while this works for a…
0
votes
1 answer

Use list of dates to timestamp / label mp4 video in python

I have an MP4 video file (Amundsen.mp4) that I created in Google Earth Engine - a timelapse, and a list of dates of each image (dates.txt) - not all consecutive days. I want to use this list of dates to timestamp each frame in the video in python.…
Beardsley
  • 151
  • 5
0
votes
1 answer

Renaming image files in windows for timelapses

I just wanted to share this tip. I'm just answering my own question. If you select all and rename the images as "img(0001).jpg" you will end up having img(0001).jpg, img(2).jpg, img(3).jpg, ... img(11).jpg.... img(21).jpg this messes the order up as…
0
votes
0 answers

How can I read m3u8 format video stream and save it with opencv in python?

I'm trying to save video stream, and to timelapse it. I know how to read any video from computer (for example mp4 format) and make a timelapse (I tried, I succeeded). Now I'm trying to do the same with a video stream. I have link for m3u8 video…
angie
  • 3
  • 1
  • 3
0
votes
3 answers

How to sort out images from a specific time(period) of day?

TIMELAPSE PROJECT Over a year a new photo has been uploaded every 15 minutes from my webcam (thousands of photos) I am looking for a simple way to 1. Pick one picture from each day, taken as close as possible to 12:00 midday 2. Then move all…
Eirik
  • 3
  • 4
0
votes
0 answers

How do I join multiple glob inputs into a time lapse with ffmpeg?

I'm trying to combine image files from multiple directories into one combined time lapse using ffmpeg, but when running this code, only the first directory is used in the time lapse. How do I combine multiple glob inputs using ffmpeg? ffmpeg…
jtanman
  • 654
  • 1
  • 4
  • 18
0
votes
1 answer

FFmpeg Time Lapse from Sources with Long Frozen Tail End

My source for inputs into FFmpeg is either one AVI file or a concat of many of them. Either way my resulting timelapse file has a long tail of frames that are a repeat of a single frame. It's like a very long freeze frame is resulting on the end…
Rich_F
  • 1,830
  • 3
  • 24
  • 45
0
votes
1 answer

How do I ffmpeg to iterate through 10,000+ datetime stamped files

I have a large number of jpgs captured from a cctv camera which I mistakenly used a dashed date time stamp in my curl command. The file names are Underwater-Cam-2017-10-20_17-58-22.jpg If I do a wildcard I get bash: /Applications/ffmpeg:…
Rich
  • 55
  • 4
0
votes
1 answer

ffmpeg timelapse very slow

I'm using ffmpeg -i IMG_5299.MOV -c:v libx264 -crf 20 -r 60 -filter:v "setpts=0.0015*PTS" -an IMG_5299-speedup.mkv to create a 600x timelapse out of a H.265 4K 60fps video. I just want ffmpeg to pick every 600th frame and put it together to a new…
LukeLR
  • 1,129
  • 1
  • 14
  • 27
0
votes
1 answer

Advance Excel chart, scatter chart with multiple axis value with time lapse

I have 7 different measurement points on which is temperature measured for every hour (timestamp). Like these pic down. I want graph similar like these. Data table: timestamp m1_temp m1_dist m2_dist m2_temp Mar 9, 2017 12:00:00 AM…
ejovrh2
  • 59
  • 9
0
votes
1 answer

Make Circle bigger jython?

I'm trying to figure out how to make a time lapse video of a circle getting bigger and changing colour on jython, I was doing it and basically I kept doing getOval and putting new parameters each time but that is going to take me forever. I think I…
Hayley G
  • 1
  • 5
0
votes
1 answer

timelapse images into a movie, 500 at a time

I am trying to make a script to turn a bunch of timelapse images into a movie, using ffmpeg. The latest problem is how to loop thru the images in, say, batches of 500. There could be 100 images from the day, or there could be 5000 images. The reason…
molly78
  • 23
  • 3