Skip to content
Snippets Groups Projects
Commit 0f5803ab authored by Bob Mottram's avatar Bob Mottram
Browse files

Remove source stream files after conversion

parent a19a8df2
No related branches found
No related tags found
No related merge requests found
......@@ -123,9 +123,11 @@ function icecast_convert_files {
echo $'Converting any mp3 files to ogg format'
find . -type f -name '*.mp3' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogg}"' '{}' \;
find . -name "*.mp3" -print0 | xargs -0 rm -f
echo $'Converting any mp4 files to ogv format'
find . -type f -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogv}"' '{}' \;
find . -name "*.mp4" -print0 | xargs -0 rm -f
chown -R icecast2:icecast $ICECAST_DIR
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment