1
MilkyTracker Feature Requests / Milktytracker Linux command for automatic export to wav
« on: October 30, 2008, 23:59:57 »
On Milkytracker , there is the function to export a module to .wav
As I m on GNU / Linux , I use the bash shell for doing repeatitive task ,
On linux there is some tools like oggenc for encoding a wav to ogg (or other tools for convert wav to mp3 and so on .) . So it s easy to write a script for exemple to convert all my wav from a directory into ogg :
I would like to request if it s possible to have also the milkytracker feature converting module into wav , in a form of bash command like oggenc
so all can be as easy as oggenc
thankx
As I m on GNU / Linux , I use the bash shell for doing repeatitive task ,
On linux there is some tools like oggenc for encoding a wav to ogg (or other tools for convert wav to mp3 and so on .) . So it s easy to write a script for exemple to convert all my wav from a directory into ogg :
Code: [Select]
for i in *.wav; do oggenc -q 6 "$i" "`basename "$i" .wav` .ogg"; done ;
I would like to request if it s possible to have also the milkytracker feature converting module into wav , in a form of bash command like oggenc
so all can be as easy as oggenc
thankx