disklaviers Archives - Alex's Piano Service

Using External Speakers with the Disklavier

I have a customer who recently upgraded his Mark IV to a DKC-900, and wanted to add larger Bluetooth enabled speakers. We used Rockville TM150B 10″ Speakers. Although the speakers are powered, and amplify signal quite well, we nonetheless found the audio output from the Disklavier was a bit low. I added an RCA preamp to amplify the signal going into the speakers. The RCA preamp is zip tied in place using 24″ zip ties. These work wonderfully for strapping components to the beams.

The speakers underneath the piano are present, but are no longer powered or connected.

An RCA preamp installed between the control center RCA output and the speaker.
The piano alongside its powered Rockville speakers, overlooking the ocean.
This piano connects to his network using a Powerline adapter, as discussed in my Connecting Yamaha Disklaviers to a Network article.

Combining CD Audio and MusicSoft Floppy Disks from Mark IV for the Enspire / DKC-900

Here’s a basic outline of the steps involved:

  1. Copy MIDI tracks from Floppy Disks using Player Piano Floppy Backup Utility.
  2. Rip Audio tracks from CD as MP3 files.
  3. Put resulting files in the same directory, making sure the MP3 files and MID files for a given song have the same names.
  4. Put the collection of files in a folder with the album name.
  5. Put the folder onto a USB stick.
  6. Insert the USB stick into your Enspire and enjoy!

Copy MIDI tracks from Floppy Disks

First, you’ll need copies of the MIDI files from the floppy disks. The best tool for this is Player Piano Floppy Backup Utility, created by Mark Fontana. It’s freeware, but he requests donations. You can download it from him, or you can download ppfbu_v1.4_setup.exe from my MEGA drive. You can read more about this process on the Disklavier Floppy Disk Backups, ESEQ and MIDI Formats page.

The most important part of this step is that you write the files as “Renamed MIDI files.” I typically name each one with the name of the track, and make sure each name starts with the track number (00, 01, 02…). This makes it much easier to keep track of which MIDI file goes with which MP3 later on.

Using PPFBU to extract the files, and then export them as Renamed MIDI files. I’m using a dedicated Windows XP box that I keep just for this purpose. You can rename the files in PPFBU before you export them, or you can rename the MIDI files after (like I did in this case).

Rip the Audio tracks from CD

You’ll need to rip the audio off of the corresponding audio CD. You can rip CD audio natively on Windows using Windows Media Player. In the Linux environment, I used Asunder. In the Mac environment, you can actually use the Music App. The main point is just to extract mp3 files for each track on the CD.

Ripping an Audio CD using Asunder on a Linux system.

Name and Organize the Files

Below, you can see the files listed after ripping the audio CD, and after backing up the floppy disk drive using Player Piano Floppy Backup Utility. The floppy disk tracks are MIDI files and have a .mid extension. These contain the instructions to operate the piano. The CD tracks have been ripped as MP3 files and therefore have a .mp3 extension—these contain the audio.

'01 - Kingston Trio - Tom Dooley.mp3'
'01 - Tom Dooley.mid'
'02 - Greenback Dollar.mid'
'02 - Kingston Trio - Greenback Dollar.mp3'
'03 - Kingston Trio - Reverend Mr. Black [1963].mp3'
'03 - Reverend Mr Black.mid'
'04 - Kingston Trio - M.T.A. [1949].mp3'
'04 MTA.mid'
'05 - Kingston Trio - The Tijuana Jail [1959].mp3'
'05 The Tijuana Jail.mid'
'06 A Worried Man.mid'
'06 - Kingston Trio - A Worried Man [1959].mp3'
'07 - Kingston Trio - Where Have All the Flowers Gone [1955].mp3'
'07 Where Have all the Flowers Gone.mid'
"08 Bad Man's Blunder.mid"
"08 - Kingston Trio - Bad Man's Blunder.mp3"
'09 El Matador.mid'
'09 - Kingston Trio - El Matador.mp3'
'10 Everglades.mid'
'10 - Kingston Trio - Everglades.mp3'
'11 - Kingston Trio - Scotch and Soda.mp3'
'11 Scotch and Soda.mid'
'12 - Kingston Trio - (Sinking of the) Reuben James.mp3'
'12 Reuben James.mid'

All the files are present, but they will not yet play correctly in the Disklavier, as the filenames do not match.

I wrote a short Python script to automatically rewrite all the filenames to match. Using the numbers at the beginning of each filename, it pairs together matching MIDI and MP3 files and names them whatever the name of the MIDI file is, but without spaces or symbols. This appears to be the same formatting of downloadable Disklavier albums.

Whether you use the script or not, the before and after directory listings indicate how you must rename the files.The script is called using the following syntax:

python merge.py /path/to/your/directory "Album Name"

$ python merge.py . "Kingston Trio"
Copied and Renamed: 01 - Tom Dooley.mid -> 01TomDooley.mid
Copied and Renamed: 01 - Kingston Trio - Tom Dooley.mp3 -> 01TomDooley.mp3
Copied and Renamed: 02 - Greenback Dollar.mid -> 02GreenbackDollar.mid
Copied and Renamed: 02 - Kingston Trio - Greenback Dollar.mp3 -> 02GreenbackDollar.mp3
Copied and Renamed: 03 - Reverend Mr Black.mid -> 03ReverendMrBlack.mid
Copied and Renamed: 03 - Kingston Trio - Reverend Mr. Black [1963].mp3 -> 03ReverendMrBlack.mp3
Copied and Renamed: 04 MTA.mid -> 04Mta.mid
Copied and Renamed: 04 - Kingston Trio - M.T.A. [1949].mp3 -> 04Mta.mp3
Copied and Renamed: 05 The Tijuana Jail.mid -> 05TheTijuanaJail.mid
Copied and Renamed: 05 - Kingston Trio - The Tijuana Jail [1959].mp3 -> 05TheTijuanaJail.mp3
Copied and Renamed: 06 A Worried Man.mid -> 06AWorriedMan.mid
Copied and Renamed: 06 - Kingston Trio - A Worried Man [1959].mp3 -> 06AWorriedMan.mp3
Copied and Renamed: 07 Where Have all the Flowers Gone.mid -> 07WhereHaveAllTheFlowersGone.mid
Copied and Renamed: 07 - Kingston Trio - Where Have All the Flowers Gone [1955].mp3 -> 07WhereHaveAllTheFlowersGone.mp3
Copied and Renamed: 08 Bad Man's Blunder.mid -> 08BadManSBlunder.mid
Copied and Renamed: 08 - Kingston Trio - Bad Man's Blunder.mp3 -> 08BadManSBlunder.mp3
Copied and Renamed: 09 El Matador.mid -> 09ElMatador.mid
Copied and Renamed: 09 - Kingston Trio - El Matador.mp3 -> 09ElMatador.mp3
Copied and Renamed: 10 Everglades.mid -> 10Everglades.mid
Copied and Renamed: 10 - Kingston Trio - Everglades.mp3 -> 10Everglades.mp3
Copied and Renamed: 11 Scotch and Soda.mid -> 11ScotchAndSoda.mid
Copied and Renamed: 11 - Kingston Trio - Scotch and Soda.mp3 -> 11ScotchAndSoda.mp3
Copied and Renamed: 12 Reuben James.mid -> 12ReubenJames.mid
Copied and Renamed: 12 - Kingston Trio - (Sinking of the) Reuben James.mp3 -> 12ReubenJames.mp3

Listing of resulting directory, “Kingston Trio”:

01TomDooley.mid
01TomDooley.mp3
02GreenbackDollar.mid
02GreenbackDollar.mp3
03ReverendMrBlack.mid
03ReverendMrBlack.mp3
04Mta.mid
04Mta.mp3
05TheTijuanaJail.mid
05TheTijuanaJail.mp3
06AWorriedMan.mid
06AWorriedMan.mp3
07WhereHaveAllTheFlowersGone.mid
07WhereHaveAllTheFlowersGone.mp3
08BadManSBlunder.mid
08BadManSBlunder.mp3
09ElMatador.mid
09ElMatador.mp3
10Everglades.mid
10Everglades.mp3
11ScotchAndSoda.mid
11ScotchAndSoda.mp3
12ReubenJames.mid
12ReubenJames.mp3

Note that now the MP3 and MIDI files have identical names for each song, identical capitalization, and that all spaces and symbols have been removed. In the ENSPIRE, unlike earlier iterations of the Disklavier, filename length does not seem to matter. Here’s a graphical representation of the last folder, ready to move:

The filenames match! It’s ready to be put on a USB stick and played in your ENSPIRE.

It’s Time to Play!

At this point, you can move the complete folder (in this case, Kingston Trio) onto a USB stick, and insert it into the front of your ENSPIRE controller.

Once your USB is inserted, you’ll see the My Songs (5) option appear in the ENSPIRE controller app. (This image is copied from the ENSPIRE Controller Operation Manual created by Yamaha, which is available from them.) Just open up the “Album” (which is the folder you created for all of your files on your USB stick), and select a song! It’ll play the piano parts, and the audio will accompany it.

Mark IV Disklavier SSD Conversion Or Hard Disk Replacement

This article was contributed by Richard Zajac.

The Mark IV utilized a spinning hard disk, which was more than sufficient for the technology of its time. Even advanced systems like the Yamaha Disklavier don’t demand exceptionally fast read speeds, as piano notes aren’t played within microseconds of each other. However, spinning hard disks do come with inherent drawbacks. Being mechanical, they are prone to eventual failure, and are noisy. Additionally, during system updates, the limitations of their read and write speeds become evident, resulting in updates that can take nearly an hour to complete.

Whether you’ve chosen to upgrade because of the improved read/write speed, or you’ve simply arrived here because the hard drive has failed, or an update has been interrupted, read on!

First, you’ll need a new solid state drive with a minimum of 80 GB of storage capacity, as well as an IDE to SATA adapter. The 120 GB OWC Mercury Pro Legacy comes with all necessary components. (Note that, although Richard used this, and it fit neatly into the system, I installed mine using a 120 GB Patriot Burst drive and Kingwin SATA to IDE adapter, so my pictures differ. His OWC product is a neat, all-in-one solution.)

Installation

  1. Remove the control unit from the piano by first unscrewing the parallel port connector using the two flat blade nuts on the sides of the port.
  2. Unplug all the cables and then carefully unscrew the control unit from the piano. It is very heavy, so carefully lift it down and turn it over.
  3. Unscrew all the black screws on the top face of the control unit that would normally be against your piano. This surface is the unpainted, silver surface.
  4. Carefully remove the two plugs from the hard drive. Unscrew the drive underneath using a Phillips screwdriver with lots of pressure taking care not to strip the screws.

The original spinning disk, at rest

At this point, you’ll need to copy the contents of the old hard drive into an image file. If your old hard disk does not work, please contact me for a fully updated v4.26 Mark IV hard disk image, and include your serial number.

To create your own backup on Linux or Mac, you can use the dd instruction in a terminal. Note that you’ll need to adjust /dev/sdX to be whatever the location of your hard disk is! On Mac, this will be similar to /dev/rdiskX.

sudo dd if=/dev/sdX of=bckup.img status=progress

Specifications for the original disk

Take your new SSD drive and plug it into your computer using a USB adapter such as this one. Unplug the red adapter on the back of the hard drive and then plug the following cables into the hard drive itself.

The drive should mount to your Macintosh or Linux computer.

Using the terminal, type in “diskutil list” command shown as below, then press “Enter” to list all the disks in your Mac computer. Take down the number of your USB drive. Here assume that the USB drive number is “2”.

Type in the following command, replacing “#” with your USB drive number. diskutil unmountDisk /dev/disk#

Then press “Enter” to unmount it.

Type in the following command. On Mac, replace “/path/to/your.img” by dragging the image file from the Finder into terminal. On Linux, type the path. Then press “Enter” to burn the IMG image file to the USB drive.

sudo dd if=/path/to/your.img of=/dev/rdisk2 bs=4k status=progress

Unmount your USB drive, put the red adapter back on, and screw it into your Disklavier top assembly. You will need to use the middle screws to give it enough room to be able to have the cable attached and close it. Voilà! You have now updated your system and changed your drive to solid state!

My Patriot Burst SSD, mounted directly to the top plate.

I was able to line up the Patriot Burst drive with the cooling holes on the upper plate such that I could screw it directly in place

Conveniently Rename all ESEQ Files for use with EEXPLORE and PIANODIR.FIL

This Java program will recursively rename .fil files in the specified directory, ensuring they follow the naming convention described, and convert all filenames to uppercase. If, for instance, you have twenty albums, direct this program to run in their parent directory, and all the albums in subdirectories will be corrected.

This script renames all files to be all-caps, and to have names exactly eight characters long. It will add filler characters if necessary. It will make sure they’re unique by incrementing a counter. These appear to be the most important factors in making files identifiable to early Disklaviers, based on my experience and those of commenters.

At this point, you’re ready to use EEXPLORE.EXE to move through each directory and prepare your PIANODIR.FIL. At a future date, I’d like to automate this.

Make certain to back up all files before running this! I can’t guarantee perfect results for all combinations of names and strings of characters.

After you run RenameForDisklavier, you’ll see this box. Select the folder containing all of your .fil files, and it will do the rest.
The renamed .fil files, demonstrating proper length, numbering, and capitalization.

Nalbantov Drive Bay Insert

I recently installed a Nalbantov USB drive using an updated version of the insert and mount that I designed.

You can see based on the pictures below that the Nalbantov slim is slightly too small to fill the entire cavity left by the original floppy disk drive. Additionally, there are no mounts of any kind to hold the Nalbantov in place. This insert solves both problems: The drive screws into the insert at just the right distance and depth, and the insert also buffers the area around the outside of the drive.

I’ve included several pictures of how it fits into the case below. If you’d like to 3D print your own, I can provide the CAD file in 3mf format, gcode format, and STL format. If you’d prefer to order one from me, ready printed, you can order a Nalbantov Drive Bay Insert ready-made here.

You can see the insert helping to fill in the space around the Nalbantov drive.
The insert installed over the screw positions of the original floppy disk drive.
I 3D printed the spacers at 50% infill so they’d be fairly solid. These spacers allow you to use the original machine screws that hold down the OEM floppy disk drive, which is a huge advantage. No visits to the hardware store!

Disklavier HQ100/MX100II Solenoid Failure

I have a customer who recently experienced an issue with his Yamaha Disklavier HQ100. The HQ100 is the Japanese version of the MX100II. He primarily uses this instrument over MIDI, and finds the Disklavier quite useful.

This discussion should apply to other models of Yamaha Disklavier. The Yamaha MX100A and MX100B use different solenoids, but the designs are similar.

The symptom was that, when started, the Disklavier would play a single key at maximum velocity. It would sustain it for several seconds before releasing. Additionally, the system emitted a noisy whine while powered on. This noise turned out to be a failed power supply, and a replacement resolved that particular symptom. However, despite this, the system would still play one single key after powering on and then fail to respond to any subsequent commands.

The key that was playing was a low D (specifically, D1). I disassembled the instrument and inspected the solenoid for that key. The solenoid assembly was exuding an enormous amount of heat. The burned coil can be seen below.

There was also considerable damage to the inside of the coil assembly. The solenoid was unable to move fully back down into the rest position, as the assembly was badly melted.

Here you can see two solenoids (Yamaha #NX551020). The solenoid on the right has overheated and burned. The plastic actually melted and had become crispy.

I replaced the solenoid; however, this did not solve the problem. The new solenoid would activate and rapidly heat up. At one point, F1 activated instead of D1, adding an interesting twist.

I disconnected CN201, meaning that the Drive C solenoid drive board was still receiving power from the Disklavier but wasn’t receiving a signal. This isolated the problem to the Drive C board. Replacing the solenoids made it clear that they weren’t the issue. Therefore, the problem had to be somewhere on the PCB below:

In the MX100II, this is the Drive C board. Mercifully, the failed board was the smallest of the drive boards!

I traced the circuitry back from the solenoid. In the image above, the D1 key solenoid is plugged into CN207. I verified that diodes D213-D224 were all behaving correctly (between 400-600 mV forward, and 0 back). Eventually, I was able to trace the behavior to the transistor array. My current theory is that the transistor array failed, causing current to run to the solenoid continuously. The solenoid eventually melted the plastic sleeve. This would also explain why the F1 solenoid activated in place of the D1 during later tests—both key solenoids are attached to the same failing transistor array.

This is the failed component. In the MX100II, this transistor array (2NTH3L20 / Yamaha #VB293700) has been discontinued. However, the equivalent array is NX551020 available through Digikey.

Creating PIANODIR.FIL for ESEQ Files

Yamaha’s earlier floppy disks use the propriety ESEQ format. They also use a primitive form of copy protection, where the first sectors of the disks are missing. This means computers identify the disks as corrupt, requiring you to use specialized software to back up your Disklavier disks. In place of these sectors, Yamaha uses the PIANODIR.FIL file, which serves both as a file table and a song index.

Converting MIDI files to ESEQ

If you want to use MIDI files with your older Disklavier, you can, but you have to convert them to ESEQ first. There’s software to do this conversion. You can either get it from http://www.carolrpt.com/MIDItools.htm or you can download the whole DKVUTILS suite from my MEGA drive.

Once you download DKVUTILS.ZIP from my site or theirs, you’ll need to extract it. The program that converts MIDI files to ESEQ files is MID2ESEQ.EXE. This program runs only on Windows, and does not seem to run with emulators. Reach out to me and I can assist with conversion.

Using MID2ESEQ, just drag and drop MIDI files into the window.

If you have a Yamaha that’s capable of playing ESEQ only, you might also need to create a PIANODIR.FIL index. Continue scrolling down for instructions!

Creating a PIANODIR.FIL using ESEQ Explorer

If you are creating a floppy disk for use with an earlier ESEQ only Disklavier, or if you’re preparing ESEQ files for transfer to a Nalbantov USB stick, you might have to create your own PIANODIR.FIL.

Note: Please note that the filenames should be strictly eight characters long, have no spaces, and be entirely uppercase, including the FIL extension BEFORE following the process below. If you don’t do this, some pianos will be unable to read the files. I’ve created a program to conveniently rename all your .fil files at once, which is especially helpful if you have numerous albums.

You’ll need the DKVUTILS suite downloaded. You can download DKVUTILS from my MEGA drive or from http://www.carolrpt.com/MIDItools.htm.

First, put all the ESEQ files you’ve created in a folder together. The DKVUTILS suite includes a program called ESEQ Explorer. Once you open the program, select the directory you’ve stored your ESEQ files in (make sure they’re properly renamed according to the above instructions, or use my program to rename them for you). You’ll see a screen like the one below:

Note that, if you don’t currently have a PIANODIR.FIL, there will be a red X in front of it. That means it’s not present. Right-click on it and select Create Index. The contents of that folder are now ready to be added to a disk using the Nalbantov tools. If your file names are too long, you’ll see them renamed with ~ symbols. In my experience, this is a program, and indicates they likely won’t read in the piano. Make sure to rename them appropriately first.

I’ve also quoted the text file from the DKVUTILS.ZIP tool below, since they’re informative:

Yamaha Disklavier discs are always on Double Density (2DD) media, High Density (HD)discs, which are more common nowadays, will not work. Furthermore, they are formatted to 720 Kbytes not the default of 1.2 Mbytes. The original discs are copy protected. This has been achieved by placing invalid data on the first sector. As DOS and Windows always refer to this sector to check out a floppy, they will report that the discs are bad. The Yamaha machinery ignores the first sector, so it reads them normally.

The music files on a Disklavier disc have the extension .FIL. They are frequently identified with titles like PIANO001.FIL, but sometimes they have names similar to DOS like MUSIC1.FIL. In addition to the music files, there is an index file on the disc. This contains a list of the active music files on the disc, their titles, and pointers to their position on the disc. The index file is always called PIANODIR.FIL and always has a size of 6 Kbytes. In order to set up a Disklavier disc to function on a Disklavier, you must first copy the music files onto it in Disklavier format (ESEQ) and then run the ESEQ EXPLORER program to build the index file.

Best USB Stick for Nalbantovs

While installing and using Nalbantov drives in grand Disklaviers, I’ve encountered a recurring problem. The full-size USB sticks protrude too far, and are easily damaged by pianists or passerby.

Lately, I’ve had good luck using the SanDisk Ultra Fit 32 GB USB Flash Drive. I typically couple that with some brightly colored cord. Because I have a lot of it handy, I use Atwood Micro Cord, but any brightly colored cord will do. I like to tie the end in a Lanyard (Diamond) Knot.

This hardly protrudes at all. Without the cord, it’s difficult to even tell that anything is plugged in.

Below, you can see a USB stick the was struck laterally by a pianist. The solder joint snapped right off! That is an in convenience easily avoided by a good quality, low profile USB stick.

Dampp-Chaser Installation in Yamaha HQ100

The Yamaha HQ100 is a so-called “gray-market” upright. A gray market piano is one that’s authentically manufactured by Yamaha, but is not intended for sale in a specific geographic region or country. Instead, it’s sold as “gray market” — a market that exists outside of the official distribution channels and is not authorized by the manufacturer. In this case, the HQ100 is the Japanese version of the Yamaha MX100II, with a few small modifications.

Like all Yamaha Disklavier uprights, Dampp-Chasers cannot be installed inside the cabinet. There isn’t any room. Instead, a backside system is installed between the support posts behind the piano. The back is then ensconced in a light fabric to keep the humidity-controlled air inside.

However, the HQ100 has one significant oddity: There are only two support posts. The double bucket system usually installed just doesn’t fit. So in this case, after communicating with Dampp-Chaser, I opted to install a full-size bucket on the rear of the system. A thin layer of foam or neoprene needs to be pasted to the sound-board side of the bucket, and a full-size baffle needs to be installed, but otherwise the system is installed like a typical back-side system. The dehumidifier brackets did require some bending to get them to fit properly.

For the Velcro, I used two feet of two inch wide Velcro, with the male side backed with a strip of neoprene. The picture is below:

Nalbantov Floppy Disk Drive Upgrades

I’ve recently started recommending customers with worn-out floppy disk drives upgrade them to so-called “Floppy Disk Emulators.” There are a couple of these on the market, but it looks like the easiest to use and most reliable is the Nalbantov USB Floppy Disk Emulator. I use these regularly in Yamaha Disklaviers, but they can also be installed in keyboards. I install these quite regularly. If you do order from Nalbantov directly, make sure to use the AlexPiano for a 5% discount on orders from Nalbantov.

Why Upgrade?

There are several reasons why you might want to replace an old floppy disk drive with a USB floppy disk emulator, including:

  1. Increased reliability: USB floppy disk emulators are more reliable than traditional floppy disk drives, as they have no moving parts and are less susceptible to mechanical failure. Most customers reach out to me after their floppy disk drive has failed.
  2. Compatibility: USB floppy disk emulators are compatible with modern computers, which may not have floppy disk drives built-in or may no longer support floppy disks.
  3. Speed: USB floppy disk emulators transfer data faster than traditional floppy disk drives, making it easier and quicker to transfer large amounts of data.
  4. Convenience: USB floppy disk emulators can be easily connected and disconnected, making it easier to transfer data between different computers or to store data.
  5. Cost-effectiveness: USB floppy disk emulators are often more cost-effective than purchasing a new floppy disk drive or repairing an old one.

I’ve found some floppy disk drives now cost more than the replacement USB emulators, especially if they’ve had minimal use. And hardly anybody knows how to actually repair a floppy drive—that’s a nearly lost art.

Operation

After the Nalbantov is installed, you can use a single USB stick to represent up to 1000 floppy disks. Because it’s a floppy disk emulator, the Disklavier actually believes you’re inserting a different floppy disk. As you switch between virtual “disks” by pressing the arrows, you’ll see the display on the Disklavier behave as though you’ve inserted a new disk. Of course, if you have more than 1000 floppy disks, you can invest in another USB stick, although I haven’t run into this particular situation yet!

The USB stick that comes with the Nalbantov is a standard, full-size USB stick. This protrudes rather far, and I’ve now run into multiple circumstances where the drive has been damaged by an incautious pianist. See my post on the Best USB Stick for Nalbantovs. Hint: It’s the SanDisk Ultra Fit.

This is the #2 track on the #27 floppy disk stored on that USB stick!

Installation

Some customers opt to install the Nalbantov unit themselves. Depending on the design, this is quite doable, although I don’t recommend attempting it with most Yamaha MX100II Disklaviers (see below). It is a very easy installation on, for instance, the DKC5R and the DKC500RW, just to pick a couple.

With some generations of Disklavier (most notably Mark II / MX100II / MX100A / MX100B devices), the floppy disk drives are mounted behind a shaped plastic piece. In these cases, you’ll need to cut away the old plastic facing (a pair of flush-cut nippers is helpful here), install the new drive, and put some kind of buffer around it. I’ve experimented with a few different choices for something functional and attractive. Purchasing neoprene strips is a cheap solution.

New solution: I have a 3D model of a floppy bezel that’s sized to fit around a Nalbantov. You can 3D print this yourself, or I can mail you one. This mount holds the Nalbantov in place, and also fills in the gaps around the edges. It’s an all-in-one solution for mounting the Nalbantov, and allows you to reuse the same screws the original floppy disk drive was installed with.

My solution/old solution: My previous 3D model in STL format of a floppy bezel simply filled in the gap around the Nalbantov, but didn’t help with mounting. You can 3D print this yourself, or I can mail you one. I adhere it to the replacement Nalbantov with a bit of hot glue, and then slide the whole assembly in. However, you’ll need to improvise a way to actually mount the floppy drive. I use mounting assemblies from old Yamaha slim floppy drives, but these appear to now be discontinued.

For backing up your current Disklavier floppy disks to a format that can be stored on your USB stick, see my article on Backing up Disklavier Floppy Disks. They can then be moved onto a virtual “disk” with Nalbantov’s proprietary tool.