Quick question: Is there an easy way to remove the waveformfrom the audioplayer? That is, you can play the audio wihtout seeing the waveform? I need that since, I want to classify real vs. fake audio and one can see the difference while looking at the waveform
Hi! That's an interesting point and requirement, and I just played around with the settings and CSS. Something like this in your prodigy.json
could work:
{
"audio_bar_width": 0,
"audio_bar_height": 0,
"audio_bar_gap": 0,
"audio_bar_radius": 0,
"show_audio_minimap": false,
"global_css": ".prodigy-content #player { height: 10px; overflow: hidden; border: 1px solid }"
}
This basically hides the visual waveform and still gives you a small view that shows the cursor so you can skip around. It looks like this, but you can obviously also tweak the styling a bit (added the border so it's clear where the player is):
You could also check what it looks like with the minimap enabled or whether that already reveals too much. If not, you could also use that and hide the main waveform completely. Hope this works!