jbilcke-hf HF staff commited on
Commit
78d82f1
·
1 Parent(s): f959c73
Files changed (2) hide show
  1. scripts/download_fresh_music.sh +2 -2
  2. start.sh +2 -2
scripts/download_fresh_music.sh CHANGED
@@ -1,7 +1,7 @@
1
 
2
  echo "Downloading music files.."
3
- cd $WEBTV_AUDIO_STORAGE_PATH_CHANNEL_1
4
  wget https://www.dropbox.com/s/fzxqbu87ul3ctqa/pack1.zip
5
  unzip -o pack1.zip -d .
 
 
6
  rm -Rf __MACOSX
7
- rm pack1.zip
 
1
 
2
  echo "Downloading music files.."
 
3
  wget https://www.dropbox.com/s/fzxqbu87ul3ctqa/pack1.zip
4
  unzip -o pack1.zip -d .
5
+ cp *.m4a $WEBTV_AUDIO_STORAGE_PATH_CHANNEL_1
6
+ mv *.m4a $WEBTV_AUDIO_STORAGE_PATH_CHANNEL_2
7
  rm -Rf __MACOSX
 
start.sh CHANGED
@@ -11,8 +11,8 @@ node ./media-server.js &
11
  sleep 1
12
 
13
  # background process that creates an audio stream from audio files
14
- # bash scripts/audio1.sh &
15
- # bash scripts/audio2.sh &
16
 
17
  # background process that creates a video stream from video files
18
  bash scripts/video1.sh &
 
11
  sleep 1
12
 
13
  # background process that creates an audio stream from audio files
14
+ bash scripts/audio1.sh &
15
+ bash scripts/audio2.sh &
16
 
17
  # background process that creates a video stream from video files
18
  bash scripts/video1.sh &