Chapters
Expandable chapter navigation with seek support.
Preview
Documentation
Define chapters with title and start time. The chapters section is collapsible, shows the current chapter index, and allows click-to-seek to any chapter start position.
Code
<iframe
id="videas-019dcfae-f45e-74ab-b9e5-95717151c5b7"
src="https://app.videas.com/embed/019dcfae-f45e-74ab-b9e5-95717151c5b7/"
width="100%" height="200"
frameborder="0" allowfullscreen
></iframe>
<script>
window.addEventListener('message', function(e) {
if (e.data && e.data.type === 'videas:embed:resize') {
var f = document.getElementById('videas-' + e.data.embedId);
if (f) f.style.height = e.data.height + 'px';
}
});
</script>Frequently asked questions
How do I add chapters to an audio track?
Open the track in the Videas dashboard, go to the <strong>Chapters</strong> tab, and add entries with a title and a start timecode. Chapters are saved in the track metadata and picked up by the player automatically on the next embed refresh.
Does the player highlight the current chapter?
Yes. The chapter currently playing is visually emphasised in the chapters list, and the player shows the index / total (e.g. "3 / 8") next to the title so listeners can see how far they are in the episode.
Can I start the chapters panel collapsed by default?
Yes — chapters are collapsible and the collapsed state is remembered per user. You can also drive the initial state from the embed URL to ship a compact player by default.