Skip to content

Instantly share code, notes, and snippets.

View travm's full-sized avatar
😱

Travis Maynard travm

😱
View GitHub Profile
@travm
travm / EN_iOS_Godot_no_paid_account.md
Created March 3, 2020 03:22
Build and Run Godot Games on iOS without a Paid Apple Dev Account

Godot Games on iOS without an Apple Paid Developer Account

Prerequist

  • A Mac and some iDevice (ios 8 +) if you want to try it physically
  • Xcode and the common tools (run it once)
  • Godot Engine 3.1.1 (+?) (Will probably work on other version but it's the version I tried that)

Steps

  1. Create a Personal Team with your Standard Apple account and Generate a Certificate for your Computer. (Google it)
@travm
travm / timelapse.md
Created August 16, 2018 14:21 — forked from alexellis/timelapse.md
ffmpeg time-lapse

Convert sequence of JPEG images to MP4 video

ffmpeg -r 24 -pattern_type glob -i '*.JPG' -i DSC_%04d.JPG -s hd1080 -vcodec libx264 timelapse.mp4

  • -r 24 - output frame rate
  • -pattern_type glob -i '*.JPG' - all JPG files in the current directory
  • -i DSC_%04d.JPG - e.g. DSC_0397.JPG
  • -s hd1080 - 1920x1080 resolution

Slower, better quality