Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion timelapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ def print_error(err):
print()
print(":: Print completed")
print(":: Encoding video")
ffmpegcmd = "ffmpeg -r 30 -i " + filenameformat + " -vcodec libx264 -preset veryslow -crf 18 " + options.OUTFILE
ffmpegcmd = "ffmpeg -r 60 -i " + filenameformat + " -vcodec libx264 -profile:v baseline -level 3.0 -pix_fmt yuv420p " + options.OUTFILE
print(ffmpegcmd)
os.system(ffmpegcmd)