瀏覽代碼

Remove source stream files after conversion

Bob Mottram 7 年之前
父節點
當前提交
0f5803abc9
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      src/freedombone-app-icecast

+ 2
- 0
src/freedombone-app-icecast 查看文件

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
 }