Skip to content

Instantly share code, notes, and snippets.

@tmessi
tmessi / README.md
Created November 27, 2016 15:12 — forked from KonradIT/readme.md
GoPro Studio for Linux

####GoPro Protune correction, timelapse assembling, fisheye removal, slow motion, 4:3 to 16:9 and motion blur in Linux OS - GoPro Studio for Linux - KDEnlive, FFMPEG, ImageMagick, Mencoder and Python!

GoPro Studio has been tremendously useful for GoPro users, but not all GoPro users can enjoy the tool, there is no GoPro Studio for Linux. So some users made their ways to emulate GoPro Studio on Linux.

This guide is more than GoPro Studio, is a must read guide for Linux and GoPro users.

The main features of GoPro Studio are:

  • Convert and edit Protune footage and apply Protune effect.
  • Convert 4:3 footage to 16:9
  • Slow motion

Keybase proof

I hereby claim:

  • I am tmessi on github.
  • I am shadowfax (https://keybase.io/shadowfax) on keybase.
  • I have a public key ASCfcyKM6B6UUDaIMByuVEskOxm24YWBKUmXdSuMmtk1SQo

To claim this, I am signing this object:

@tmessi
tmessi / ajax.js
Last active August 29, 2015 14:08
Ajax without jquery
/**
* Taken from http://stackoverflow.com/a/18078705 with minor tweaks.
*/
var ajax = {};
/**
* Attempt to get the XMLHttpRequest object. If unavailable try fallbacks of increasing age.
*/
ajax.x = function() {
if (typeof XMLHttpRequest !== 'undefined') {