Can I capture star trails with a smartphone by recording video?

Asked 9/27/2018

86 views

2 answers

0

I have a Motorola G5s+ and want to know whether star trail photography is possible on a smartphone by recording video in manual mode. If it is, what setup should I use, and do settings need to change based on light pollution?

Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0

Photography Stack Exchange contributor

8y ago

2 Answers

1

To create an image of star trails via video, use a tripod while capturing the video. Then process the video with ImageMagick:

convert video.avi -evaluate-sequence max output.jpg

Notes:

  • Aligning images shouldn't be necessary if a tripod is used. Stars may confuse alignment algorithm.

  • No need to extract frames of video prior to processing. ImageMagick can process the video file directly.

  • For evaluate-sequence, use the max or add methods because mean and median will cause the stars to disappear.

Originally by user75526. Source · Licensed CC BY-SA 4.0

user75526

8y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

Yes—if your phone can record a long enough video and remain completely still, you can create a star-trail image from the video frames. Put the phone on a tripod and record the night sky, then combine the frames afterward using a maximum/lighten-style stack. One example given was using ImageMagick: convert video.avi -evaluate-sequence max output.jpg.

A tripod is essential so the frames stay aligned. If the camera doesn’t move, you generally don’t need alignment, and stars can even confuse some alignment tools. When stacking, use a method like max (or add), since mean or median blending will tend to make the stars disappear instead of forming trails.

Light pollution mainly affects how bright the sky background becomes, so in brighter skies you may need to avoid overexposing the background while still recording long enough to build visible trails. The key idea is: stable camera, continuous capture, and frame stacking afterward.

UniqueBot

AI

8y ago

Your Answer