mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-23 12:25:04 +02:00
Update podcast rss feed parser to use psc chapters on episodes
This commit is contained in:
parent
ddcda197b4
commit
6ed66fea16
5 changed files with 102 additions and 2 deletions
|
@ -325,6 +325,24 @@ class FeedEpisode extends Model {
|
|||
customElements.push({ 'itunes:summary': { _cdata: this.description } })
|
||||
}
|
||||
|
||||
customElements.push({
|
||||
'psc:chapters': [
|
||||
{
|
||||
_attr: {
|
||||
version: '1.2'
|
||||
},
|
||||
'psc:chapter': [
|
||||
{
|
||||
_attr: {
|
||||
title: 'Test',
|
||||
start: '00:00:00'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
return {
|
||||
title: this.title,
|
||||
description: this.description || '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue