Skip to content

Instantly share code, notes, and snippets.

View melmatsuoka's full-sized avatar

Mel Matsuoka melmatsuoka

View GitHub Profile
@TimmThaler
TimmThaler / ffmpeg-progress-dialog.sh
Last active January 13, 2024 17:03
This bash script shows you the progress of your ffmpeg conversion.
#!/bin/bash
#
# ffmpeg-progress-dialog.sh
# by Timm Thaler
#
# based on the ffmpeg-progress.sh from https://gist.github.com/pruperting/397509
# licensed under the GNU GENERAL PUBLIC LICENSE Version 3
#
# Dependencies / needed software
# ffmpeg (of course)
@pandafulmanda
pandafulmanda / Python3 Virtualenv Setup.md
Last active December 23, 2024 15:56 — forked from akszydelko/Python3 Virtualenv Setup.md
Setting up and using Python3 Virtualenv on Mac

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3
#!/bin/bash
# Requires:
# iTem2 3c
# pup
# imgcat
curl -s "http:$(curl -s xkcd.com | pup 'div[id="comic"] img attr{src}')" | imgcat; curl -s xkcd.com | pup 'div[id="comic"] img attr{title}'
@alastairmccormack
alastairmccormack / iframe-probe.py
Last active March 31, 2025 06:32
Shows GOP structure for video file using ffmpeg --show-frames output
#!/usr/bin/env python
#
# Shows GOP structure of video file. Useful for checking suitability for HLS and DASH packaging.
# Example:
#
# $ iframe-probe.py myvideo.mp4
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
# GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED
@NaanProphet
NaanProphet / timecode-rewrap.sh
Last active May 12, 2017 14:57
Timecode Enricher
#!/bin/sh
### Timecode generation script for MP4 footage (AVCHD, XAVC-S, etc.)
### Uses ffmpeg for timecode creation; EditReady for container cleanup;
### exiftool for copying over original track dates; and SetFile for setting
### the File Creation Date for FCP X event
### Note: this script currently does not work for files with spaces
# quit on first error (almost always)
@NaanProphet
NaanProphet / mkvWrapper.sh
Created January 16, 2016 15:28
YouTube mkvWrapper
#!/bin/bash
# mkvWrapper.sh
# helpful for rewrapping valid MOV exports from Compressor 4 into MKVs that can be batched to YouTube for faster processing
# USAGE
# sh mkvWrapper.sh "Compressor Export-MPEG4_HighQ to YT.mov"
# OUTPUT
# Compressor Export-MPEG4_HighQ to YT.mkv
@max-mapper
max-mapper / readme.md
Last active January 31, 2025 03:52
Video stabilization using VidStab and FFMPEG (Mac OS X)

Video stabilization using VidStab and FFMPEG

Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.

Here's an example video I made

Install ffmpeg with the vidstab plugin from homebrew

brew install ffmpeg --with-libvidstab
@tresni
tresni / gist:83b9181588c7393f6853
Last active September 7, 2024 02:35
Authy to 1Password

Moving Authy to 1Password

1Password 5.3 for OSX, 5.2 for iOS, and 4.1.0.538 for Windows support OTP. I've been using Authy for a while now, but the fact is, I haven't really been using 2FA for some time. As mentioned by 1Password in a recent blog post, having the OTP generator and password on the same device is very much not 2FA. It's just an expiring OTP, which can help, but let's not kid ourselves too much.

With that out of the way. One of the things that was interesting to me was moving my OTP out of Authy and into 1Password. I like the control I get with 1Password, but I didn't want to have to reset all my OTP right away, that would suck. So, I got to dissecting the Authy Chrome App to see what I could do.

Run the Authy Chrome app and make sure it's unlocked.

Now, enable Developer mode in Chrome. We'll need this to inspect the background application that stores al

/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -dump | grep -B6 bindings:.*:
@btgoodwin
btgoodwin / fcpxml_parse
Last active December 29, 2024 17:24
Final Cut Pro X FCPXML Parser
#!/usr/bin/python
'''
Author: Thomas Goodwin
Company: Geon Technologies, LLC, 2014
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.