Mod Archive Forums Mod Archive Forums
Advanced search  

News:

Please note: Your main modarchive.org account will not work here, you must create a forum account to post on the forums.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - eastwind

Pages: [1]
1
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


Pages: [1]