mirror of
https://github.com/audiobookshelf/audiobookshelf-web.git
synced 2025-08-18 08:18:45 +02:00
48 lines
No EOL
1.6 KiB
Vue
48 lines
No EOL
1.6 KiB
Vue
<template>
|
|
<div id="book-tracks" class="not-prose">
|
|
<p class="text-sm md:text-base">An audiobook contains tracks. Tracks are audio files assigned a track number. <br />The track number is parsed from the audio filename and from the ID3 tags of the audio file.<br />Audiobooks that are made up of multiple discs or cd's will be ordered first by disc number then by track number.</p>
|
|
|
|
<table class="my-4">
|
|
<tbody>
|
|
<tr class="bg-white bg-opacity-10 text-sm text-left font-semibold">
|
|
<th>Key</th>
|
|
<th>ID3 Tags <span class="text-gray-300 font-normal text-xs"> (case-insensitive)</span></th>
|
|
<th class="hidden md:block">Audio Filename</th>
|
|
</tr>
|
|
<tr>
|
|
<td>TrackNumber</td>
|
|
<td>track, trck, trk</td>
|
|
<td class="hidden md:block">First number after removing title, publish year, series, author, disc number</td>
|
|
</tr>
|
|
<tr>
|
|
<td>DiscNumber</td>
|
|
<td>discnumber, disc, disk, tpos</td>
|
|
<td class="hidden md:block">Number following "Disc" or "CD" (example: "Atlas Shrugged CD 01 - 1.mp3")</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<p class="mb-2">The scanner will choose the more accurate track/disc number between the filename and ID3 tag numbers.</p>
|
|
<p>Tracks can be manually ordered and enabled/disabled by pressing the "Manage Tracks" button on the audiobook page.</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
p {
|
|
margin: 0px;
|
|
}
|
|
img {
|
|
margin: 0px;
|
|
}
|
|
</style> |