Skip to content

Instantly share code, notes, and snippets.

View mashintsev's full-sized avatar
:electron:
Launch

Ivan Mashintsev mashintsev

:electron:
Launch
View GitHub Profile
@mashintsev
mashintsev / dashcam-time-lapse.sh
Created May 24, 2018 08:58 — forked from geerlingguy/dashcam-time-lapse.sh
Create a time lapse video from a set of real-time dash cam clips.
#!/bin/bash
#
# Batch Time-Lapse creation script.
#
# This script can be used to speed up, trim, and finally concatenate tens or
# even hundreds of video clips, e.g. from a dash cam. You can do other things,
# too, but the main things this script does include:
#
# 1. Copy across and speed up video clips from an input dir to an output dir.
# 2. Trim off the first x frames of each of the copied/sped up clips.
@mashintsev
mashintsev / nginx_storage_spray.conf
Last active August 29, 2015 14:25 — forked from ilguzin/nginx_storage_spray.conf
spray + nginx: serve static with storage API endpoint
server {
listen 443 ssl;
server_name hostname;
ssl on;
ssl_certificate /etc/nginx/ssl_certs/hostname.bndl.crt;
ssl_certificate_key /etc/nginx/ssl_certs/hostname.key;
ssl_session_timeout 5m;