Main Menu

Recent posts

#11
Help and Questions / Re: How to install via ppa / l...
Last post by Saga Musix - September 05, 2023, 13:01:01
We do not provide any PPAs. As Armbian is based on Debian, you should be able to just use their official packages for libopenmpt and related packages (see e.g. https://packages.debian.org/source/sid/libopenmpt). If the version included in your Armbian/Debian version is too old, you will have to compile it yourself.
#12
Help and Questions / How to install via ppa / linux...
Last post by deenbee - September 03, 2023, 23:16:52
I need a ppa from launchpad , how to install??

I need a build deb , for armhf

but need a ppa code to install via terminal
#13
Help and Questions / Re: MIDI Import No Longer Assi...
Last post by Saga Musix - August 30, 2023, 14:02:48
You'll need to load a soundfont or individual instruments into the MIDI library.
#14
Help and Questions / MIDI Import No Longer Assignin...
Last post by Immorpher - August 30, 2023, 02:28:43
Hello! I have been using OpenMPT to convert midis to tracker formats as some of the software I use works better with tracker. I had it working for a while, but it's no longer working. Now the midi soundfont samples are no longer being assigned to the midis when I open them.

I think I may have moved the soundfont which initially caused this issue. Now when I add the soundfont as a sound bank it doesnt solve the issue. I forgot how I got it to work in the first place and a lot of the google searches are giving results from much older versions of OpenMPT on the midi setup.

Thank you to anyone who posts ideas!
#15
Help and Questions / Re: export batch of xm how doi...
Last post by diigitae - August 29, 2023, 20:13:59
openmpt123 --render --samplerate 44100 '/home/ju/Bureau/chanson/anarchy.xm.AutoSave.20190410.195957.xm' '/home/ju/Bureau/chanson/anarchy.xm.AutoSave.20190410.223917.xm' '/home/ju/Bureau/chanson/ask your self.xm' '/home/ju/Bureau/chanson/Dystopie.xm'

this code works thanks


#16
Help and Questions / Re: export batch of xm how doi...
Last post by Saga Musix - August 29, 2023, 18:59:56
Quotehow do i select a folder i don't seen any command for that

You can either create a playlist (M3U or PLS format), or use the respective shell mechanisms of your Linux distribution (I believe glob patters can expand into multiple files being passed to the same executable?) or Windows.

Here's a sample batch file for Windows:
for /R %%F in (*.xm) do (
"path\to\openmpt123.exe" --output-type flac <other options...> "%%F"
)

Other --output-type options are available, see --help for for the available formats.
#17
Help and Questions / Re: export batch of xm how doi...
Last post by diigitae - August 29, 2023, 18:58:31
i succeed into playing the file withe the terminal but not to change the fortam from xm to wav


openmpt123  samplerate 44100 batch render  '/home/ju/Bureau/chanson/anarchy.xm.AutoSave.20190410.195957.xm' '/home/ju/Bureau/chanson/anarchy.xm.AutoSave.20190410.223917.xm' '/home/ju/Bureau/chanson/ask your self.xm' '/home/ju/Bureau/chanson/Dystopie.xm'
#18
Help and Questions / Re: export batch of xm how doi...
Last post by diigitae - August 29, 2023, 18:45:23
how do i select a folder i don't seen any command for that
#19
Help and Questions / Re: export batch of xm how doi...
Last post by Saga Musix - August 29, 2023, 18:25:00
You can run openmpt123 --help from the command line to get an overview of all supported options - that's all there is regarding documentation.
#20
Help and Questions / Re: export batch of xm how doi...
Last post by diigitae - August 29, 2023, 17:36:20
does it have some manual somewhere with openmpt123