Browse Source

icecast format conversions

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

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

@@ -122,10 +122,10 @@ function icecast_convert_files {
122 122
     cd ${1}
123 123
 
124 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 "${f/%mp3/ogg}' '{}' \;
125
+    find . -type f -name '*.mp3' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogg}"' '{}' \;
126 126
 
127 127
     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 "${f/%mp4/ogv}' '{}' \;
128
+    find . -type f -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogv}"' '{}' \;
129 129
 
130 130
     chown -R icecast2:icecast $ICECAST_DIR
131 131
 }