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.

Pages: [1]   Go Down

Author Topic: Milktytracker Linux command for automatic export to wav  (Read 5634 times)

0 Members and 1 Guest are viewing this topic.

eastwind

  • New User
  • Offline Offline
  • Posts: 1
    • View Profile
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 :
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

Logged

pailes

  • Milkytracker Moderator
  • Rising Star
  • *
  • Offline Offline
  • Posts: 287
    • View Profile
Re: Milktytracker Linux command for automatic export to wav
« Reply #1 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.
Logged

Deltafire

  • Milkytracker Moderator
  • Rising Star
  • *
  • Offline Offline
  • Posts: 195
    • View Profile
Re: Milktytracker Linux command for automatic export to wav
« Reply #2 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.
Logged
Pages: [1]   Go Up