media-server / start.sh
jbilcke-hf's picture
jbilcke-hf HF staff
trying something
92fa81d
raw
history blame
472 Bytes
#!/bin/bash
# initialize the stream pipes
bash ./scripts/init.sh
# ------ background processes ---------
# starts the streaming server
node ./media-server.js &
sleep 1
# background process that creates an audio stream from audio files
# bash scripts/audio.sh &
# background process that creates a video stream from video files
bash scripts/video.sh &
sleep 1
# background process that sends data to the media server
bash scripts/stream.sh &
sleep 1
npm run start