FlacToOgg: be quiet

This commit is contained in:
Sebastian Krzyszkowiak 2017-09-09 00:59:23 +02:00
parent a906b14e08
commit e5b3d67e50

View file

@ -1,7 +1,6 @@
file(GLOB_RECURSE FLAC_FILES RELATIVE ${DATADIR} ${DATADIR}/*.flac) file(GLOB_RECURSE FLAC_FILES RELATIVE ${DATADIR} ${DATADIR}/*.flac)
foreach(file IN LISTS FLAC_FILES) foreach(file IN LISTS FLAC_FILES)
message(${file}) execute_process(COMMAND oggenc -Q -b 192 --resample 44100 ${file} WORKING_DIRECTORY ${DATADIR})
execute_process(COMMAND oggenc -b 192 --resample 44100 ${file} WORKING_DIRECTORY ${DATADIR})
file(REMOVE ${DATADIR}/${file}) file(REMOVE ${DATADIR}/${file})
endforeach(file) endforeach(file)