3D printing timelapse


How to create beautiful 3D print timelapse videos

We’re often asked how to make great looking time-lapses with a digital camera and our Original Prusa i3 3D printers. While OctoLapse is a good solution for some users, we’re using something a bit more special – a custom-made remote trigger, which is controlled by the Einsy RAMBo board. It’s not too difficult to make one and we’ll show you how to get started. However, if you would like something simpler and solder-free, wait until next week – we will show you how to make a Bluetooth shutter compatible with pretty much all modern smartphones.

WARNING: THIS METHOD REQUIRES YOU TO SOLDER A CUSTOM CABLE TO CONNECT A CAMERA TO YOUR 3D PRINTER – THERE’S A CHANCE OF POSSIBLE DAMAGE TO YOUR DEVICES IN CASE OF INCORRECT WIRING/CONNECTIONS!

A bit of theory

To record a timelapse of a print, a couple of things are needed:

  • Original Prusa i3 MK3/S or MK2S / 2. 5 / 2.5S 3D printer
  • A digital camera with a port for a remote trigger (power adapter recommended)
  • Video editing software
  • Custom-made cable (see below)

Our solution has some pretty good features: the cable can be made with just a few basic (and cheap) components, so it can be tailor-made to suit your setup perfectly. We’re using custom G-code to move the extruder aside and push the print bed all the way forward to have those clean, nice-looking shots. The cable is essentially a remote camera trigger, which is controlled by activating a pin on the Einsy / mini RAMBo. There’s one downside: remote shutters differ based on the camera manufacturer, so every cable will be slightly different depending on the camera model. The main difference is usually the connector, the way how the wires are connected and the voltages for the focus and shutter functions.

Some cameras have proprietary connectors, which usually means that you need to buy a pre-made remote trigger, disassemble it and modify it.

We’re using Panasonic Lumix digital cameras, so the sample cable described in this article is meant to be used with a Lumix camera. However, you can find a comprehensive list of popular camera brands at www.doc-diy.net along with diagrams depicting the parts required for making these cables. The way it works is pretty basic: three wires are all you need – ground, focus, and shutter. Once you connect the focus or shutter wire to the ground, the camera will perform the required action.

How a Lumix remote shutter works (by Doc-diy.net)

Making a cable for a Lumix camera

All cables will have two input wires: +5V and ground. We’re using a Toshiba TLP621 transistor as a switch to activate a separate trigger circuit, and an LED to check whether there’s power on the input pin. The “U2” part on the right is actually a 4-segment 2.5mm jack that will be plugged into the camera. The complete diagram is below:

If you decide to solder your own cable for a different type of camera, the parts to the right from the TLP621 will be different (namely R3, R4, R5, and U2).

Here’s a complete list of all required parts for Lumix cameras:

  • 2x jumper wire with a male connector – for MK3/S
  • 2x jumper wire with a female connector – for MK2.5/S
  • 2x 68k resistor
  • 1x 2.2k resistor
  • 1x 470 resistor
  • 1x 1k resistor
  • 1x LED
  • 1x Toshiba TLP621 or another optocoupler with the same parameters
  • 1x cable with a 2.5mm 4-segment jack (we recommend buying a 2.5mm jack with a cable already soldered to it for easier setup)

The total price for the needed parts is roughly 5-7 USD, but the overall price will be a bit higher since many of the parts can be bought only in larger quantities. You can even buy pretty good sets of various types of that part, so you have some extra stuff for future projects. 🙂

  • Jumper Wire Set
  • Resistor set
  • LEDs

Connecting the cable to the MK3/S

We have designed the cable to fit the Raspberry Pi W Zero port on the Einsy RAMBo motherboard. As long as you are not using the RasPi, the port is free (and if you have a RasPi Zero, you are most likely going to use the OctoLapse plugin anyway).

There are two ways how to connect the wires to the RasPi port – either from inside the case or from the back. The choice is yours. We found it to be a bit easier to remove the back door from the case and connect the wires from the back. Just remember to do this when the printer is turned off!

Please refer to the illustrations below to learn how to connect the wires correctly

It’s always better to test the cable before you connect it to the camera. Simply run the modified G-code without the camera connected – the blinking LED will tell you whether the connections work.

Connecting the cable to MK2S / 2.5 / 2.5S

As described in the previous chapter, our solution is designed to work with the MK3/S primarily, since the cable is connected to the Raspberry Pi port, which is not present on older Mini RAMBo motherboards. With a very limited selection of pins, the easiest option is to disconnect the filament sensor and plug the timelapse cable in its place – see the illustration below.

Remember that you will need to use the latest MK2.5 firmware for the M42 Gcode to work!

This also means that the cable is connected to a different pin than in the case of MK3/S – it’s P20 instead of P73, so the G-code you’ll find in the next chapter needs to be modified. We’ll show you how.

Preparing the G-code

The best way how to create fluid timelapse is to take a picture after each layer. This is done by adding a piece of custom code to every layer change. Slic3r PE can do this for you.

The code we’re talking about is this (for MK3/S):

;AFTER_LAYER_CHANGE
 G1 X5 Y205 F{travel_speed*60} ;Move away from the print
 G4 S0 ;Wait for move to finish
 G4 P500 ;Wait for 500ms
 M42 S255 P73 ;Trigger
 G4 P200 ;Wait for 200ms
 M42 S0 P73 ;Untrigger
 G4 P500 ;Wait for 500ms
 ;[layer_z]

 

In case you have an MK2. 5/S, you need to change the pin number to P20:

;AFTER_LAYER_CHANGE
 G1 X5 Y205 F{travel_speed*60} ;Move away from the print
 G4 S0 ;Wait for move to finish
 G4 P500 ;Wait for 500ms
 M42 S255 P20 ;Trigger
 G4 P200 ;Wait for 200ms
 M42 S0 P20 ;Untrigger
 G4 P500 ;Wait for 500ms
 ;[layer_z]

Let’s take a look at each step:

G1 X5 Y205 F{travel_speed*60} – this code tells the extruder to move all the way to the side and the print bed to move all the way forward

G4 S0 – waits until these moves are finished

G4 P500 – wait 500 milliseconds

M42 S255 P73 – M42 G-code activates pin 73 (P73) with 5V. S0 = 0V, S255 = 5V. Since we’re using fixed (manual) focus, we don’t need to worry about focusing the camera first

G4 P200 – wait 200 milliseconds

M42 S0 P73 – disabling (S0) pin 73, aka “untrigger”

G4 P500 – wait 500 milliseconds

After these actions are performed, the printer returns the extruder and print bed back to the original position and continues the print. This procedure won’t affect the look of the model in any way.

Adding custom G-code is easy. Open Slic3r PE, go to the “Printer Settings” tab and look for “Custom G-Code” section. Add the code above into the “After layer change G-code” textbox and save the profile as something easy to remember – e.g. Original Prusa i3 MK3S Timelapse. It’s advised to save this as a new printer profile, because when you slice an object with these settings, it will always perform the “move to the side” action after each layer, no matter whether a camera is connected or not. This, of course, makes the printing times noticeably longer.

Once you have the custom G-code implemented, you can slice the object as usual – you can choose any layer height or material.

Keep in mind that printing objects with the timelapse mode on will extend the print time noticeably.

Setting up the camera and preparation of the timelapse

To make a good looking timelapse video means first and foremost to ensure stable lighting conditions in the environment. If you have the printer located in a room where there’s a lot of sunlight and the lighting conditions change during the day (and people are often using light switches at night), the timelapse video will be extremely inconsistent.

A good solution is to place the printer in a dedicated room with minimum “traffic”. Sunblinds on a window are recommended. Set up artificial lights, so the 3D printer is nicely lit – we are regularly using “arch lamps” such as this one: https://www.thingiverse.com/thing:3469190 It’s easy to print and it creates some really good lighting conditions. And by the way, if you want to learn more about 3D printing and LED lights, check out our previous article!

Mount your digital camera on a tripod, change the focus mode to manual and push the print bed all the way forward – this will be the position where the printer will move the print bed during timelapse videos. Don’t zoom all the way in – you can easily do that in post-production.

Set up the camera and get it ready for shooting single photos (not a video). Keep in mind that longer prints can take many hours to complete, so using a power adapter is a good option. Otherwise, you may run out of batteries before the print finishes.

Turning photos into a timelapse

There’s a number of ways how to turn hundreds or even thousands of pictures into smooth videos. Most of them require a professional video editing software (such as Adobe Premiere Pro or DaVinci Resolve) and you can find plenty of tutorials for these programs online.

However, there’s a nice little app available for Windows directly on Microsoft Store. It’s called Time Lapse Creator, it has a simple interface and it’s completely free.

Time Lapse Creator is free and has an easy-to-use interface

Basically, all you need to do is to click the Select Photos Folder button and point the app to the folder where the timelapse photos are stored. The length of the video is controlled by the number in the TimeSpan (ms) field – the number tells the app how long a single image should be displayed. Lower numbers will lead to faster speeds. Once you’re happy with the result, press the Save Video button to save the video as an MP4 file.

Other solutions

Using a DSLR camera and a custom-made cable turned out to be our favorite way of capturing timelapse prints. However, we understand that some users don’t have a digital camera, or don’t know how to solder. In our next article, we will show you some other solutions on how to create a print timelapse – with a regular smartphone and no soldering whatsoever. Stay tuned and don’t forget to share your timelapses on social media. Also, check out our Weekly Prints page where we publish new timelapse videos every week!

Learn How to Make a 3D Print TimeLapse – Phone or Camera – 3D Printerly

Many people wonder how to create those awesome timelapse videos that they may have seen online, and it isn’t as hard as you think. If you want to learn how to make some cool 3D print timelapse, you are in the right place.

Keep on reading through this article to learn how the experts make time lapses that you can be proud of.

How to Make Smooth 3D Printing Time lapse with a Phone or Camera

To make a timelapse you’ll need a digital camera or phone, a printer, a remote shutter, a mount to hold the remote shutter, a trigger, and video editing software.

First, you will need to set up your printer, preferably in a dark area in your workstation. This is because it is more controlled and will prevent flickering.

Next, you need to print the mount that will hold your shutter in place if you’re using a digital camera or earphones if you’re using a smartphone for taking photos. You also need to print the trigger that will be placed on the print head.

Mount all the printed parts onto your printer.  Position the remote shutter for the camera on the 3D printed mount. For the smartphone, position the earphones on its 3D printed headphone mount.

Mount the trigger in the right place on the print head so it can move and press the shutter or the button on the earphones each time it goes to the stop position.

Place the camera or smartphone, whichever is taking the timelapse, in a suitable position. There should be no obstructions so it can take the photos seamlessly.

On the printers LCD, determine where the exact position the print head should be in (the stop position) before any photo is taken. Calibrate the printer to a position where the trigger mounted on the extruder clicks the remote shutter or button on the headphones.

Inject the correct gcode into your slicing software to enable the print head to stop after every layer is completed in order for a photo to be taken. The gcode also specifies your 3D print timelapse interval.

The end result will be a compilation of photos that you can stitch together using a video editing software to turn your still photos to a timelapse video.

For a more detailed explanation you can check out this video.

How to Make a 3D Printing TimeLapse with OctoPrint (Octolapse)

In this method, you get your 3D printer timelapse using a Raspberry Pi and the OctoPrint software.

OctoPrint is a remote control and monitoring software that you can install on Raspberry Pi. On the other hand, OctoLapse is a plugin that creates stabilized time lapses of your 3D printer in action.

First, download the latest OctoPi program and install it to your Raspberry Pi. Connect the Raspberry Pi to the 3D printer via USB and power it.

Install the OctoLapse plugin by clicking on the Octoprint settings icon, navigating to the plugin manager and installing it. You will need to restart the OctoPrint software before you can start using the Octolapse plugin.

Get a webcam e.g. a Raspberry Pi camera and hook the other side of its cable to the Raspberry Pi to get a working webcam stream.

3D print a camera stand, glue it to a sturdier pedestal and position the camera properly to get a good stream image. Also, adjust the focus of the camera.

You can adjust the OctoLapse 3D printing settings, to set your desired 3D print timelapse interval.

Upload the gcode locally to the OctoPrint software and hit print. You will notice that the OctoLapse 3D printing software will work fine. It will move the print head and bed to a fixed position after every layer for the camera to take a picture.

After the print is complete, the OctoLapse 3D printing software spats out a complete video file that you can download.

For a more detailed explanation of using OctoPrint to create 3D printing time lapses, have a look at this video.

How to Use Resinlapse to Make Resin Time Lapses

Filament 3D printers get most of the attention with time lapses because they have had more time to be fine-tuned, though resin time lapses are starting to make their way into the field.

One of the simplest ways that you can capture a high quality resin 3D print timelapse is to use a product called Resin Lapse, made by Uncle Jessy, a well-known YouTuber.

You can find the Resin Lapse product on Uncle Jessy’s Resin Lapse Big Cartel page for just $20 at time of writing.

Along with the Resin Lapse, you’ll need your resin 3D printer of course, along with a camera that supports a TRS shutter release and a decent video editing software.

You’ll usually find that most Canon cameras have this needed shutter release.

To start off, you need to take the photosensitive end of the resin lapse and insert it into an opening on your resin 3D printer. This is to enable it to trigger the camera to take a photo each time a layer of your print is processed.

Next, you insert the other end of the resin lapse cable into your camera. Place the camera in a stable position where it can capture the perfect view during the printing process.

After getting everything into place, start your resin 3D printer. Each time your printer finishes a single layer, the camera takes a picture. This process is perfectly synchronized.

You can then use a video editing software to stitch the images together to form a Resin lapse.

Example of video editing software that people use? Should be in the video guide I’m guessing.

To get a more detailed explanation of this process check out this video.

Best Camera for Time Lapses

Canon EOS 77D

This camera is a beast when it comes to creating smooth time lapses.

The Canon EOS 77D has an optical viewfinder which enables you to view what you want to photograph exactly as the camera sees it in different lighting conditions. You can view your 3D prints with minimal lag and glare because this camera gets it in focus quickly.

When it comes to capturing images, the canon EOS 77D offers high speed continuous shooting. It can capture as much as 6 frames per second. It will not miss any moment in your 3D printing process.

It has HDR movie and timelapse movie modes. The latter takes photos for a long period of time and stitches it together to form a single high-speed video.

The former captures under-exposed and exposed images and blends them into a more detailed video. This feature will ensure that the timellapse on your 3D printer, whether it’s a Prusa or Ender 3D printer be excellent.

If you don’t have a workstation with optimal lighting conditions, then the anti-flicker shooting function will come in handy. It will enable you to take continuous shots without disparities in color or exposure since the camera compensates for flickering light.

For powering the camera, you have a DIGIC 7 image processor which will provide high quality and detailed results even in bad lighting conditions.

One satisfied customer from Amazon was impressed with how fast the camera captured images. She said that she was able to take 10-12 shots of her kids in a few seconds by just pressing the shutter quickly.

Another user ranked the Canon 77D over the Nikon especially when it comes to the autofocusing system. This enable to capture detailed images of his car without any flickering.

An Amazon user gave it a five-star feedback and said that it had a better sensor, resolution and CPU as compared to other cameras in the market.  One person even won awards through using this camera, so that definitely counts for something!

You can get the Canon EOS 77D from Amazon today.

Simple 3D printing timelapse. Webcam, computer and printer only. (Not a manual, more like a sketch)

Why do I need to buy a RASPBERRY to shoot 3D prints?

We have a computer, a printer and a webcam - isn't that enough?

Enough, and now I'll tell you how to organize shooting for printers with MARLIN firmware with only a computer and a webcam.

Strictly speaking, time-lapse can also be shot on a mobile phone, such a mode has long existed in many modern smartphones, but for the needs of 3D printing, this is not a very successful idea, since the picture will turn out to be too jerky, especially when shooting with prush.

So a regular camera will not suit us, unless it can work in webcam mode when connected to a computer, like many modern cameras. A modern camera capable of working in webcam mode is the best webcam.

Raspbery and OCTOPRINT - although they are of higher quality, they are complicated, expensive and redundant for a simple time-lapse, so I'm not even going to consider them. I note that a two-megapixel camera, and in modern models with a higher resolution, is a good plus for Raspbery's karma.

Everything should be easier.

We will need:

  • Printer with MARLIN installed
  • Any available computer with WINDOWS
  • USB webcam
  • USB cable to connect the computer to the printer manual editing of the g-code
  • A program that receives commands from the printer and forms a picture. (download link)

    On the last point, I didn’t find such a program on the Internet, I had to sketch it myself, brazenly stealing from free access the first code I came across to work with the DIRECTSHOW library.

    The original webcam program was written in C#, using WPF, which I'm not good at, so I apologize for the somewhat clumsy interface.

    However, if you have the desire and ability, then the original project is in the same place, by reference, you can rewrite it for yourself. And if I have time and desire, I will probably finish my WPF education and rewrite it in a more convenient version.

    All

    Next, we need to cut the printed model in the slicer, adding the command M118 SMILE to the code before each layer change - this command sends the specified message via the serial port to the computer, and the program reads it and takes a picture from the camera.

    In order not to edit the code manually, you can use the capabilities of the slicer, for example, for Simplify3D, you need to add the line M118 SMILE to the script Layer changed .

    Copy the cut code to the card, connect the printer and webcam to the computer. Download the program and unpack the archive.

    Program settings:

    Go to the folder Resources and in the file SerialPortSettings.txt write down your printer connection parameters, com port number, transfer speed, Databits value, according to the instructions for your printer.

    Save the file and run the program WebCam.exe .

    Here the antivirus may swear at you, because I am an unknown publisher, and the program requires access to the webcam, but I can assure you that there is nothing malicious in the program, it just reads data from the COM port, webcam and writes images to folder Photo inside the program directory.

    An exception can be set for Anti-Virus.

    The source code is at the link, you can check, rewrite, modify, in general, you can do anything with the code. =)

    If you wrote down the port settings correctly, the program will start without warning about the unavailability of the printer.

    Otherwise, if the printer is not connected or the port settings are incorrect, the program will be able to record timelapse only by timer. We set the switch to record at the command of the printer, press the "start recording" button, and start printing from the flash drive.

    Each print layer will be photographed, numbered and placed in the Photo folder in the program directory.

    Well, then, in any available editor, be it Photoshop or OpenShoot Video Editor, open the resulting files as a sequence, set the number of frames and export the video.

    Time lapse is ready.

    That's all for me, I wish everyone a clean print, to be continued.

    Traditional video:

    p.s.

    The purpose of this article was to give a fresh idea for the implementation of timelapse, without complex and expensive equipment.

    What attracts me to the solution is that it is possible to connect any webcam, including a video camera or a camera capable of working in webcam mode, and receive frames on any computer.

    Of course, anyone can adapt the process of taking a picture from the camera on command to any available language, system, etc.

    Do whatever you want - the printer transmits the command, the computer reads, the camera shoots.

    Instructions for creating time-lapse prints on a 3D printer

    Many professional 3D printing studios and even amateurs post beautiful videos where an object magically appears out of nowhere. Those who understand even a little about 3D printing understand that this is really just a time-lapse filming of the printing process. But almost no one thinks about how such videos are made. In fact, creating a time lapse is very simple, it does not require special skills of the operator and editor, and all you need from the equipment is a 3D printer and a smartphone. Next, we will walk you through all the details of creating timelapses and look at mistakes that can be easily prevented even before creating a timelapse.

    What is time lapse?

    Before you start creating a timelapse, you need to understand what it is. Many people are under the misconception that this is just a speeded up video. In fact, this is a special shooting technology in which photographs are taken at regular intervals, and then they are combined into one video on a computer, where each photo will be a separate frame. Unlike video acceleration, this method allows you to reduce the file size, while increasing the quality of the resulting time-lapse, because we do not shoot a long video, and then throw out unnecessary frames. Everything happens the other way around: we immediately shoot only those frames that will make up the video. And the increase in quality is achieved by creating individual photos, not video, for which high-quality shooting requires expensive equipment. Almost all modern smartphones have a high-resolution camera that allows you to take high-quality photos, but at the same time does not allow you to shoot high-resolution video due to memory speed limitations or low processor power.

    How to create a timelapse

    Important clarification: As we understood from the previous paragraph, a time-lapse consists of separate frames, which are then combined into one video. But no one forbids shooting “the old fashioned way” using the video acceleration method. For simplicity, hereinafter, fast-paced shooting will also be called time-lapse.

    The process of “making” a time-lapse is divided into two stages: shooting the material and processing it. Later in this article, we will look at various options for the implementation of these two stages. As an example, we will use the video and photos of printing a small puck on the Raise3D E2 printer.

    Survey methods

    Different shooting scenarios may use different equipment. Often, a regular smartphone is enough, on which you may need to install a special application. But to achieve maximum quality, it is better to use a professional camera. Also, do not forget about the battery charge in any of the devices used, especially when shooting models that take more than 1-2 hours to print. To create a high-quality time-lapse, you need to set the camera in such a way that the highest point of the model falls into the frame. This can be easily done by placing an object of similar height on the printer table. Do not forget about the light: if there is no special artistic intent, then it is best to place the light source behind the camera, at the height of the table, so that there are no unnecessary shadows and the model is evenly lit. As a result, the frame should look like the photo below.

    Lots of photos

    This method is what is meant by the word "timelapse". To do this, you need to create photos at regular intervals. Many cameras (including action cameras) and smartphones have this feature. After installing the camera and starting printing, you can start shooting. To calculate the appropriate interval between photos, you can use a simple formula:

    interval = print time / (video time * frames per second)

    Here video time is the length of the video received, and frames per second is the number of frames per second of the video received (usually 24, 30 or 60 fps). Note that all times in this formula are in seconds. For example, to get a video of 30 seconds in length when shooting a print of 1 hour (3600 seconds) with a frequency of received video of 30 frames per second, you need to set the interval equal to 3600/(30 * 30) = 4 seconds between photos. It should be borne in mind that when shooting with this method, the printer carriage will be visible in the frame, which means that as a result it will constantly flicker in the timelapse. This can degrade the quality of the final result, especially on small models. To avoid this problem, you can use the following method.

    Video

    This option is the easiest to perform: start shooting video at the moment you start printing. Consider the need for a large amount of free space on the drive where the file will be saved. The advantage of this method is the ability to select certain frames where the caret will not block the model. To do this, before printing, you need to edit the Gcode so that with each change of layer, the carriage moves away from the part. You can read more about editing Gcode files in the article on our website. But extracting individual frames from a video in this way is an extremely time-consuming process.

    Fun fact: blogger GreatScott did an automatic photo of the model without the carriage hanging in random places by modifying the printer firmware and the Gcode print file. The essence of the method is that with each layer change, the carriage drove off to a special point, thereby pressing the limit switch, which in turn activated the camera and it took a photo.

    Automatic

    This method includes both the shooting of the print and the processing of the resulting photographs immediately after its completion. It is only available for smartphones and some action cameras. In fact, it is a fully automated method of taking many photos, because you only need to turn on the shooting, and the camera or smartphone will combine everything into a time-lapse video. Therefore, there is no need to process the received material. Processing methods After receiving the "raw" material, it is necessary to edit it on a computer. In the case of using video, everything is relatively simple, but to process a large array of photos, you need to use special tools and programs. Video Editor When shooting a large video, you only need to speed it up. For example, in the Sony Vegas video editor, you need to insert the video into the timeline and, holding down the ctrl key, move the right edge of the video to the left. When the edge starts to move, you will notice a zigzag. This means that you are doing everything right.

    Processing methods

    After receiving the "raw" material, you need to edit it on a computer. In the case of using video, everything is relatively simple, but to process a large array of photos, you need to use special tools and programs.

    Video editor

    When shooting a large video, you only need to speed it up. For example, in the Sony Vegas video editor, you need to insert the video into the timeline and, holding down the ctrl key, move the right edge of the video to the left. When the edge starts to move, you will notice a zigzag. This means that you are doing everything right.

    An example of accelerated video on the timeline in Sony Vegas

    If you used the method of taking many photos, then you need to select the file item in the top menu, then import, then multimedia. A file selection window will open. Select all photos and under the file browser window you need to check the box “Open sequence”. You will have another window where you can change the frame rate if necessary.

    Creating a time-lapse from a photo using Sony Vegas

    Special program

    These programs exist for both smartphones and PCs. They are intended only for creating time-lapses, so you will not be able to trim the resulting video or change the frame in them. For example, you can use the Time-Lapse Tool on a computer. But on smartphones, it makes more sense to use automatic time-lapse apps like Time Lapse Camera. They have an intuitive interface that even a child can understand.

    Major errors and solutions

    Often errors relate to the wrong frame and lighting. If the model is closed by the carriage most of the time, then the only way out is to install the camera at table level. This can severely limit the height of the model being filmed.


    Wrong shooting angle


    Correct shooting angle

    If strong shadows are visible on the model, which you need to get rid of, then you can use a table lamp aimed directly at the model.

    If strong vibrations are visible after combining the photo into a time-lapse, then the camera moved during the shooting. In some cases, this is caused by vibrations that the printer creates. To solve this problem, you need to securely mount the camera to the printer.

    Example of camera shake

    Summing up

    As you can see from this tutorial, making a time lapse is very simple. The only difficulty will be the choice of equipment for shooting. Do not forget that the main stage is shooting the model, and the stage of processing the received frames is secondary, because if you shoot well right away, then you won’t need to process the video much. Also pay attention to the first frames that the camera or smartphone will take, because they can immediately determine the success of the selected frame and lighting. If you are going to time-lapse a large model, it is best to first make a simpler time-lapse of a small model so that if any errors occur, they can be immediately prevented. Although you can shoot a time lapse using any printer, open frame printers, that is, those that do not have any panels, are best suited, as this gives a large variation in free frames.


    Learn more