sfArk to sf2 converter
Moderators: raboof, MattKingUSA, khz
- raboof
- Established Member
- Posts: 1865
- Joined: Tue Apr 08, 2008 11:58 am
- Location: Deventer, NL
- Has thanked: 52 times
- Been thanked: 80 times
- Contact:
sfArk to sf2 converter
I'm happy to announce sfArkXTm for beta testing!
This was heavily based on code generously open-sourced by Andy Inman of MelodyMachine.com.
* https://github.com/raboof/sfArkXTm
* https://github.com/raboof/sfArkLib
Let me know about any positive or negative experiences - the build parameters might need some tweaking, but I've done some testing on several machines and things are looking pretty good already!
This was heavily based on code generously open-sourced by Andy Inman of MelodyMachine.com.
* https://github.com/raboof/sfArkXTm
* https://github.com/raboof/sfArkLib
Let me know about any positive or negative experiences - the build parameters might need some tweaking, but I've done some testing on several machines and things are looking pretty good already!
Re: sfArk to sf2 converter
Here an instruction for installing for Debian / Ubuntu based systems:
http://blogs.fsfe.org/samtuke/?p=589
For those who like it more simple, like me, an online conversion:
https://cloudconvert.org/sfark-to-sf2
http://blogs.fsfe.org/samtuke/?p=589
For those who like it more simple, like me, an online conversion:
https://cloudconvert.org/sfark-to-sf2
Re: sfArk to sf2 converter
None of this works for me. The git repository demands user/password credentials, which I don't have, and the online converter fails with all the files I have here.
- raboof
- Established Member
- Posts: 1865
- Joined: Tue Apr 08, 2008 11:58 am
- Location: Deventer, NL
- Has thanked: 52 times
- Been thanked: 80 times
- Contact:
Re: sfArk to sf2 converter
It should only require credentials if you want to use a protocol that allows write access. I.e. 'git clone http://github.com/raboof/sfArkLib' should work without credentials.Luc wrote:None of this works for me. The git repository demands user/password credentials, which I don't have, and the online converter fails with all the files I have here.
Re: sfArk to sf2 converter
OK, it works. Thanks. But note that the instructions on http://blogs.fsfe.org/samtuke/?p=589 are different:
git clone https://github.com/raboof/sfArkLib.github
You recommend:
git clone http://github.com/raboof/sfArkLib
Your way works, the other doesn't.
But then I run 'make' and get this error:
I installed zlibc, but maybe that is not enough?
git clone https://github.com/raboof/sfArkLib.github
You recommend:
git clone http://github.com/raboof/sfArkLib
Your way works, the other doesn't.
But then I run 'make' and get this error:
Code: Select all
g++ -fPIC -D__LITTLE_ENDIAN__ -Wall -Wextra -c -o sfklCoding.o sfklCoding.cpp
sfklCoding.cpp:49:18: fatal error: zlib.h: No such file or directory
#include "zlib.h"
^
compilation terminated.
<builtin>: recipe for target 'sfklCoding.o' failed
make: *** [sfklCoding.o] Error 1
- raboof
- Established Member
- Posts: 1865
- Joined: Tue Apr 08, 2008 11:58 am
- Location: Deventer, NL
- Has thanked: 52 times
- Been thanked: 80 times
- Contact:
Re: sfArk to sf2 converter
Thanks for noticing. I added some comments on that blog.Luc wrote:But note that the instructions on http://blogs.fsfe.org/samtuke/?p=589 are different
Correct: for compiling you alzo need the development headers (found in the zlib1g-dev package on Debian, probably the same on Ubuntu).Luc wrote:I installed zlibc, but maybe that is not enough?