Skip to content

Instantly share code, notes, and snippets.

View rbenaley's full-sized avatar

Richard Ben Aleya rbenaley

  • Scalable Solutions
  • Belgium
View GitHub Profile
@STrRedWolf
STrRedWolf / Stream_wolftv.sh
Created May 6, 2013 03:10
This is how to stream live video and transmux it to HTTP Live Streaming. Requires ffmpeg 1.2 or greater (no forked libav crap, it must be genuine original ffmpeg. Compile it yourself on Debian & Ubuntu!)
#!/bin/bash
rtmpdump -r 'rtmp://wolf.tv.macrophile.com/oflaDemo/wolftv' -v -q | \
ffmpeg -i pipe: -bsf h264_mp4toannexb -codec copy -map 0 -f ssegment \
-segment_list test.m3u8 -segment_time 4 -segment_wrap 24 \
-segment_format mpegts -segment_list_type hls stream%05d.ts
@ToddG
ToddG / rebar-reltool-relase-notes.md
Created September 15, 2012 16:46
using rebar to create an erlang app with a dependency, and then starting a release created with reltool

Summary

I'm trying to figure out how to use rebar to:

  • create erlang project
  • add a dependency on an erlang module from github
  • start the app via the erl console
  • create a release and start the app from the release (via the generated scripts)