Skip to content

Instantly share code, notes, and snippets.

View drush's full-sized avatar

Darren Rush drush

View GitHub Profile
@drush
drush / README.md
Created August 5, 2021 23:46 — forked from mrbar42/README.md
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
@drush
drush / elasticsearch_install.sh
Last active December 13, 2015 23:19 — forked from rajraj/es.sh
Install elasticsearch on a fresh Centos6 box
cd ~
sudo yum update
sudo yum install java-1.7.0-openjdk.i686 unzip wget -y
wget http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.20.5.zip -O elasticsearch.zip
export ES_HOME=/opt/elasticsearch
sudo unzip elasticsearch.zip -d $ES_HOME
rm elasticsearch.zip