출처
Octolapse 삭제
pi@raspberrypi:~$ cd OctoPrint/
pi@raspberrypi:~/OctoPrint$ virtualenv venv
Running virtualenv with interpreter /usr/bin/python2
New python executable in /home/pi/OctoPrint/venv/bin/python2
Not overwriting existing python script /home/pi/OctoPrint/venv/bin/python (you must use /home/pi/OctoPrint/venv/bin/python2)
Installing setuptools, pkg_resources, pip, wheel...done.
pi@raspberrypi:~/OctoPrint$ source venv/bin/activate
(venv) pi@raspberrypi:~/OctoPrint$ python -m pip --disable-pip-version-check uninstall --yes Octolapse
Octolapse 수동설치
(venv) pi@raspberrypi:~/OctoPrint$ python -m pip --disable-pip-version-check install Octolapse-0.4.0_bluexmas.zip --no-cache-dir
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Processing ./Octolapse-0.4.0_bluexmas.zip
.. 생략 ...
Building wheels for collected packages: Octolapse
Building wheel for Octolapse (setup.py) ... done
Created wheel for Octolapse: filename=Octolapse-0.4.0-cp27-cp27mu-linux_armv7l.whl size=3286578 sha256=92dba105ebe1509fc92147d973c662e914c5aef344c766796d299cc63021f969
Stored in directory: /tmp/pip-ephem-wheel-cache-jiQcsm/wheels/a7/32/ae/c12a39393ef08ef1772f53f0f469c4b6140d8be700083e7d5e
Successfully built Octolapse
Installing collected packages: Octolapse
Successfully installed Octolapse-0.4.0
__init__.py
@functools.total_ordering
class NumberedVersion(version.LooseVersion):
# This is the current plugin version, not including any versioneer info,
# which could be earlier or later
CurrentVersion = "0.4.0(bluexmas)"
# This is the CurrentVersion last time the settings were migrated.
CurrentSettingsVersion = "0.4.0(bluexmas)"
render.py
def _delete_snapshots_for_job(
self, temporary_directory, job_guid, camera_guid,
progress_callback=None, progress_key='delete_snapshots', progress_current_step=None, progress_total_steps=None
):
with self.temp_files_lock:
# get the two snapshot paths, one for the job, one for the camera
job_path = utility.get_temporary_snapshot_job_path(temporary_directory, job_guid)
camera_path = utility.get_temporary_snapshot_job_camera_path(temporary_directory, job_guid, camera_guid)
logger.debug("Deleting all snapshot images at: %s", camera_path)
def _render(self):
"""Process the timelapse render job and report progress"""
try:
finally:
# Start cleanup of rendering/snapshot files
# delete the temp rendering file if it exists.
if os.path.isfile(temp_filepath):
try:
utility.remove(temp_filepath)
except (OSError, IOError):
logger.exception("Could not delete a temporary rendering file!")
pass
# bluexmas - snapshot 삭제하는 곳
if delete_snapshots:
def _clear_temporary_files(
self, progress_key='deleting_temp_files', progress_current_step=None, progress_total_steps=None,
delete_folder=True
):
"""Delete all temporary rendering files, and report progress."""
logger.debug("Cleaning all temporary rendering files.")
확인

OctoLapse 로그
2020-10-24 06:46:10,102 - octolapse.timelapse - DEBUG - Sent: G0 X96.557 Y97.579
2020-10-24 06:46:10,221 - octolapse.timelapse - DEBUG - Setting job-on-hold lock.
2020-10-24 06:46:10,223 - octolapse.timelapse - DEBUG - Sent: G0 X97.209 Y97.28
2020-10-24 06:46:10,224 - octolapse.timelapse - INFO - About to take a snapshot. Triggering Command: G1 X99.01 Y99.335 E1795.27793
2020-10-24 06:46:10,228 - octolapse.stabilization_gcode - INFO - Triggered at line: 183289 by gcode: G1 X99.01 Y99.335 E1795.27793
2020-10-24 06:46:10,229 - octolapse.stabilization_gcode - INFO - Snapshot Gcode (Tool: 1):^M
Init - G1 X99.01 Y99.335 E1795.27793^M
Start - M83^M
Start - G1 E-5.00000 F2700.000^M
Snapshot - G0 X217.800 Y217.800 F12000.000^M
Take Snapshot - @OCTOLAPSE TAKE-SNAPSHOT^M
Return - G0 X99.010 Y99.335^M
End - G1 E5.00000 F2700.000^M
End - M82^M
End - G1 F922.500
2020-10-24 06:46:10,231 - octolapse.timelapse - INFO - Queuing 1 initialization commands.
2020-10-24 06:46:10,233 - octolapse.timelapse - DEBUG - Snapshot gcode INIT - queuing: G1 X99.01 Y99.335 E1795.27793
2020-10-24 06:46:10,234 - octolapse.timelapse - INFO - Queuing 2 start commands.
2020-10-24 06:46:10,236 - octolapse.timelapse - DEBUG - Snapshot gcode START - queuing: M83
2020-10-24 06:46:10,239 - octolapse.timelapse - DEBUG - Snapshot gcode START - queuing: G1 E-5.00000 F2700.000
2020-10-24 06:46:10,240 - octolapse.timelapse - DEBUG - Queuing 1 snapshot commands, an M400 and an M114 command. Note that the actual snapshot command is never sent.
2020-10-24 06:46:10,241 - octolapse.timelapse - INFO - Octolapse is requesting a position.
2020-10-24 06:46:10,246 - octolapse.timelapse - DEBUG - Snapshot gcode SNAPSHOT - queuing: G0 X217.800 Y217.800 F12000.000
2020-10-24 06:46:10,251 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - queuing: M400
2020-10-24 06:46:10,252 - octolapse.timelapse - DEBUG - Sent: G0 X97.208 Y97.559
2020-10-24 06:46:10,254 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - queuing: M114
2020-10-24 06:46:10,283 - octolapse.timelapse - DEBUG - Sent: G1 F922.5 X99.01 Y97.561 E1795.21892
2020-10-24 06:46:10,289 - octolapse.timelapse - DEBUG - Snapshot gcode INIT - sent: G1 X99.01 Y99.335 E1795.27793
2020-10-24 06:46:10,301 - octolapse.timelapse - DEBUG - Snapshot gcode START - sent: M83
2020-10-24 06:46:10,304 - octolapse.timelapse - DEBUG - Snapshot gcode START - sent: G1 E-5.00000 F2700.000
2020-10-24 06:46:10,317 - octolapse.timelapse - DEBUG - Snapshot gcode SNAPSHOT - sent: G0 X217.800 Y217.800 F12000.000
2020-10-24 06:46:10,339 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - sent: M400
2020-10-24 06:46:13,162 - octolapse.timelapse - DEBUG - The position request is being sent
2020-10-24 06:46:13,163 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - sent: M114
2020-10-24 06:46:13,165 - octolapse.timelapse - INFO - Octolapse has received a position request response.
2020-10-24 06:46:13,182 - octolapse.timelapse - INFO - Taking a snapshot.
2020-10-24 06:46:13,183 - octolapse.snapshot - INFO - Starting snapshot acquisition
2020-10-24 06:46:13,185 - octolapse.snapshot - INFO - Starting 1 snapshot threads.
2020-10-24 06:46:13,186 - octolapse.snapshot - INFO - Snapshot Delay - Waiting 0.125 second(s) after executing the snapshot script for the Webcam - Default OctoPi 0.16.0 camera.
2020-10-24 06:46:13,312 - octolapse.snapshot - DEBUG - Snapshot - downloading for the Webcam - Default OctoPi 0.16.0 camera from http://bluesanta.iptime.org:4996/?action=snapshot.
2020-10-24 06:46:13,737 - octolapse.snapshot - DEBUG - Snapshot - snapshot downloaded for the Webcam - Default OctoPi 0.16.0 camera in 0.425 seconds.
2020-10-24 06:46:13,738 - octolapse.snapshot - DEBUG - Post-processing snapshot for the Webcam - Default OctoPi 0.16.0 camera.
2020-10-24 06:46:13,741 - octolapse.snapshot - INFO - Snapshot threads complete, but may be post-processing.
2020-10-24 06:46:13,741 - octolapse.snapshot - INFO - Snapshot acquisition completed in 0.557 seconds.
2020-10-24 06:46:13,742 - octolapse.timelapse - INFO - Queuing 1 return commands.
2020-10-24 06:46:13,743 - octolapse.timelapse - DEBUG - Snapshot gcode RETURN - queuing: G0 X99.010 Y99.335
2020-10-24 06:46:13,744 - octolapse.timelapse - INFO - Queuing 3 end commands.
2020-10-24 06:46:13,747 - octolapse.timelapse - DEBUG - Snapshot gcode RETURN - sent: G0 X99.010 Y99.335
2020-10-24 06:46:13,748 - octolapse.timelapse - DEBUG - Snapshot gcode END - queuing: G1 E5.00000 F2700.000
2020-10-24 06:46:13,750 - octolapse.timelapse - DEBUG - Snapshot gcode END - queuing: M82
2020-10-24 06:46:13,754 - octolapse.timelapse - DEBUG - Snapshot gcode END - queuing: G1 F922.500
2020-10-24 06:46:13,755 - octolapse.timelapse - INFO - The snapshot has completed
2020-10-24 06:46:13,757 - octolapse.timelapse - INFO - Sending on_snapshot_complete payload.
2020-10-24 06:46:13,757 - octolapse.timelapse - DEBUG - Snapshot gcode END - sent: G1 E5.00000 F2700.000
2020-10-24 06:46:13,764 - octolapse.timelapse - DEBUG - Snapshot gcode END - sent: M82
2020-10-24 06:46:13,766 - octolapse.timelapse - DEBUG - Releasing job-on-hold lock.
2020-10-24 06:46:13,772 - octolapse.timelapse - DEBUG - Snapshot gcode END - sent: G1 F922.500
2020-10-24 06:46:13,776 - octolapse.timelapse - DEBUG - Sent: G1 X95.845 Y99.335 E1795.3832
2020-10-24 06:46:13,784 - octolapse.timelapse - DEBUG - Sent: G1 X95.985 Y99.3 E1795.388
2020-10-24 06:46:13,809 - octolapse.timelapse - DEBUG - Sent: G1 X96.265 Y99.176 E1795.39818
2020-10-24 06:46:13,816 - octolapse.snapshot - DEBUG - Snapshot - Snapshot saved to disk for the Webcam - Default OctoPi 0.16.0 camera at /home/pi/.octoprint/data/octolapse/tmp/octolapse_snapshots_tmp/083d4ba3-e1e1-46d9-a778-a6b89cf5a3e2/354def78-9eea-409a-ad23-ee966dfff4ba/CE5_3D_Printer_test_fixed_stl_3rd_gen000299.jpg
2020-10-24 06:46:13,834 - octolapse.timelapse - DEBUG - Sent: G1 X96.515 Y99.013 E1795.40811
2020-10-24 06:46:13,838 - octolapse.timelapse - DEBUG - Sent: G1 X96.743 Y98.8 E1795.41848
2020-10-24 06:46:13,841 - octolapse.timelapse - DEBUG - Sent: G1 X96.916 Y98.578 E1795.42785
... 생략 ...
2020-10-24 06:46:13,953 - octolapse.timelapse - DEBUG - Sent: G0 X95.774 Y98.682
2020-10-24 06:46:13,956 - octolapse.timelapse - DEBUG - Sent: G0 X95.252 Y98.736
2020-10-24 06:46:14,220 - octolapse.snapshot - DEBUG - Post-processing snapshot for the Webcam - Default OctoPi 0.16.0 camera complete.
2020-10-24 06:46:14,225 - octolapse.snapshot - INFO - Snapshot Download Job completed for the Webcam - Default OctoPi 0.16.0 camera in 0.913 seconds.
2020-10-24 06:46:15,025 - octolapse.timelapse - DEBUG - Sent: G0 X92.881 Y98.735
2020-10-24 06:46:15,157 - octolapse.timelapse - DEBUG - Sent: G0 X91.024 Y98.586
... 생략 ...
2020-10-24 06:46:28,055 - octolapse.timelapse - DEBUG - Sent: G1 X96.515 Y98.978 E1798.61655
2020-10-24 06:46:28,076 - octolapse.timelapse - DEBUG - Sent: G1 X96.745 Y98.764 E1798.627
2020-10-24 06:46:28,093 - octolapse.timelapse - DEBUG - Setting job-on-hold lock.
2020-10-24 06:46:28,095 - octolapse.timelapse - INFO - About to take a snapshot. Triggering Command: G1 X99.01 Y99.263 E1798.72229
2020-10-24 06:46:28,096 - octolapse.timelapse - DEBUG - Sent: G1 X96.796 Y98.696 E1798.62983
2020-10-24 06:46:28,099 - octolapse.stabilization_gcode - INFO - Triggered at line: 183619 by gcode: G1 X99.01 Y99.263 E1798.72229
2020-10-24 06:46:28,100 - octolapse.stabilization_gcode - INFO - Snapshot Gcode (Tool: 1):^M
Init - G1 X99.01 Y99.263 E1798.72229^M
Start - M83^M
Start - G1 E-5.00000 F2700.000^M
Snapshot - G0 X217.800 Y217.800 F12000.000^M
Take Snapshot - @OCTOLAPSE TAKE-SNAPSHOT^M
Return - G0 X99.010 Y99.263^M
End - G1 E5.00000 F2700.000^M
End - M82^M
End - G1 F600.000
2020-10-24 06:46:28,101 - octolapse.timelapse - INFO - Queuing 1 initialization commands.
2020-10-24 06:46:28,102 - octolapse.timelapse - DEBUG - Snapshot gcode INIT - queuing: G1 X99.01 Y99.263 E1798.72229
2020-10-24 06:46:28,103 - octolapse.timelapse - INFO - Queuing 2 start commands.
2020-10-24 06:46:28,104 - octolapse.timelapse - DEBUG - Snapshot gcode START - queuing: M83
2020-10-24 06:46:28,106 - octolapse.timelapse - DEBUG - Snapshot gcode START - queuing: G1 E-5.00000 F2700.000
2020-10-24 06:46:28,108 - octolapse.timelapse - DEBUG - Queuing 1 snapshot commands, an M400 and an M114 command. Note that the actual snapshot command is never sent.
2020-10-24 06:46:28,109 - octolapse.timelapse - INFO - Octolapse is requesting a position.
2020-10-24 06:46:28,110 - octolapse.timelapse - DEBUG - Snapshot gcode SNAPSHOT - queuing: G0 X217.800 Y217.800 F12000.000
2020-10-24 06:46:28,112 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - queuing: M400
2020-10-24 06:46:28,115 - octolapse.timelapse - DEBUG - Sent: G1 X99.01 Y98.697 E1798.70346
2020-10-24 06:46:28,116 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - queuing: M114
2020-10-24 06:46:28,119 - octolapse.timelapse - DEBUG - Snapshot gcode INIT - sent: G1 X99.01 Y99.263 E1798.72229
2020-10-24 06:46:28,142 - octolapse.timelapse - DEBUG - Snapshot gcode START - sent: M83
2020-10-24 06:46:28,146 - octolapse.timelapse - DEBUG - Snapshot gcode START - sent: G1 E-5.00000 F2700.000
2020-10-24 06:46:28,154 - octolapse.timelapse - DEBUG - Snapshot gcode SNAPSHOT - sent: G0 X217.800 Y217.800 F12000.000
2020-10-24 06:46:28,175 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - sent: M400
2020-10-24 06:46:31,154 - octolapse.timelapse - DEBUG - The position request is being sent
2020-10-24 06:46:31,156 - octolapse.timelapse - DEBUG - Waiting for moves to complete before continuing - sent: M114
2020-10-24 06:46:31,157 - octolapse.timelapse - INFO - Octolapse has received a position request response.
2020-10-24 06:46:31,190 - octolapse.timelapse - INFO - Taking a snapshot.
2020-10-24 06:46:31,192 - octolapse.snapshot - INFO - Starting snapshot acquisition
2020-10-24 06:46:31,194 - octolapse.snapshot - INFO - Starting 1 snapshot threads.
2020-10-24 06:46:31,194 - octolapse.snapshot - INFO - Snapshot Delay - Waiting 0.125 second(s) after executing the snapshot script for the Webcam - Default OctoPi 0.16.0 camera.
2020-10-24 06:46:31,320 - octolapse.snapshot - DEBUG - Snapshot - downloading for the Webcam - Default OctoPi 0.16.0 camera from http://bluesanta.iptime.org:4996/?action=snapshot.
2020-10-24 06:46:31,718 - octolapse.snapshot - DEBUG - Snapshot - snapshot downloaded for the Webcam - Default OctoPi 0.16.0 camera in 0.398 seconds.
2020-10-24 06:46:31,719 - octolapse.snapshot - DEBUG - Post-processing snapshot for the Webcam - Default OctoPi 0.16.0 camera.
2020-10-24 06:46:31,720 - octolapse.snapshot - INFO - Snapshot threads complete, but may be post-processing.
2020-10-24 06:46:31,721 - octolapse.snapshot - INFO - Snapshot acquisition completed in 0.528 seconds.
2020-10-24 06:46:31,721 - octolapse.timelapse - INFO - Queuing 1 return commands.
2020-10-24 06:46:31,722 - octolapse.timelapse - DEBUG - Snapshot gcode RETURN - queuing: G0 X99.010 Y99.263
2020-10-24 06:46:31,725 - octolapse.timelapse - INFO - Queuing 3 end commands.
2020-10-24 06:46:31,726 - octolapse.timelapse - DEBUG - Snapshot gcode END - queuing: G1 E5.00000 F2700.000
2020-10-24 06:46:31,728 - octolapse.timelapse - DEBUG - Snapshot gcode END - queuing: M82
2020-10-24 06:46:31,732 - octolapse.timelapse - DEBUG - Snapshot gcode END - queuing: G1 F600.000
2020-10-24 06:46:31,734 - octolapse.timelapse - DEBUG - Snapshot gcode RETURN - sent: G0 X99.010 Y99.263
2020-10-24 06:46:31,735 - octolapse.timelapse - INFO - The snapshot has completed
2020-10-24 06:46:31,742 - octolapse.timelapse - DEBUG - Snapshot gcode END - sent: G1 E5.00000 F2700.000
2020-10-24 06:46:31,743 - octolapse.timelapse - INFO - Sending on_snapshot_complete payload.
2020-10-24 06:46:31,750 - octolapse.timelapse - DEBUG - Snapshot gcode END - sent: M82
2020-10-24 06:46:31,755 - octolapse.timelapse - DEBUG - Releasing job-on-hold lock.
2020-10-24 06:46:31,756 - octolapse.snapshot - DEBUG - Snapshot - Snapshot saved to disk for the Webcam - Default OctoPi 0.16.0 camera at /home/pi/.octoprint/data/octolapse/tmp/octolapse_snapshots_tmp/083d4ba3-e1e1-46d9-a778-a6b89cf5a3e2/354def78-9eea-409a-ad23-ee966dfff4ba/CE5_3D_Printer_test_fixed_stl_3rd_gen000300.jpg
2020-10-24 06:46:31,756 - octolapse.timelapse - DEBUG - Snapshot gcode END - sent: G1 F600.000
2020-10-24 06:46:31,761 - octolapse.timelapse - DEBUG - Sent: G0 F12000 X99.29 Y99.263
2020-10-24 06:46:31,764 - octolapse.timelapse - DEBUG - Sent: G0 X99.218 Y98.489
2020-10-24 06:46:31,772 - octolapse.timelapse - DEBUG - Sent: G0 X96.689 Y98.481
... 생략 ...
2020-10-24 06:46:31,982 - octolapse.timelapse - DEBUG - Sent: G0 X89.757 Y99.263
2020-10-24 06:46:32,190 - octolapse.snapshot - DEBUG - Post-processing snapshot for the Webcam - Default OctoPi 0.16.0 camera complete.
2020-10-24 06:46:32,191 - octolapse.snapshot - INFO - Snapshot Download Job completed for the Webcam - Default OctoPi 0.16.0 camera in 0.870 seconds.
2020-10-24 06:46:33,003 - octolapse.timelapse - DEBUG - Sent: G1 F600 X85.99 Y99.263 E1799.03251
2020-10-24 06:46:33,143 - octolapse.timelapse - DEBUG - Sent: G1 X85.99 Y98.697 E1799.05134
2020-10-24 06:46:33,157 - octolapse.timelapse - DEBUG - Sent: G1 X88.85 Y98.693 E1799.14646
... 생략 ...
2020-10-24 06:46:43,265 - octolapse.timelapse - DEBUG - Sent: M140 S0
2020-10-24 06:46:43,335 - octolapse.timelapse - DEBUG - Sent: M84 X Y E
2020-10-24 06:46:43,366 - octolapse.timelapse - INFO - Snapshot jobs queue has completed, starting to render.
2020-10-24 06:46:43,378 - octolapse.__init__ - INFO - Adding new rendering job. JobGuid: 083d4ba3-e1e1-46d9-a778-a6b89cf5a3e2, CameraGuid: 354def78-9eea-409a-ad23-ee966dfff4ba
2020-10-24 06:46:43,383 - octolapse.__init__ - INFO - Print completed successfullly.
2020-10-24 06:46:43,385 - octolapse.__init__ - INFO - The print has ended.
2020-10-24 06:46:43,471 - octolapse.render - INFO - Sending render start message
2020-10-24 06:46:43,475 - octolapse.render - INFO - Setting output paths.
2020-10-24 06:46:43,477 - octolapse.render - INFO - Rendering is enabled for camera 354def78-9eea-409a-ad23-ee966dfff4ba.
2020-10-24 06:46:43,478 - octolapse.render - DEBUG - Converting and copying images to the temporary rendering folder
2020-10-24 06:46:43,636 - octolapse.snapshot - DEBUG - Post-processing snapshot for the Webcam - Default OctoPi 0.16.0 camera complete.
2020-10-24 06:46:43,637 - octolapse.snapshot - INFO - Snapshot Download Job completed for the Webcam - Default OctoPi 0.16.0 camera in 0.937 seconds.
2020-10-24 06:47:33,918 - octolapse.render - DEBUG - Reading snapshot metadata from /home/pi/.octoprint/data/octolapse/tmp/octolapse_snapshots_tmp/083d4ba3-e1e1-46d9-a778-a6b89cf5a3e2/354def78-9eea-409a-ad23-ee966dfff4ba/metadata.csv
2020-10-24 06:47:33,926 - octolapse.render - INFO - FPS Calculation Type:static, Fps:60
2020-10-24 06:47:33,930 - octolapse.render - INFO - Creating the directory at /home/pi/.octoprint/timelapse
2020-10-24 06:47:33,934 - octolapse.render - DEBUG - Renaming images.
2020-10-24 06:47:34,758 - octolapse.render - INFO - Adding 120 pre-roll frames.
2020-10-24 06:47:53,872 - octolapse.render - INFO - Adding 120 post-roll frames.
2020-10-24 06:48:18,097 - octolapse.render - INFO - Renaming images because pre-roll images were added.
2020-10-24 06:48:18,815 - octolapse.render - INFO - Pre/post roll generated successfully.
2020-10-24 06:48:18,816 - octolapse.render - DEBUG - Applying video filter chain: [f0] format=yuv420p [out]
2020-10-24 06:48:18,816 - octolapse.render - DEBUG - Rendering movie to /home/pi/.octoprint/data/octolapse/tmp/octolapse_rendering_tmp/2f7f2af7-2373-49b0-8369-fa2f2af6fa21.tmp
2020-10-24 06:48:18,817 - octolapse.render - INFO - Running ffmpeg.
2020-10-24 06:48:18,818 - octolapse.script - DEBUG - Executing Unknown with No Timeout timeout: /usr/local/bin/ffmpeg -framerate 60 -loglevel info -i /home/pi/.octoprint/data/octolapse/tmp/octolapse_rendering_tmp/CE5_3D_Printer_test_fixed_stl_3rd_gen%06d.jpg -threads 1 -r 60 -y -vcodec mpeg4 -f mp4 -b:v 10000k -vf "[f0] format=yuv420p [out]" /home/pi/.octoprint/data/octolapse/tmp/octolapse_rendering_tmp/2f7f2af7-2373-49b0-8369-fa2f2af6fa21.tmp
2020-10-24 06:48:20,786 - octolapse.script - INFO - stderr: ffmpeg version N-99482-g214998c55f Copyright (c) 2000-2020 the FFmpeg developers
2020-10-24 06:48:20,789 - octolapse.script - INFO - stderr: built with gcc 8 (Raspbian 8.3.0-6+rpi1)
2020-10-24 06:48:20,793 - octolapse.script - INFO - stderr: configuration: --extra-libs=-ldl --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libx264 --enable-nonfree --enable-version3 --extra-ldflags=-latomic
2020-10-24 06:48:20,802 - octolapse.script - INFO - stderr: libavutil 56. 60.100 / 56. 60.100
2020-10-24 06:48:20,803 - octolapse.script - INFO - stderr: libavcodec 58.109.100 / 58.109.100
2020-10-24 06:48:20,805 - octolapse.script - INFO - stderr: libavformat 58. 61.100 / 58. 61.100
2020-10-24 06:48:20,807 - octolapse.script - INFO - stderr: libavdevice 58. 11.102 / 58. 11.102
2020-10-24 06:48:20,808 - octolapse.script - INFO - stderr: libavfilter 7. 87.100 / 7. 87.100
2020-10-24 06:48:20,810 - octolapse.script - INFO - stderr: libswscale 5. 8.100 / 5. 8.100
2020-10-24 06:48:20,811 - octolapse.script - INFO - stderr: libswresample 3. 8.100 / 3. 8.100
2020-10-24 06:48:20,813 - octolapse.script - INFO - stderr: libpostproc 55. 8.100 / 55. 8.100
2020-10-24 06:48:21,028 - octolapse.script - INFO - stderr: Input #0, image2, from '/home/pi/.octoprint/data/octolapse/tmp/octolapse_rendering_tmp/CE5_3D_Printer_test_fixed_stl_3rd_gen%06d.jpg':
2020-10-24 06:48:21,029 - octolapse.script - INFO - stderr: Duration: 00:00:09.03, start: 0.000000, bitrate: N/A
2020-10-24 06:48:21,030 - octolapse.script - INFO - stderr: Stream #0:0: Video: mjpeg (Baseline), yuvj420p(pc, bt470bg/unknown/unknown), 3280x2464, 60 tbr, 60 tbn, 60 tbc
2020-10-24 06:48:21,033 - octolapse.script - INFO - stderr: Stream mapping:
2020-10-24 06:48:21,034 - octolapse.script - INFO - stderr: Stream #0:0 -> #0:0 (mjpeg (native) -> mpeg4 (native))
2020-10-24 06:48:21,035 - octolapse.script - INFO - stderr: Press [q] to stop, [?] for help
2020-10-24 06:48:21,327 - octolapse.script - INFO - stderr: [swscaler @ 0x2045f80] deprecated pixel format used, make sure you did set range correctly
2020-10-24 06:48:21,648 - octolapse.script - INFO - stderr: Output #0, mp4, to '/home/pi/.octoprint/data/octolapse/tmp/octolapse_rendering_tmp/2f7f2af7-2373-49b0-8369-fa2f2af6fa21.tmp':
2020-10-24 06:48:21,649 - octolapse.script - INFO - stderr: Metadata:
2020-10-24 06:48:21,650 - octolapse.script - INFO - stderr: encoder : Lavf58.61.100
2020-10-24 06:48:21,651 - octolapse.script - INFO - stderr: Stream #0:0: Video: mpeg4 (mp4v / 0x7634706D), yuv420p, 3280x2464, q=2-31, 10000 kb/s, 60 fps, 15360 tbn, 60 tbc
2020-10-24 06:48:21,652 - octolapse.script - INFO - stderr: Metadata:
2020-10-24 06:48:21,653 - octolapse.script - INFO - stderr: encoder : Lavc58.109.100 mpeg4
2020-10-24 06:48:21,654 - octolapse.script - INFO - stderr: Side data:
2020-10-24 06:48:21,655 - octolapse.script - INFO - stderr: cpb: bitrate max/min/avg: 0/0/10000000 buffer size: 0 vbv_delay: N/A
2020-10-24 06:48:23,035 - octolapse.script - INFO - stderr: frame= 2 fps=0.0 q=2.0 size= 768kB time=00:00:00.01 bitrate=376034.4kbits/s speed=0.0169x
... 생략 ...
2020-10-24 06:55:28,637 - octolapse.script - INFO - stderr: frame= 542 fps=1.3 q=31.0 size= 13568kB time=00:00:09.01 bitrate=12327.0kbits/s speed=0.0211x
2020-10-24 06:55:28,640 - octolapse.script - INFO - stderr: frame= 542 fps=1.3 q=31.0 Lsize= 13592kB time=00:00:09.01 bitrate=12348.7kbits/s speed=0.0211x
2020-10-24 06:55:28,641 - octolapse.script - INFO - stderr: video:13589kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.024478%
2020-10-24 06:55:28,719 - octolapse.render - DEBUG - Deleting all snapshot images at: /home/pi/.octoprint/data/octolapse/tmp/octolapse_snapshots_tmp/083d4ba3-e1e1-46d9-a778-a6b89cf5a3e2/354def78-9eea-409a-ad23-ee966dfff4ba
2020-10-24 06:55:29,767 - octolapse.render - DEBUG - Cleaning all temporary rendering files.
2020-10-24 06:55:30,683 - octolapse.render - INFO - Sending render complete message
2020-10-24 06:55:33,552 - octolapse.render - INFO - Cleaning temporary snapshot folders at /home/pi/.octoprint/data/octolapse/tmp.
2020-10-24 06:55:33,560 - octolapse.render - INFO - Cleaning temporary snapshot folders at /home/pi/.octoprint/data/octolapse/tmp.
2020-10-24 06:55:33,561 - octolapse.render - INFO - Sending render end message