Diff of Services/Stream/Multicasting at 48f075d

diff --git a/services/stream/multicasting.myco b/services/stream/multicasting.myco
index cd471da..3c53693 100644
--- a/services/stream/multicasting.myco
+++ b/services/stream/multicasting.myco
@@ -2,7 +2,11 @@ In the spirit of POSSE, accessibility, and a general love of tinkering, when I s
 
-https://obsproject.com/
-https://github.com/sorayuki/obs-multi-rtmp
-https://github.com/arut/nginx-rtmp-module
+So the steps in a nutshell are:
 
-Settings these up in that streamed to those three services was more of a project then I thought it would be, So here is a quick rundown of the process I used to streaming to multiple places. Feel free to edit this wiki if there is a better way.
+1. Install/Build OBS: https://obsproject.com/wiki/install-instructions#linux
+2. Add the multi-rtmp-plugin: https://github.com/sorayuki/obs-multi-rtmp
+3. Optional: Setup Nginx to take some pressure off your streaming computer: https://github.com/arut/nginx-rtmp-module
+
+Settings these tools up in a way that streamed to those three services was more of a project then I thought it would be (I setup ngnxrtmp first but a bug prevented it from multicasting to peertube, which is the place I wanted to stream to the most)
+
+So for posterity here is a quick rundown of the process I used to stream to multiple places. Feel free to edit this if you find spelling errors or just generally hate 
 
@@ -10,3 +14,3 @@ I am going to assume you are using a fresh uptaded and empty linux machine runni
 
-install nvidia stuffz
+install nvidia stuffz 
 
@@ -59 +63,35 @@ nano ./ci/install_ubuntu.sh
 
+## edit file so it looks right. remove the weird ubuntu stuffs
+## make it so it looks like below:
+
+---
+
+#!/usr/bin/bash
+
+set -eux
+
+: "${OBS_INCLUDE_DIR:=/usr/include/obs}"
+: "${OBS_API_SRC_URL:=https://raw.githubusercontent.com/obsproject/obs-studio/#OBS_VER#/UI/obs-frontend-api/obs-frontend-api.h}"
+
+#sudo add-apt-repository -y ppa:obsproject/obs-studio
+#sudo apt-get update
+#sudo apt-get install -y mesa-common-dev obs-studio qtbase5-dev qtdeclarative5-dev
+
+obs_ver=$(obs -V)
+obs_ver=${obs_ver//-/ }
+obs_ver=($obs_ver)
+obs_ver=${obs_ver[2]}
+
+curl -fsSLo /tmp/obs-frontend-api.h "${OBS_API_SRC_URL//#OBS_VER#/$obs_ver}"
+sudo mkdir -p "$OBS_INCLUDE_DIR/UI/obs-frontend-api"
+sudo mv /tmp/obs-frontend-api.h "$OBS_INCLUDE_DIR/UI/obs-frontend-api"
+
+---
+
+## resume by running ubuntu scrip
+
+./ci/install_ubuntu.sh
+INSTALL=1 ./build_linux.sh
+
+## open obs test
+