Spaces:
Build error
Build error
File size: 621 Bytes
07ae658 a62cf6a 07ae658 6ac357b 92fa81d 6ac357b 07ae658 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#!/bin/bash
echo "creating the storage folders.."
mkdir -p $WEBTV_VIDEO_STORAGE_PATH
mkdir -p $WEBTV_VIDEO_STORAGE_PATH_NEXT
mkdir -p $WEBTV_AUDIO_STORAGE_PATH
echo "creating the playlists.."
echo "ffconcat version 1.0" > list_a.txt
echo "ffconcat version 1.0" > list_b.txt
echo "ffconcat version 1.0" > audio_list_a.txt
echo "ffconcat version 1.0" > audio_list_b.txt
echo "file 'list_b.txt'" >> list_a.txt
echo "file 'list_a.txt'" >> list_b.txt
echo "file 'audio_list_b.txt'" >> audio_list_a.txt
echo "file 'audio_list_a.txt'" >> audio_list_b.txt
echo "create the named pipes.."
mkfifo video.pipe
mkfifo audio.pipe
|