https://docs.juce.com/master/tutorial_playing_sound_files.html
In the ‘Other initialisation’ section, after it says
In the
MainContentComponentconstructor we need to initialise
there’s an empty code block that presumably should say
formatManager.registerBasicFormats();
As it says, this enables WAV & AIFF but confusingly line 188 for instantiating the chooser, only has WAV format enabled. I see there is a later exercise to enable selection of AIFF files but it is worth an earlier mention that currently only WAV files can be opened until that exercise is done.
There’s another empty code block in the tutorial page after paragraph starting " In the MainContentComponent constructor we also add" which should say:
transportSource.addChangeListener (this);
