Browse Source

Remove source stream files after conversion

Bob Mottram 7 years ago
parent
commit
0f5803abc9
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      src/freedombone-app-icecast

+ 2
- 0
src/freedombone-app-icecast View File

123
 
123
 
124
     echo $'Converting any mp3 files to ogg format'
124
     echo $'Converting any mp3 files to ogg format'
125
     find . -type f -name '*.mp3' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogg}"' '{}' \;
125
     find . -type f -name '*.mp3' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogg}"' '{}' \;
126
+    find . -name "*.mp3" -print0 | xargs -0 rm -f
126
 
127
 
127
     echo $'Converting any mp4 files to ogv format'
128
     echo $'Converting any mp4 files to ogv format'
128
     find . -type f -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogv}"' '{}' \;
129
     find . -type f -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogv}"' '{}' \;
130
+    find . -name "*.mp4" -print0 | xargs -0 rm -f
129
 
131
 
130
     chown -R icecast2:icecast $ICECAST_DIR
132
     chown -R icecast2:icecast $ICECAST_DIR
131
 }
133
 }