This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |