Mod Archive Forums

Music Production => MilkyTracker => Tracking => MilkyTracker Feature Requests => Topic started by: eastwind on October 30, 2008, 23:59:57

Title: Milktytracker Linux command for automatic export to wav
Post by: eastwind 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 :
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

Title: Re: Milktytracker Linux command for automatic export to wav
Post by: pailes on October 31, 2008, 17:19:27
I would suggest writing an appropriate command line utility with the included libmilkyplay rather than including this into MilkyTracker.
Title: Re: Milktytracker Linux command for automatic export to wav
Post by: Deltafire on April 05, 2009, 23:57:12
I think this has already been done in the milkyplay utility included with the Debian package..  If not, it's a trivial modification.