Skip to content

Instantly share code, notes, and snippets.

View JacobSamro's full-sized avatar
👻
Code & Codology

Sam JacobSamro

👻
Code & Codology
View GitHub Profile
@seven1m
seven1m / open_source_church_software.md
Last active August 1, 2025 11:15
List of Open Source Church Software (NO LONGER MAINTAINED)
@snsinfu
snsinfu / ffserver.conf
Last active August 17, 2020 13:29
Live-transcode RTMP stream to WebM using ffmpeg and ffserver for Chromecast
HTTPBindAddress 0.0.0.0
HTTPPort 8090
CustomLog -
<Feed feed.ffm>
File ./feed.ffm
FileMaxSize 256M
ACL ALLOW localhost
</Feed>
@philipz
philipz / Readme.md
Last active April 5, 2022 18:53
GitLab Runner on a Kubernetes cluster
  1. Create namespace.yaml
apiVersion: v1
kind: Namespace
metadata:
  name: gitlab
  1. kubectl create -f ./namespace.yaml
@mrbar42
mrbar42 / README.md
Last active February 25, 2026 23:47
bash scripts to create VOD HLS stream with ffmpeg almighty (tested on Linux and OS X)

running:

bash create-vod-hls.sh beach.mkv

will produce:

    beach/
      |- playlist.m3u8
 |- 360p.m3u8
@mondain
mondain / public-stun-list.txt
Last active March 12, 2026 05:38
Public STUN server list
23.21.150.121:3478
iphone-stun.strato-iphone.de:3478
numb.viagenie.ca:3478
s1.taraba.net:3478
s2.taraba.net:3478
stun.12connect.com:3478
stun.12voip.com:3478
stun.1und1.de:3478
stun.2talk.co.nz:3478
stun.2talk.com:3478
@protrolium
protrolium / ffmpeg.md
Last active March 13, 2026 07:55
ffmpeg guide

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

You can get the list of installed codecs with:

@lleo
lleo / html5-video-streamer.js
Last active September 2, 2020 13:42
This is an enhancement to Gist#1993068 https://gist.github.com/paolorossi/1993068 . I found what was needed to demonstrate a functioning video stream was a HTML file with a <video> tag pointing to the streamer.
#!/usr/bin/env node
/*
* Inspired by: http://stackoverflow.com/questions/4360060/video-streaming-with-html-5-via-node-js
* Modified from https://gist.github.com/paolorossi/1993068
*/
var http = require('http')
, fs = require('fs')
, util = require('util')
@kanru
kanru / Android.mk
Created January 6, 2012 04:16
Android GPS using libhardware
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
gps_test.cpp
LOCAL_SHARED_LIBRARIES := \
libcutils libhardware
LOCAL_MODULE:= test-gps