vArranger Forums

English => The vArranger² Software Forum => Topic started by: cirerenrut on June 11, 2015, 04:49:27 PM

Title: Roland phantom x6. SF2
Post by: cirerenrut on June 11, 2015, 04:49:27 PM
Hi music lovers
I purchased the above to implement in vArranger and I have run into a brick wall!!!!. I down loaded the phantom INS file and it is displayer in vArranger. As the Roland .sf2 files are all in folders eg piano, guitar, strings etc, I copied a few pianos out there folder and placed them into the samples folder in vArranger expecting to see them when I ran vArranger but nothing appeared when I chose PIANOS except the normal vArrager pianos. Can some kind person please point me in the right direction.
On vArranger under the sounds folder there is an empty presets folder, what files goes in there?.
Any help would be appreciated.
Eric   
Title: Re: Roland phantom x6. SF2
Post by: Dan on June 11, 2015, 05:13:02 PM
Where did you buy this?
Title: Re: Roland phantom x6. SF2
Post by: Dan on June 11, 2015, 05:17:29 PM
You can post or send me one sf2 file, so I will see if the bank and program change are well defined in the SF2 file, or they have put all at 0
If it is set at 0, you will only have one sound, it will replace the first piano sound
Title: Re: Roland phantom x6. SF2
Post by: cirerenrut on June 11, 2015, 06:14:10 PM
I bought from a company called norCtrack. The first piano file So True is 76 MB and does not seem to want to post.
Eric
Title: Re: Roland phantom x6. SF2
Post by: Dan on June 11, 2015, 06:15:05 PM
Do you still have the vArranger Software Synthesizer as the MIDI OUT 1 ?
Title: Re: Roland phantom x6. SF2
Post by: cirerenrut on June 11, 2015, 06:19:26 PM
Dan
I forgot to mention the piano files have A001 for the first twelve piano voices and the F001 to F026 for the remaining.
Eric
Title: Re: Roland phantom x6. SF2
Post by: cirerenrut on June 11, 2015, 06:22:51 PM
Yes I think so.
Title: Re: Roland phantom x6. SF2
Post by: Dan on June 11, 2015, 06:41:42 PM
You can run the http://www.varranger.com/support.exe   so I can check on your computer this thing
Title: Re: Roland phantom x6. SF2
Post by: cirerenrut on June 11, 2015, 07:09:49 PM
Dan are in?.
Title: Re: Roland phantom x6. SF2
Post by: Dan on June 11, 2015, 07:36:37 PM
Yes :)
Title: Re: Roland phantom x6. SF2
Post by: Dan on June 11, 2015, 07:37:55 PM
norcrack has set every sound with the same program change 0  and Bank 0   so you vArranger will load only one sound

Maybe you can ask them to put the right program change number in the SF2 files, like it was in the original keyboard?
Title: Re: Roland phantom x6. SF2
Post by: v.muller on June 11, 2015, 08:09:37 PM
Tyros 4 soundfonts from Live Styler contains the MSB-LSB-PC in the name of the sf2 file.
For example "104-2-94-WarpedWave.sf2" or "127-0-48-SymphonyKi.sf2"
One instrument for a file.

Could you test the name of the file, and if it has this stucture,
(and contains only one instrument), then use it instead of the preset codes?
Title: Re: Roland phantom x6. SF2
Post by: v.muller on July 22, 2015, 07:38:46 PM
Hallo Dan
Have you thought about my idea?
Check if the Soundfont file name contains MSB-LSB-PC structure
and if yes, then use it.
It would be easily user customizable.
Title: Re: Roland phantom x6. SF2
Post by: Lylo on July 24, 2015, 07:46:57 AM
VIENA : http://www.synthfont.com/Downloads.html

(https://www.varranger.com/vforum/index.php?action=dlattach;topic=2154.0;attach=1345)
Title: Re: Roland phantom x6. SF2
Post by: v.muller on July 24, 2015, 07:57:05 PM
I know the program and I use it, but it would be easier to simply change file name.

There is other problem:
SF2 only have BANK0(MSB) and PROGRAM CHANGE

If you want to set a BANK32(LSB),
you need to write it in the sound name.

For example:
"104-2-94-WarpedWave.sf2"
Bank: 104
Preset: 94
Name: 94@WarpedWave

But for example I have complete Tyros4 soundfonts
from Live styler (unencrypted), it means 1827 sf2 files.
All of them contain the MSB-LSB-PC in the file name
but the preset codes are others and should be manualy changed.
Title: Re: Roland phantom x6. SF2
Post by: Lylo on July 24, 2015, 08:13:03 PM
You have some sofwares utility for batch rename, with that it's easy to put bank number in each name.
Title: Re: Roland phantom x6. SF2
Post by: v.muller on October 18, 2015, 10:54:44 AM
MS Excel + macro

Something like this:
------------------------------------------------
Sub rename_files()
' In cell A1 must be a full directory path
' In column A - original file names
' In column B - new filenames

    a = Cells(1, 1)
    If Right(a, 1) <> "\" Then a = a + "\": Cells(1, 1) = a
   
    r = 2
    Do While Cells(r, 1) <> ""
    Name a + Cells(r, 1) As a + Cells(r, 2)
    Cells(r, 3) = "OK"
    r = r + 1
    Loop
End Sub
Title: Re: Roland phantom x6. SF2
Post by: ElTyros on October 21, 2015, 05:59:05 AM
Hello

Do you know "AntRenamer" ?

http://www.antp.be/software/renamer/fr
Title: Re: Roland phantom x6. SF2
Post by: v.muller on October 21, 2015, 07:13:58 PM
It's an interesting program.
I use similar function in Total Commander for such renaming.

My solution allows you to rename files as needed.
Any file can be renamed to anything.

Here is another macro that create lists of the files in defined folder.

-------------------------------------------------------------------

Sub List_of_files()
'Lists directory contents.
'The full directory path must be in the cell A1

    a = Cells(1, 1)
    If Right(a, 3) = "*.*" Then a = Left(a, Len(a) - 3): Cells(1, 1) = a
    If Right(a, 1) <> "\" Then a = a + "\": Cells(1, 1) = a
    r = 2
    S = Dir(a)
    Do
       If S <> "" Then Cells(r, 1) = S
       r = r + 1
       S = Dir
   Loop While S <> ""
   Columns("A:A").Select
   Selection.Sort Key1:=Range("A2"), Order1:=xlAscending, Header:=xlYes, _
   OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
   Selection.ColumnWidth = 26
   Range("B2").Select
End Sub
Title: Re: Roland phantom x6. SF2
Post by: charlys44 on December 30, 2015, 09:51:12 AM
I have exactly the same problem: I have many SoundFonts from Live-Styler that I want to reuse. But many of them use 0-0-0 as address (msb-lsb-programchange). So it is hard or impossible to find them in the "INS"-Window of vArranger. The current version of vArranger seems to not support this file renaming scheme. Does anybody know of a tool how I could change the "mapping" of the sound fonts into vArranger. It is also very cumbersome to save each of them seperately in a track - as there are many files.
Title: Re: Roland phantom x6. SF2
Post by: Dan on December 30, 2015, 12:56:02 PM
You need to use a SF2 editor, like polyphone.fr to change the program number and bank number of each sound

Many sounds can be inside one sf2 file, so the file naming solution to define a program change number was not selected

You can also define a MSB and a style brand for each sf2 preset. Let me know if you need me to explain it