File size: 774 Bytes
07ae658
 
0b2f8ce
 
 
 
07ae658
d55f434
 
f071343
0b2f8ce
c9f8f7f
 
6ac357b
0b2f8ce
 
 
 
 
 
c9f8f7f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# ------------- CHANNEL 1 --------------
echo "creating the storage folders for channel 1.."
mkdir -p $WEBTV_VIDEO_STORAGE_PATH_CHANNEL_1
mkdir -p $WEBTV_AUDIO_STORAGE_PATH_CHANNEL_1

# this is pointless as right now we cannot easily inject the audio track
# bash downloadmusic.sh

echo "creating the playlists for channel 1.." 
echo "ffconcat version 1.0" > channel_1_video.txt
echo "ffconcat version 1.0" > channel_1_audio.txt

# ------------- CHANNEL 2 --------------
echo "creating the storage folders for channel 2.."
mkdir -p $WEBTV_VIDEO_STORAGE_PATH_CHANNEL_2
mkdir -p $WEBTV_AUDIO_STORAGE_PATH_CHANNEL_2

echo "creating the playlists for channel 2.." 
echo "ffconcat version 1.0" > channel_2_video.txt
echo "ffconcat version 1.0" > channel_2_video.txt