Free Performance Styles for PSR/Genos

Been a while since I’ve posted. 🙂 That means I’ve been busy with a few hunker-down, wintertime projects.

At long last, I pulled together the second version of my “Performance Styles for PSR/Genos” collection. The second version has all of the V1 styles plus a dozen new V2 styles.

The V1 styles were translated from Motif XS/MOX Performances to Tyros/PSR. If you would like to read about the translation process, check these links:

These articles are still a good read if you are interested in creating original styles of your own. There is a short Getting Started With Style Files post, too.

The V1 style files target PSR-S950, which by now is old hat. So, the original V1 styles should be reasonably compatible with any post-S950 arranger.

The V2 style files take the collection into new territory. The V2 styles include contemporary genres like downtempo and make wide use of DSP insert effects. I developed the styles on Genos (gen 1) which supports a single insert effect on each style part. The V2 styles are compatible with Genos2. Some voices and DSP effects may not be supported by earlier arrangers. Genos1 still leads the pack in many dimensions!

Nonetheless, I encourage you to download the new collection. You might need to re-voice a style part or two and maybe redirect the DSP units which are available on your music machine. The styles are SFF1 even though a few new styles use Mega Voice. Being SFF1, you should be able to edit the styles with Mixmaster or any of the wonderful tools created by Jørgen Sørensen. I owe Jørgen a debt of gratitude since his CASM editor, OTS editor and Style Split/Splice programs are essential tools for any style developer.

Download Performance Styles for PSR/Genos (Version 2). The ZIP file includes a README text file. Be sure to check it out.

Copyright © 2024 Paul J. Drongowski

Insertion effects for MIDI songs

The new Yamaha Genos™ platform greatly expands the number of DSP insertion effects for styles and MIDI songs. No doubt, you would like to put these insertion effects to work in your own styles and MIDI songs. This blog post should help you get started.

There are 28 insertion effect units at your disposal:

  1. Insertion Effect 1 to 19: Keyboard parts (RIGHT1, etc.) and Song channels 1 to 16.
  2. Insertion Effect 20: Microphone and Song channels 1 to 16.
  3. Insertion Effect 21 to 28: Style Parts (except Audio Styles).

Within the constraints of these three groups, any Insertion Effect unit within a group may be assigned to any audio source associated with the group.

I will use the terms “Insertion Effect” and “DSP effect” interchangeably. This is true when you delve into the Yamaha XG parameters, too.

With all this flexibility, effect resource management can easily get out of control. I’ve developed a few personal guidelines to help keep things organized:

  • Genos assigns RIGHT1, RIGHT2, RIGHT3, and LEFT to Insertion Effects 16, 17, 18 and 19. Avoid using these Insertion Effect units in a MIDI Song.
  • Assign the remaining Insertion Effect units on a 1-to-1 corresponding basis: DSP unit 1 to Song part 1, DSP unit 2 to Song part 2, etc.

These simple guidelines make it easier to manage track DSP usage when doing the busy-work of Song editing.

Genos also provides a Variation Effect which can be configured as either a System effect or an Insertion Effect. Let’s not even go there for now. The Variation Effect offers additional opportunities for signal routing and control. Unfortunately, opportunity comes at the cost of complicated configuration.

If you want more information about using the Variation Effect, here’s a pair of blog posts for you: PSR/Tyros XG effects and XG effects: SYSTEM mode.

It’s simple then — each DSP unit (Insertion Effect) corresponds to a single Song part. Each unit and its part have the same identifying number.

If you’re sequencing on the Genos itself, you can assign Insertion Effects to Style and Song parts using the Mixer. Go to the Mixer, touch the “Effect” tab at the Left of the screen, and then touch the “Assign Part Setting” button. Genos displays the insertion effect assignment dialog box where you can make assignments. This dialog box is a good way to check that your MIDI sequence is making the correct assignments, too.

I do my MIDI sequencing and editing in BandLab Technologies SONAR (formerly Cakewalk SONAR). This means configuring DSP effects via System Exclusive (SysEx) MIDI messages. Many people fear SysEx because the messages are encoded in hexadecimal numbers. Fear not! I’m going to give you a head start.

At a minimum, we need to create two SysEx messages for each Insertion Effect:

  1. One message to assign the DSP unit to the Song part, and
  2. One message to select the DSP effect type (e.g., British Legend Blues).

This is enough to assign a DSP effect preset (and its algorithm) to a Song part. Once assigned and the MIDI sequence is loaded, you can edit the effect parameters in the Genos GUI by spinning the faux knobs and such. When you hear a setting that you like, you can translate the settings into additional SysEx messages and incorporate the messages into the sequence using a DAW like SONAR.

First things first. The SysEx message to assign the DSP unit to a Song part has the form:

F0 43 10 4C 03 XX 0C YY F7

where XX is the DSP (Insertion Effect) unit number and YY is the Song part number. The only potential gotcha is MIDI unit and part numbering — it starts from zero instead of one. For example, let’s assign DSP unit 6 to MIDI part 6. (I’m assuming that the MIDI part and channel numbers are the same; the usual default situation.) In this example, XX=5 and YY=5, so the final SysEx message is:

F0 43 10 4C 03 05 0C 05 F7

Straightforward.

You may already be aware that hexadecimal (hex) is a way of counting (i.e., representing numeric quantities) in base sixteen. The hex digits 0 to 9 have their usual meaning. Hex digits A, B, C, D, E, and F represent the numeric quantities 10, 11, 12, 13, 14, and 15, respectively, when those quantities are written in base 10, decimal notation. You’ll need those hex digits when connecting DSP units 10 to 16 and Song Parts 10 to 16.

In case you’re still unsure of yourself, here’s a simple table to help you out:

DSP#  Part#   SysEx message
----  -----   -----------------------------------
   1      1   F0 43 10 4C 03 00 0C 00 F7
   2      2   F0 43 10 4C 03 01 0C 01 F7
   3      3   F0 43 10 4C 03 02 0C 02 F7
   4      4   F0 43 10 4C 03 03 0C 03 F7
   5      5   F0 43 10 4C 03 04 0C 04 F7
   6      6   F0 43 10 4C 03 05 0C 05 F7
   7      7   F0 43 10 4C 03 06 0C 06 F7
   8      8   F0 43 10 4C 03 07 0C 07 F7
   9      9   F0 43 10 4C 03 08 0C 08 F7
  10     10   F0 43 10 4C 03 09 0C 09 F7
  11     11   F0 43 10 4C 03 0A 0C 0A F7
  12     12   F0 43 10 4C 03 0B 0C 0B F7
  13     13   F0 43 10 4C 03 0C 0C 0C F7
  14     14   F0 43 10 4C 03 0D 0C 0D F7
  15     15   F0 43 10 4C 03 0E 0C 0E F7
  16     16   F0 43 10 4C 03 0F 0C 0F F7

Find the row in the table for the Insertion Effect (DSP unit) number and Song Part that you want to configure. The third column is the SysEx message to use.

Once the DSP unit is assigned to the Song Part, you need a SysEx message to choose the DSP effect type (e.g., British Lead Dirty). The SysEx message to accomplish this job has the form:

F0 43 10 4C 03 XX 00 MM LL F7

where XX is the DSP unit number, MM is the MSB of the effect type and LL is the LSB of the effect type. The effect types are listed in the Genos Data List PDF file. Look under the “Variation/Assertion Block” section of the Effect Type List. British Lead Dirty is a distortion effect with MSB=102 and LSB=32.

The next step is to convert the MSB and LSB to hexadecimal. I think this is the part that scares some folks the most. Actually, Yamaha have made it easy. While you’re in the Geno Data List PDF file, go to the first “MIDI Data Format” page. You’ll find a table that converts between decimal, hexadecimal and binary. Look up 102 and 32 in the table. The equivalent hex values are 0x66 and 0x20. (The “0x” is my way of marking hexadecimal values.)

After converting, it’s time to select the DSP effect type for unit 6 (and by way of assignment, Part 6). Plug XX=5, MM=66 and LL=20 into the template message above, producing:

F0 43 10 4C 03 05 00 66 20 F7

This message sets the effect type of DSP (Insertion Effect) 6 to British Lead Dirty.

That’s it. At this point, you’re ready to assign DSP preset effects to any of the Song parts. Style parts work the same way. No calculator involved, just a few easy tables.

Changing the DSP effect parameters via SysEx is a little bit more complicated. I’ll save that topic for another day.

Copyright © 2018 Paul J. Drongowski

Genos: Needed DSP improvements

I’ve really enjoyed playing Genos. The Super Articulation 2 (SArt2) voices take emulative synthesis to a new level of realism.

Although Yamaha have added the new rotary speaker effect to the Genos, there is still work needed to make the drawbar organ experience realistic and competitive with Hammond clones. Yamaha needs to bring the drawbar experience up to the same level as SArt2.

The current drawbar organ implementation is much the same as the previous Tyros and S-series drawbar organ mode. The drawbar signal chain consists of a tone generation stage followed by the rotary speaker effect:

                                 Rotary
    Drawbar tone generator ----> Speaker ----> Mixing Console
                                 Effect

The output is sent into the usual Genos/Tyros/PSR Mixing Control and system-level effects architecture.

The drawbar tone generator has an eight level volume control that determines the level of the pure drawbar signal. The user sets this level using a virtual drawbar in the drawbar mode graphical user interface (GUI). So, the signal that hits the input of the rotary speaker effect is constant at the level set by the user. In Genos-land, the foot pedal sets XG MIDI channel volume, i.e., changes the post-effect volume level of the organ’s channel in the Mixing Console.

Problem is, that’s not the way the real-world works. On a Hammond, for example, the foot pedal changes the signal level hitting the rotary speaker. The foot pedal does two things:

  1. It changes the overall volume level of the instrument (i.e., what the audience hears), and
  2. It changes the signal level hitting the rotary speaker pre-amp.

The second point is crucial for realism as the amount of pre-amp distortion changes with the signal level. A higher signal produces more distortion and a low-level signal is relatively clean.

The existing Genos drawbar implementation does not do this. The amount of distortion is set once and is constant. The amount of distortion does not change with the organ volume. The way the expression pedal changes channel volume sounds unnatural and is not realistic.

Many of us, including Uli and Stuart on the PSR Tutorial Forum, have tried to work around this problem. We also find the drive in the new rotary speaker effect to be, well, wimpy. So, we have tried inserting a distortion effect before the rotary speaker effect, etc. and have run into several limitations and roadblocks. These issues have to do with DSP effect chaining, access to DSP effect parameters and control of DSP effect parameters.

Here’s a short list of issues:

  • Be able to control the signal level from the drawbar tone generator into the rotary speaker drive effect. The distortion level must track the input level in order to accurately emulate real world distortion.
  • Be able to insert a distortion block between the drawbar tone generator and the rotary speaker in order to make up for the wimpy drive in the new rotary speaker effect.
  • Be able to edit parameters of a DSP effect when more than one DSP is assigned to a part. Only the last DSP in the chain is displayed in voice and can be edited. In Firmware v1.02, there was an edit button in DSP assignment dialog. Please bring this feature back. [Thanks for this one, Uli!]
  • Be able to edit more than 16 DSP effect parameters, including the missing parameters for the UNI COMP and new rotary speaker effect.
  • Be able to use the foot pedal to control all user controllable parameters for all DSP effects that have them, not just the WAH effect.
  • Provide access to the UNI COMP side-chain input, i.e., a way to connect a signal to the side-chain input.

Yamaha’s own engineers are getting ahead of the Genos developers by designing effect algorithms with more than 16 parameters, side-chain inputs and so forth. These features are currently hidden or inaccessible to Genos users. For example, we cannot change the slow-fast and fast-slow times of the rotor nor can we connect a signal into the side-chain input of the UNI COMP compressor.

The XG architecture has always provided for effect parameters which can be controlled by an assignable controller (e.g., AC1). Yet, the only two Genos effects which may practically be controlled in this way are the WAH effect and rotary speaker speed. Yamaha need to unleash the power of Genos’ assignable sliders, knobs and buttons by generalizing control. Please let us assign any MIDI controller to any parameter in any effect block. (Rotary speaker speed only affects the rotary speaker block in the drawbar signal chain.)

So, I hope Yamaha takes these suggestions into consideration and makes them part of a future update. These improvements would make Genos truly competitive against other premium-priced keyboards — clones, not just arrangers.

DSP effect signal flow

When Yamaha’s Genos developers design the graphical user interface (GUI) to manage chained DSP effects, they should call their colleagues at Line 6.

The Helix Native plug-in has a spiffy signal flow window (see image below) in which a Helix user creates and edits a virtual pedal board. The user creates effect blocks and interconnects them. Genos should have a similar visual interface for creating and managing DSP effects that are chained. Touching an effect block should open the detailed parameters for the block. The Genos touch panel would be a natural for this kind of interaction.

[Click image to enlarge.]

Slider value pick up

I have to thank Simon Sherbourne’s review of the Aturia KeyLab Essential for inspiring the following suggestion. His review appears in the February 2018 issue of Sound On Sound Magazine.

The Genos sliders are noticeably jumpy. Their behavior has prompted several complaints on the PSR Tutorial Forum.

Simon likes the value “take over” implemented in the Arturia KeyLab Essential. Quoting Simon’s review:

“Take over is always smooth. … Sliders take over using Ableton-style scaling. As soon as you move a slider the software knows where it is and draws a ‘ghost’ fader showing the hardware position. Any movement will produce relative adjustment of the mapped parameter until the physical and virtual sliders come together. Clever!”

The Arturia manual calls this “Pickup” behavior: “the faders in your DAW will gradually move to match the current position of the fader on your controller as it moves.”

Yamaha should add pickup behavior to the Genos sliders. Slider mode should be selectable by setting either a utility parameter or a controller function setting.

Genos: Position and promotion

The first public European demos started over the weekend. I’ve been watching Peter Baartmans and Sander Tournier put the Genos through its paces.

The whole experience has me thinking about how the Genos is being positioned in regional markets, mainly, western Europe versus North America.

First off, the arranger keyboard culture is completely different in Europe than the United States. Arranger demonstrations are big public events. One recent demo had over 500 attendees in the audience. In some venues, audience members buy tickets! This is unimaginable in the United States (except iPhone).

The European demos show off a broader range of styles. In this aspect, I’m comparing the European demos with videos made for American retailers (Guitar Center, Sweetwater, and Kraft Music). The European demos cover everything from jazz to rock to EDM to classical to traditional European pop. For the latter, think outdoor cafes and biergartens where you can spend hours with a few hundred like-minded souls. Not to mention that acquired taste, Schlager. (And that’s not a beer!)

The American demos concentrate on contemporary musical genres and styles. The Genos has new acoustic and pedal steel guitars, so Nashville and country get special emphasis. Martin Harris highlights the Kino strings coming more from a cinematic or singer-songwriter perspective. These are customers that Yamaha hopes to hook in North America. With all of its articulated sounds, the Genos is a mini-library of sampled instruments both pop and orchestral.

The American videos avoid any whiff of cheese. Unfortunately, many American listeners regard (too) many musical styles as “cheese” and the typical Guitar Center clientele are the worst offenders. Thus, you won’t hear traditional European pop in a video targeted for American retailers. In the U.S., arranger keyboards are regarded as the evil spawn of the cha-cha home organ. After playing Montage and hearing the Genos demos, a lot of folks need to adjust their thinking.

Yamaha run a risk, here, because on-line media is world-wide. I’m thinking about the videos for the Dexibell drawbar organ. A few people saw one video which didn’t fit their musical taste and bad-mouthed the Dexibell to high Heaven. They never moved on to the other videos which had some very tasty jazz.

At this point in the Genos launch, it’s a little difficult to dig out the deeper jazz, soul, R&B, and funk possibilities of the Genos. You need to wade through a lot of video to even get a sniff.

The customer base for high-end arranger keyboards is aging. Even the European audiences have a lot of “gray heads.” (I’m getting grayer by the day, too. 🙂 ) Yamaha and its dealers want to entice a younger crowd with arranger keyboards. But, they have a dilemma. A young person today does not have the disposable income for a $5,500 (USD street) keyboard, especially when they can make music with their smart phone, tablet or laptop. The entry price to EDM, for example, is much lower than the price of a Genos.


[Source: Yamaha Easy Product Guide, 2017; Click to enlarge.]

Yamaha led the Genos campaign with EDM. This gave the Genos a youthful cachet, but alienated many people in the historical customer base for high-end arranger product. Folks wondered, “Did they drop the big band styles?” However, let’s say that Yamaha did put a schmaltzy big band tune into the Guitar Center video. Instant turn off. Personally, I wouldn’t mind a big band tune. I grew up listening to Glenn Miller and Benny Goodman, but that was my father’s music. (BTW, I respect that music; I just don’t play it.) Most people can’t look beyond the end of their own musical nose.

So, where do Yamaha find customers with sufficient disposable income and maybe the time and interest? Back to the 80s! The Genos has some excellent styles that allow note-for-note covers of famous 1980s pop and rock, including synth-heavy 80s pop. We all tend to relate emotionally to the music of our teen years and early 20s. Let’s take 1985 as the midpoint, subtract 20 years and look to people born around 1965 or so. They were teens when 80s music was happening. Thus, Yamaha are targeting people in their late 40s and early 50s — old enough to have the disposable income for a high-end arranger while young enough to rebuild the aging customer base.

Well, I hope this ramble has given you a different perspective on Genos and arranger keyboard marketing. The Yamaha demos are carefully designed and scripted to appeal to target market segments. Where do you fit?

Copyright © 2017 Paul J. Drongowski

Genos: After the fireworks

So, how do I feel about Genos now that the Genos manuals are rolling out and emotions have cooled down?

The Yamaha Genos™ is a significant update on the Tyros 5. The brand new user interface (UI) should be easy to navigate through the brand-spanking new touch screen. The assignable knobs and sliders are very welcome, and probably give some Montage owners FOMO (fear of missing out). The sound set has gotten the usual and expected boost: CFX piano, C7 piano, electric pianos on par with Montage, new acoustic guitars, and so on.

Scratch the surface of the new UI, however, one finds few feature enhancements. The new Playlist capability replaces the Music Finder Database (MFD). Yamaha are in competition with Korg’s Songbook and only real hands-on experience will determine who has the edge.

The lighter weight is definitely appreciated as well as the modern stage styling. Yamaha have chosen to offer Genos in a single 76-key model. The 76-er weighs less than the previous 61-key Tyros 5 and that’s all to the good.

Before I discuss a few specific points, I want to describe how I feel: methodically enthusiastic. Huh?

When I buy a new keyboard, I think carefully about need — what would improve my experience and skills as a musician and what would improve the experience of those for whom I play. I do not currently perform with my Yamaha PSR-S950 arranger. Gig-wise, I can cover what I need to cover with a sample-playback synthesizer. I need section/solo orchestra strings, woodwinds and horns. I need B-3 organ and pipe organ. The Yamaha MOX6 — my main gig instrument — is sufficient in this regard.

I do play the S950 as a practice instrument. I also have aspirations of performing as a one man band (OMB). I would be very happy to have a single instrument that fulfills gigging, practice and OMB situations.

In terms of sound, I’m ready for a major update. The MOX6 and the S950 sounds are roughly the same vintage as the Motif XS, first released in 2007. That’s ten years. As a car owner, I tend to hold and drive the same car for ten years. Then I realize how far the technology has progressed and update. My attitude is the same for instruments. I prefer to hold and play an instrument for five years or longer, learning it in depth. I make an exception if the front panel buttons are worn and broken. 🙂

At this point, I know for sure that I want a better keyboard action such as the FSX action in Montage and Genos. This is similar to moving from a “student model” sax to a “pro” sax. I think the better action will help me as a player.

If you stuck with me this far, you probably realizing that I’m considering either the Montage or the Genos as my next gig and home ax. Even though I respect the Kronos, its orchestra instruments are not as expressive as Yamaha’s. Roland seems to have given up on orchestral instruments. After a quality/reliability issue with Kurweil, I’m off of them for life.

So, I am methodically enthusiastic about the Genos. It’s Genos vs. Montage; Godzilla vs. Mothra. Is the Genos value proposition sufficiently atractive that I will pay its premium price? That comes down to the playing experience and workflow. To be decided over the coming months.

I’m reluctant to give anyone advice. Every musician must carefully weigh their needs, the Genos value proposition and the Genos price. I will say that the Montage, Kronos, Tyros 5 and PA4x remain very fine, capable instruments. The PSR-S970 is no slouch, either. I tend to skip a generation before updating. Should you? Can’t say.

Drawbar organ

The Genos drawbar organ engine is substantially the same as Tyros 5, and S950, for that matter. The drawbar organ page is a skeuomorphic representation of the drawbars, rotary speed switch, etc. When Yamaha adopted a touch screen, thank heavens they added real sliders for drawbar control. This is doing it right.

I play the bars constantly. When I test drove a CVP-709 touch screen piano, the virtual, on-screen drawbars were impossible to play. Kudos for adding real physical controls to the Genos.

Also, thank you for porting the new Montage rotary speaker effect to the Genos.

Speaking of DSP and control, I have another suggestion for Genos 1.1. Many DSP effect algorithms have a parameter which can be controlled from an assignable controller (e.g., AC1). The Genos is too limited in this regard. Any physical controller — including a foot pedal — should be able to tweak a controllable DSP parameter in real time. Currently, for example, a foot pedal can only control the WAH effect. One should be able to control any DSP algorithm with a controllable parameter.

Ready for the studio?

Quite a few pros immediately noted the lack of balanced outputs and asked “Is Yamaha serious about attracting pros to the Genos?” Another question often raised is, “What happened to PAC?” The S/PDIF digital output is good enough to connect to home audio equipment, but the professional studio (and stage) expects balanced outputs.

Another missing feature is audio over USB and/or DAW integration. Fortunately, these features can be added through a software update; balanced outputs cannot.

Really ready for EDM?

Now, I’m not really an EDM person. I like down-tempo and I’m hoping to compose down-tempo tracks once the snow flies and the weather keeps me in. A few common themes recur in on-line forums.

The Genos adopts arpeggios and arpeggio control features from the PSR-S970. True EDM people are expecting more, however. At the very least, Yamaha need to add user-defined arpeggios, maybe in release 1.1. User-defined arps were a much-requested item for the Montage punch-list; Genos is no different.

Yamaha, if you’re listening, there is an active thread about arpeggios in the Genos section of the PSR Tutorial Forum. Please read through it.

If you want to attract younger composers and players to Genos, Yamaha need to be bolder and faster.

Built-in expansion memory

Yamaha are committed to built-in flash expansion memory which cannot be expanded by the end user. Not to put too fine a point on it, the flash memory expansion modules are dead. If you’re getting rid of your Tyros, Motif, or MOXF, get rid of the modules, too. If you’re looking for a bargain Tyros 5, Motif XF or MOXF, be sure to get flash expansion modules thrown into the deal. (If you’re buying a MOXF, keep an eye on the Yamaha promotions web page.)

As I explained in another post, I believe that the Genos internal file system resides in the same physical memory unit as the user expansion waveform memory. The total capacity of this memory is 64GB and is partitioned into the 58GB internal file system and the 1.8GB voice expansion memory. If 1.8GB is too small, I wonder if Yamaha could be persuaded to repartition the memory and make the voice expansion memory bigger (at the expense of file system size)? This is all speculative, of course.

Audio styles

Audio styles have not disappeared — just deemphasized. Audio styles were not universally popular. So, audio styles have been dropped from initial factory content and will be provided at a later date. Users will be able to load audio styles, if they so desire.

I still believe that Yamaha will introduce full audio styles, that is, styles with melodic parts that follow the current chord type and root. When Yamaha re-launch audio styles, they will be “audio styles done right.” I think they learned a lot from the S950, S770, S970 and Tyros 5 in this regard. Release date? Who knows?

Copyright © 2017 Paul J. Drongowski

Genos genesis

After fits and starts due to early leaks, Yamaha have launched the Yamaha Genos™ digital workstation. You can check out Yamaha’s content through the Genos concept site or the Genos product pages. [Click images to enlarge.]

There’s no point in regurgitating Yamaha’s on-line content, so I will just summarize highlights here.

  • Size: 48-9/16″W x 5-7/16″H x 17-15/16″D
  • Weight: 28lb, 11oz (13.0kg)
  • 9″ color touch screen (TFT color WVGA 800 x 480 pixels)
  • Live Control display (OLED 589 x 48 pixels)
  • 9 sliders and 6 knobs that are fully assignable
  • 76-key FSX keyboard
  • Joystick with modulation and joystick HOLD
  • Synthesis: AWM2 and Articulation Element Modeling (AEM)
  • Polyphony: 256 (128 for preset voice + 128 for expansion voice)
  • 550 styles total (punchy drums and DSP effects)
  • 1,652 voices + 58 drum/SFX kits
  • 216 arpeggios: instrument arps, e.g., strums and control arps automate Live Control
  • 28 insert effects including VCM effects
  • Vocal Harmony and Synth Vocoder
  • Audio recording: Audio (WAV 44.1kHz, 16-bit, stereo) and MIDI SMF
  • Audio playback: WAV (44.1kHz, 16-bit, stereo) and MP3
  • MultiPads (both audio and MIDI)
  • Internal memory: 58GBytes (approximately)
  • Connectivity
    • S/PDIF digital audio output
    • Three USB TO DEVICE ports (front panel, back panel, bottom)
    • Wireless LAN (IEEE 802.11b/g/n) depending on regional type acceptance
  • 32-bit digital-to-analog converter (DAC)
  • 1.8GBytes user voice expansion memory built-in

The Genos looks to be a nice overhaul of the now staid Tyros product line. If you’re familiar with Tyros — and I’m assuming that you are — then you are not super surprised at some of the features while being pleased (or not) to have a color touch screen, lots of assignable knobs, sliders and buttons, a secondary OLED display to show parameters, doubled polyphony, S/PDIF, wireless LAN (maybe, in your region), and a 32-bit DAC.

Yamaha have chosen to issue only a single 76-key model; no 61, no 88. This gives them interesting options for line extension. Go small and save weight, or feed the world’s almost insatiable hunger for 88-key piano-like objects?

You might also be surprised to not see audio styles. I think the original audio styles confused most users. Can I save them to USB drive? No. Did they fit many tunes other than the “reference” song? No. Handling REX format via the Yamaha Expansion Manager (YEM) should resolve these issues for advanced users. Yamaha punched up the drums to improve the live feel. (Hey, don’t Yamaha actually make drums? Just kidding.)

Featured instruments include:

  • CFX piano
  • C7 grand piano (newly sampled)
  • Kino strings
    • Newly sampled movie orchestra
    • Violins hard-panned left and right
    • Violas, cellos and contrabass center
  • Revo drums (waveform cycling)

If rumors hold true, there should be a new Strat in there somewhere as well as Gibson and Martin steel guitars and a pedal steel guitar. The electric pianos have gotten the ambient noises from the Montage EPs.

The Live Control view is nicely done. Change a knob and the display shows the new assigned parameter value. Change a slide next and the display switches to the slider settings. Good, no button needed to switch displays while playing. The knobs and sliders are integrated with drawbar settings, making the Genos could be a worthy clone competition or a close substitute for a clone. The new rotary speaker effect (from the Montage?) sounds good. But, Yamaha, you left out the chorus (vibrato only). Don’t chuck your Reface YC.

The playlist feature looks to be a very useful addition. The playlist organizes registration banks for quick access. The PSR/Tyros registration concept is a very powerful one and I wish that Montage had a similar capability. I love registrations because, bang, in one button press, I have a song ready to play. (More about this another day.)

Having a USB device port hidden under the unit is a great idea. Ever have a drunken chucklehead at a bar try to pull out your USB drive? Ever be a chucklehead yourself? 🙂 More manufacturers should do this.

A new release of Yamaha Expansion Manager (version 2.5) is planned for November 2017, roughly in sync with first deliveries. YEM will have support for WAV, AIFF, SoundFont and REX formats.

A new release of MegaEnhancer (version 1.5) will be available in November, also. MegaEnhancer changes the MIDI data in a Standard MIDI File (SMF) to use Yamaha’s MegaVoices.

The iPad app SongBook+ is also on the way. SongBook+ organizes songs with lyrics, notation, and other information. A song may also be linked to a registration — a very handy feature for performers who need to home in on the complete set-up for a song during performance. I play with charts; I like this.

The USA manufacturer’s suggested retail price (MSRP) is $6,799 and MAP is expected to be $5499.

From a hardware guy’s point of view, there are a few things to think about. The 32-bit DAC is a first for Yamaha. Even Montage does not sport S/PDIF. No mention of Pure Analog Circuit, so the audio back-end must be new, new, new.

The polyphony spec is très intéressant: 128 for preset voices and 128 for expansion voices. Hmmm, how did Yamaha arrange (pun intended) the SWP70 tone generators and NAND flash memory?

So, Yamaha have 1.8GBytes of flash left over for voice expansion. There simply is not enough information to infer waveform memory size, so we’ll all be waiting for the service manual.

Speaking of manuals, there aren’t any available at the time of this writing. No owner’s manual, reference manual or data list. Nada. The early leaks forced Yamaha’s hand to launch the Genos two weeks early and now we will wait. First deliveries are anticipated for November. Déjà vu all over again.

I am literally weighing the Genos (13kg) versus the Montage (15kg) as my next ax. There is still a huge amount to learn about the Genos as it is revealed. Has the sequencer gotten an overhaul? Does the Genos support deep voice editing? The user interface does look inviting and I look forward to seeing more.

Sometimes a little bit of information just leads to more questions.

Copyright © 2017 Paul J. Drongowski

This is the place(ment)

Alex Christensen & the Berlin Orchestra, Classical remake of “Snap! Rhythm Is a Dancer.”

Now that’s what a big production budget and product placement will buy you!

Wot? It’s not an ad for Yamaha headphones?

This is the second teaser video for the new Yamaha GENOS™ Digital Workstation.

I found three video clips showing the GENOS. If you found more, congratulations! You have less of a life than I do. 🙂 [Please click images to enlarge.]

At least we know where the “Direct Access” button is.

A nice, clean, flat user interface. Too bad recent research shows that users navigate a flat interface 22% slower than an interface with shadows, etc.

Yep, looks like the knobs adjust parameters and the display shows the current value.

The second video does not reveal much more than the first “pixie dust” teaser video. However, you can rest assured that Yamaha means and sanctions these video snippets. Yes, it has sliders, knobs, a color touch panel, and a parameter display above the knobs.

The main editorial question, however, is what role did the Yamaha GENOS™ play in the actual musical production of Mr. Christensen’s album? Or, vice versa?

Back to the crass business of marketing, Yamaha clearly want to reach a younger customer base without offending the old folks. (I am an old folk, by the way.) That’s perfectly fine by me as the Yamaha innovation engine needs fuel from many sources. If indeed the GENOS has styles combining MIDI and audio phrases, the development cost of that content alone must be staggering. (Do not think GENOS will come cheaply.)

We await more. Always more.

Related posts:

Original material Copyright © 2017 Paul J. Drongowski

Tip-toe through the tech

Last year ’bout this time, we were all holding our collective breath awaiting the new Yamaha Montage. There are two products which I expect to see from Yamaha sometime in the next one to two years:

  1. The successor to the mid-range MOXF synthesizer, and
  2. The successor to the top-of-the-line (TOTL) Tyros arranger workstation.

NAMM 2017 seems a little too soon for both products. In the case of the MOXF successor, Yamaha conducted marketing interviews during the summer of 2015. I would guess that MOXF sales are still pretty good and no new products from the usual suspects (Korg, Roland) are visible on the horizon. The Krome and FA could both use an update themselves. Not much market pressure here at the moment. (Korg’s NAMM 2017 announcements are, so far, a little underwhelming.)

Read my MOX retrospective and interview follow-up.

I suspect that the Tyros successor is somewhat closer to launch. Speculation has been heated ever since Yamaha filed for a US trademark on the word mark “GENOS”. The word mark was published for opposition on November 15, 2016. “Published for opposition” means that anyone who believes that they will be damaged by registration of the mark must file for opposition within 30 days of publication. If “GENOS” is indeed the name for the Tyros successor, then the 30 day period ending December 15, 2016 is cutting it very close to NAMM 2017. Even more ludicruous if Yamaha were to begin manufacturing products printed with that name for a NAMM 2017 launch. Imagine the scrap if opposition was successful!

For quite some time, I have been meaning to summarize the key U.S. patents that I believe to be GENOS-related. (Assuming that “GENOS” is the name!) I’ve procrastinated because the launch date is most likely fall 2017 at the earliest as previous Yamaha mid- and high-end arranger models are typically launched in the fall in anticipation of the holiday selling season.

A much larger barrier is the task of reading and gisting the patents. Patents are written in legalese and are much more difficult to read than the worst written scientific papers! One of the folks on the PSR Tutorial forum suggested making a list of the top five technologies for the new TOTL arranger. I generally hate the superficial nature of “list-icles,” but the suggestion is a good one. Nothing will get done as long as the barrier is big because I would much rather jam and play! I’m supposed to be retired.

The 2016 Yamaha annual report states that Yamaha want to make innovative products which are not easily copied by competitors. Patents — legally protected intellectual property — are essential to achieving this goal. Generally, a company only applies for a patent on technology in which they have a serious business interest due to the significant cost of obtaining and maintaining patent protection.

So, here are a few of Yamaha patented technologies which could appear in future products — perhaps GENOS, perhaps others.

SWP70 tone generator

This may seems like old news…

The next generation SWP70 tone generator first appeared in the mid-range Yamaha PSR-S970 arranger workstation. The SWP70 made its second appearance in the Yamaha Montage synthesizer. The S970 incorporates only one SWP70 and does not make full use of the chip. (At least three major interfaces are left unconnected.) In keeping with Yamaha’s TOTL design practice, the Montage employs two SWP70 integrated circuits: one each for AWM2 sample-playback and FM. A second sample cache interface on the AWM2 side is unconnected.

The Tyros successor likely will use two SWP70 tone generators, too. The number of available tone generation channels with two SWP70s will be massive (512 channels). Yamaha could opt for a single SWP70 and still outmatch the current generation Tyros 5. Like the Montage, there will be enough insert effect DSP processors to cover each style and user part, as many as two for every part.

It will be interesting to see (and hear) if the GENOS will make use of the second sample cache interface. A second cache would not only support more tone generation channels, but might be necessary for long, multi-measure musical phrases that are needed for full audio styles (discussed below).

The SWP70 flash memory interface follows the Open NAND FLASH interface (ONFI) standard, the same as solid state drives (SSD). ONFI memory devices can be stacked on a bi-directional tri-state bus, so potentially, the GENOS could support a large amount of internal waveform storage. This flash memory will contain the “expansion memory,” that is, physical memory reserved in flash memory for user waveforms. The expansion flash memory expansion modules (FL512M, FL1024M) are dead, Jim.

If you’re interested in Yamaha AWM2 tone generation, here’s a few patents to get you started:

  • Patent 9,040,800 Musical tone signal generating apparatus, May 26, 2015
  • Patent 8,383,924 Musical tone signal generating apparatus, February 26, 2013
  • Patent 8,389,844 Tone generation apparatus, March 5, 2013
  • Patent 8,957,295 Sound generation apparatus, February 17, 2015
  • Patent 8,035,021 Tone generation apparatus, October 2011
  • Patent 7,692,087 Compressed data structure and apparatus and method related thereto, April 6, 2010

U.S. Patent 8,957,295 is the patent issued for the SWP70 memory interface. U.S. Patent 9,040,800 describes a tone generator with 256 channels — very likely the SWP70.

Pure Analog Circuit

This may seem like old news, too, since Pure Analog Circuit (PAC) debuted in the Yamaha Montage.

Pure Analog Circuit is probably the least understood and least appreciated feature of the Montage. It’s not just better DACs, people. The high speed digital world is very noisy as far as analog audio is concerned. Yamaha separated the analog and digital worlds by putting the DACs and analog electronics on their own printed circuit board away from noisy digital circuits. Yamaha then applied old school engineering to the post-DAC analog circuitry, paying careful attention to old school concerns like board layout for noise minimization and clean power with separate voltage regulation for analog audio. Yamaha’s mid- to high-end products have always been quiet — PAC is pristine.

Since the PAC board is a separate, reusable entity, I could see Yamaha adopting the same board for GENOS.

Styles combining audio and MIDI

Yamaha are constantly in search of greater sonic realism. Existing technologies like Megavoices and Super Articulation 2 (Advanced Element Modeling) reproduce certain musical articulations. However, nothing can really match the real thing, that is, a live instrument played by an experienced professional musician. PG Music Band-in-a-Box (BIAB), for example, uses audio tracks recorded by studio musicians to produce realistic sounding backing tracks. The Digitech TRIO pedal draws on the PG Music technology for its tracks. (“Hello” to the Vancouver BC music technology syndicate.)

Yamaha have applied for and been granted several patents on generating accompaniment using synchronized audio and MIDI tracks. Here is a short list of U.S. patents:

  • Patent 9,147,388 Automatic performance technique using audio waveform data, September 29, 2015
  • Patent 9,040,802 Accompaniment data generating apparatus, May 26, 2015
  • Patent 8,791,350 Accompaniment data generating apparatus, July 29, 2014
  • Application 13/982,476 Accompaniment data generating apparatus, March 12, 2012

There are additional patents and applications. Each patent covers a different aspect of the same basic approach, making different claims (not unusal in patent-land). Yamaha have clearly invested in this area and are staking a claim.

The patents cite four main motivations, quoting:

  1. The ability to produce “actual musical instrument performance, human voices, natural sounds”
  2. To play “automatic accompaniment in which musical tones of an ethnic musical instrument or a musical instrument using a peculiar scale”
  3. To exhibit the “realism of human live performance”
  4. To advance beyond known techniques that “provide automatic performance only of accompaniment phrases of monophony”

Your average guy or gal might say, “Give me something that sounds as natural as Band-in-a-Box.” Yamaha sell into all major world markets, so the ability to play ethnic instruments with proper articulation is an important capability. Human voice, to this point, is limited to looped and one-shot syllables, e.g., jazz scat. The new approach would allow long phrases with natural intonation. [Click on images in this article for higher resolution.]

audio_accompaniment_tracks

Currently, mid- and high-end Yamaha arrangers have “audio styles” where only the rhythm track is audio. The patents cover accompaniment using melodic instruments in addition to rhythm instruments. The melodic audio tracks follow chord and tempo changes just like the current MIDI-based styles. Much of the technical complexity is due to synchronization between audio and MIDI events. Synchronization is troublesome when the audio tracks contain a live performance with rubato. Without good synchronization, the resulting accompaniment doesn’t feel right and sounds sloppy.

Accompaniment from chord chart

This next feature will be very handy. U.S. Patent 9,142,203 is titled “Music data generation based on text-format chord chart,” September 22, 2015. If you use textual chord charts (lyrics plus embedded chord symbols), you will want this!

chord_chart_example

Simply put, the technique described in this patent translates a textual chord chord to an accompaniment. The accompaniment is played back by the arranger. The user can select tempo, style, sections (MAIN, FILL IN) and so forth.

The translator/generator could be embedded in an arranger or it could be implemented by a PC- or tablet-based application. Stay tuned!

Selectively delayed registration changes

A registration is a group of performance parameters such as the right hand voice settings, left hand voice settings, accompaniment settings, and so forth. Mid- and high-end arrangers have eight front panel buttons where each button establishes a set of parameter values (“readout”) when the button is pushed. It’s the player’s job to hit the appropriate button at the appropriate time during a live performance to make voice settings, etc. A player may need a large number of buttons, if a musical performance is complicated.

Usually only a few parameters are different from one registration to the next. Recognizing this, the technique described by U.S. Patent 9,111,514 (“Delayed registration data readout in electronic music apparatus,” August 18, 2015) delays one or more parameter changes when a button is pushed. The user specifies the parameters to be delayed and the delay (such as the passage of some number of beats or measures, etc.) Thus, a single registration can cover the work of multiple individual registrations.

delayed_registration

I’ll have to wait to see the final product to assess the usefulness of this feature. Personally, I’d be happy with a configuration bit to keep OTS buttons from automatically turning on the accompaniment (ACCOMP). Sure would make it easier to use the OTS buttons for voice changes.

Ensembles / divisi

Tyros 5 ensemble voices assign played notes to individual instrument voices in real time, allowing a musician to perform divisi (divided) parts. Tyros 5 ensembles can be tweaked using its “Ensemble Voice Key Assign Type List.” Types include open, closed, and incremental voice assignment. U.S. Patent 9,384,717, titled “Tone generation assigning apparatus and method” and published July 5, 2016, extends Tyros 5 ensemble voice assignment.

The technique described in 9,384,717 gives the musician more control over part assignment through rules: target depressed key, priority rule, number of tones to generated, note range, etc. The rules handle common cases like splitting a single note to two or more voices.

ensemble_rules

These extensions could lead to some serious fun! I didn’t feel like the Tyros 5 ensemble feature was sufficiently smart and placed too many demands on the average player, i.e., less-than-talented me. The rules offer the opportunity to shift the mental finger work to software and perhaps could lead to more intuitive ensemble play. Neat.

Voice synthesis

As I alluded to earlier, arrangers make relatively primitive use of the human voice. Waveforms are usually limited to sustained (looped) or short (one-shot) syllables.

Yamaha have invested a substantial amount of money into the VOCALOID technology. VOCALOID draws on a singer database of syllable waveforms and performs some very heavy computation to “stitch” the individual waveforms together. The stitching is like a higher quality, non-real time version of Articulated Element Modeling (AEM).

VOCALOID was developed through a joint research project (led by Kenmochi Hideki) between Yamaha and the Music Technology Group (MTG) of the Universitat Pompeu Fabra in Barcelona, Spain. VOCALOID grew from early work by J. Bonada and X. Serra. (See “Synthesis of the Singing Voice by Performance Sampling and Spectral Models.”) More recent research has stretched synthesis from the human voice to musical instruments. Yamaha hold many, many patents on the VOCALOID technology.

Patent 9,355,634, titled “Voice synthesis device, voice synthesis method,” is a recent patent concerning voice synthesis (May 31, 2016). It, too, draws from a database of prerecorded syllables. The human interface is based on the notion of a “retake,” such as a producer might ask a singer to make in a recording studio using directives like “put more emphasis on the first syllable.” The retake concept eliminates a lot of the “wonky-ness” of the VOCALOID human interface. (If you’ve tried VOCALOID, you know what I mean!) The synthesis system sings lyrics based on directions from you — the producer.

An interface like this would make voice synthesis easier to use, possibly by novices or non-technically oriented musicians. The big question in my mind is whether voice synthesis and editing can be sped up and made real time. Still, wouldn’t it be cool if you could teach your arranger workstation to sing?

Music minus one

This work was conducted jointly with the MTG at the Universitat Pompeu Fabra. A few of the investigators were also involved in VOCALOID. Quoting, “The goal of the project was to develop practical methods to produce minus-one mixes of commercially available western popular music signals. Minus-one mixes are versions of music signals where all instruments except the targeted one are present.”

This is not good old center cancellation. The goal is to remove any individual instrument from a mix regardless of placement in the stereo field. You can hear a demo at http://d-kitamura.sakura.ne.jp/en/demo_deformation_en.htm.

I doubt if this technique will appear on an arranger; the computational requirements are too high and the method is not real time. However, “music minus-one” is very appealing to your average player (that is, me). My practice regimen includes playing with backing tracks. I would love to be able to play with any commercial tune on whim.

There are patents:

  • US Patent 9,002,035 Graphical audio signal control
  • US Patent 9,224,406 Technique for estimating particular audio component
  • US Patent 9,070,370 Technique for suppressing particular audio component

and there are scientific papers:

  • “Audio Source Separation for Music in Low-latency and High-latency Scenarios”, Ricard Marxer Pinon, Doctoral dissertation, Universitat Pompeu Fabra, Barcelona, 2013.
  • D. Kitamura, et al., “Music signal separation by supervised nonnegative
    matrix factorization with basis deformation,” Proc. DSP 2013, T3P(C)-1, 2013.
  • D. Kitamura, et al., “Robust Music Signal Separation Based on Supervised Nonnegative Matrix Factorization with Prevention of Basis Sharing”, ISSPIT, December 2013.

Music analysis

Yamaha have put considerable resources into what I would call “music analysis.” These technologies may not (probably will not) make it into an arranger keyboard. They are better suited for PC- or tablet-based applications.

I think we have seen the fruits of some of this labor in the Yamaha Chord Tracker iPad/iPhone application. Chord Tracker identifies tempo, beats, musical sections and chords within an audio song from your music library. It displays the extracted info in a simple chord chart and can even send the extracted “lead sheet” to your arranger. The arranger plays back the “lead sheet” as an accompaniment using the selected style.

We’re probably both wondering if Chord Tracker will integrate with the chord chart tool described above. Stay tuned.

Yamaha Patent 9,378,719 (June 28, 2016) is a “Technique for analyzing rhythm structure of music audio data.” Patent 9,117,432 (August 25, 2015) is an “Apparatus and method for detecting chords.” I wouldn’t be surprised if Chord Tracker draws from these two patents.

Yamaha has also investigated similarity measures and synchronized score display:

  • Patent 9,053,696 Searching for a tone data set based on a degree of similarity to a rhythm pattern, June 9, 2015
  • Patent 9,006,551 Musical performance-related information output device, April 14, 2015
  • Patent 9,275,616 Associating musical score image data and logical musical score data, March 1, 2016

I’m not sure where Yamaha is going with similarity measures and searching. Will they use similarity measures to selected accompaniment phrases? Who knows?

The work on score display synchronizes the display of the appropriate part of a musical score with its live or recorded performance. These techniques may be more appropriate to musical education and training, particularly for traditional brass, string and woodwind players. Yamaha derives considerable revenue from traditional instruments and this is perhaps a way to enhance their “ecosystem” for traditional acoustic instruments.

Score display is one possible application of Yamaha’s patented technique to transmit performance data via near-ultrasonic sound. The technique borrows one or more tone generation channels to generate the near-ultrasonic data signal. See my earlier post about U.S. Patent 8,779,267 for more details.

So long for now!

That’s it! I hope you enjoyed this brief tour through a few of Yamaha’s recent patent grants and filings.

If you want more information about a particular patent, then cruise on over the the U.S. Patent and Trademark Office (USPTO) web site. Navigate to patent search and plug in the patent number.

Copyright © 2017 Paul J. Drongowski

The long view

Here’s some information attributed to Martin Harris from Yamaha. Martin is one of the key sound developers at Yamaha:

  • Better Pianos
  • New Strings – 70 piece Seattle Symphony Orchestra Mega
  • New Orchestral Brass – highly dynamic
  • New Tuned Percussion – Glock, Xylo, Marimba and Vibes (with motor on)
  • New Mega guitars – Telecaster with Finger and Plectrum
  • SA2 Celtic Violin
  • New Synth Voices
  • New Classical Choir – Cathedral ambience
  • New Gospel Choir – Various articulations and Ad libs
  • New Pop Vocals – 4 session singers, 2 male and 2 female
  • Singing many dynamics and many articulations (wave cycling)

Montage? No, Tyros 4. The “SA2” should be a clue as the Montage does not provide Super Articulation 2 (SA2) voices.

My purpose here is not to be tricky, but to make the case that sample-based workstations or synthesizers draw from the sound pool that is available at development time, much the same way that hardware designers draw on the pool of available components. Products cannot be composed of imaginary circuits (“sand”), software, and sounds, after all.

To better illustrate this point, here is a rough timeline for the Tyros and Motif product lines with a few mid-range products (S9xx and MOX) thrown in:

             Tyros                        Motif/Montage
----   ------------------  ------------------------------------------
Year   Model     Physical  Model     Physical  Uncompressed waveforms
----   ------------------  ------------------------------------------
2001                       Motif      48MB     84MB 1,309 waveforms
2002   Tyros      96MB
2003                       Motif ES   96MB     175MB 1,859 waveforms
2004
2005   Tyros 2   192MB
2006
2007                       Motif XS  128MB     355MB 2,670 waveforms
2008   Tyros 3   256MB
2009
2010   Tyros 4   512MB     Motif XF  256MB     741MB 3,977 waveforms
2011                       MOX       128MB     355MB 2,670 waveforms
2012   PSR-S950  256MB
2013   Tyros 5   768MB     MOXF      256MB     741MB 3,977 waveforms
2014
2015   PSR-S970    2GB
2016                       Montage     4GB     5.67GB 6,347 waveforms

I included physical wave memory size for each product. I also included the uncompressed total sample size and number of waveforms for each member of the Motif/Montage line.

Clearly, Yamaha know how to ride the memory technology curve. Memory technology has progressed to the point where it is no longer a significant hardware design factor. Rather, the amount of wave memory in a product depends more upon the ability of the sound designers to fill it with quality content and mid- versus premium-product grading (i.e., the target market segment and price point for the model). For example, note that the mid-range S970 has more than twice the physical wave memory than the Tyros 5. Although the “expansion memory” is reserved in the S970’s physical wave memory, the S970 waveform content is substantially smaller than the Tyros 5.

The other characteristic to note is how the Tyros and Motif lines tend to leapfrog each other. Generally, the Tyros line leads the Motif line in physical wave memory and content. This is partly due to the higher memory requirements of SA2 voices, which require many additional articulation samples.

Both the Tyros 4 and Motif XF were released in 2010. Both machines use two SWP51L tone generators. (Newer products like the Montage use the SWP70 tone generator.) The Tyros 4 has twice the physical wave memory capacity with respect to the Motif XF. Yet, the Tyros 4 has sample content which did not make it to a deliverable product in the Motif line until the Montage in 2016: Seattle strings, orchestral brass, Celtic violin, vocals (choir and scat), Telecaster guitar and suitcase electric piano.

Tyros 5 expanded this content in 2013. The Motif XF, on the other hand, received a significant update in January 2014. The V.150 update added the “Real Distortion” effects implemented by the Tyros 5. (A few Real Distortion effects actually premiered in the mid-range S950.) The V1.50 update and the “White Motif” color job were life-extenders for the Motif line. I’ve conjectured before that Montage development was late and this is further evidence.

So, what can we expect in the Tyros successor which I’m calling the “Tyros++”. (Yamaha have trademarked the name “GENOS” which may be the name of the follow-on. Only Yamaha really knows.) Personally, I’m hoping for the new orchestral woodwinds from Montage. These are superbly expressive voices. I’m also expecting improved electric pianos, again, of comparable quality to the Montage.

SA2 voices will probably remain exclusive to the Tyros line. Many folks hoped that Montage would have SA2 and it didn’t. SA2 is an important product differentiator — kind of like the premium “Natural” piano voices are to the Clavinova line. I suspect that FM voices will be a differentiator for the premium Montage line in years to come as well. Yamaha tends to think of these three product lines as distinct, so cross-over is carefully controlled and limited.

All of this talk about samples and wave memory size is overly reductionist. The three main (DMI) product lines — Tyros, Motif/Montage, Clavinova — have distinct personalities and features. Motif/Montage is a synthesizer for stage and production studio. Clavinova is primarily a home or church piano. Tyros serves double duty as a home keyboard and as a workstation for performing professionals. (Oddly, many USA customers scoff at this latter role.)

Although these are all fine instruments, the personalities have quirks. Upper-range Clavinovas are Tyros-in-disguise except for multi-pads, third RIGHT voice (i.e., only two voice layers in the right hand), and no expansion memory. Tyros does not have the deep editing or modulation features of the Motif/Montage. The Motif and Montage — strangely! — do not have a tonewheeel organ mode. This latter omission is hard to understand since the Montage competes against other “stage” products like the Korg Kronos and Nord Stage.

Having compared voice programming between PSR-S950 (Tyros 3 without SA2 voices) and MOX (Motif XS sound set), the product lines are voiced (programmed) differently. Motif/Montage effect programming has a harder edge than the Tyros, which is oriented toward oldies, pop and jazz standards. (Yes, Virginia, the Tyros does have latent EDM potential to be tapped.) If the Tyros++ includes the orchestral woodwinds, for example, they will probably be programmed rather differently than Montage. Tyros++ four-part divisi ensembles with the new orchestral woodwinds would be simply brilliant. Can’t wait to see and hear what happens!

One finally editorial comment. The world is filled with product reviews. Publications like Keyboard magazine, Electronic Musician, etc. focus on individual products and rarely present a deep, long-term perspective on products. Sound On Sound reviews occasionally give historical background — usually for esoteric, retro studio pieces. As consumers, we need the long view in order to make the most informed choice.

Motif styles for your arranger!

I’m pleased to announce my collection of Motif performance styles for the Yamaha PSR-S950 arranger and its close cousins: Tyros 5, PSR-S770 and PSR-S970.

Motif and MOX are great song-writing machines with thousands of built-in musical phrases. In Motif-speak, these phrases are called “arpeggios.” Motif/MOX also have built-in “Performances” which combine these musical phrases into jam-along song starters. Although Motif-series workstations are not arranger keyboards, the Performances are fun for live jams, covering many modern genres (contemporary jazz, funk and R&B) which are underserved by arranger workstations.

To fill this gap, I translated 23 Motif performances to PSR/Tyros styles. In keeping with the original source material, these styles are stripped down and lean. No orchestration to get in the way! Some styles use only bass and drum. INTROs and ENDINGs are short and basic. Depending upon the source performance, a translated style may have only three MAIN sections. However, all styles bring the groove.

Many of the styles use Megavoice bass and guitar. Plus, I’ve added appropriate OTS voices. Of course, you’re welcome to ditch the OTS voices and replace them with your own.

Here is the link to the ZIP file: perf_for_s950.zip. The file unzips into a directory named “PERF_for_S950”. The ZIP file includes a short READ ME file with more information.

If you would like to know how I translate a Motif/MOX performance to a PSR/Tyros style, please read the following articles: