mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
Update save.js
Add support for: - sub_title - date - url - credits
This commit is contained in:
parent
9d9988c6f6
commit
be404a6d8f
1 changed files with 15 additions and 1 deletions
|
@ -22,12 +22,26 @@ async function main() {
|
||||||
category: program.category || null,
|
category: program.category || null,
|
||||||
season: program.season || null,
|
season: program.season || null,
|
||||||
episode: program.episode || null,
|
episode: program.episode || null,
|
||||||
|
sub_title : program.sub_title || null,
|
||||||
|
url : program.url || null,
|
||||||
icon: program.icon || null,
|
icon: program.icon || null,
|
||||||
channel: program.channel,
|
channel: program.channel,
|
||||||
|
sub_title: program.sub_title || null,
|
||||||
|
date: program.date || null,
|
||||||
lang: program.lang,
|
lang: program.lang,
|
||||||
start: program.start,
|
start: program.start,
|
||||||
stop: program.stop,
|
stop: program.stop,
|
||||||
stop: program.stop,
|
date: program.date || null,
|
||||||
|
director: program.director || null,
|
||||||
|
actor: program.actor || null,
|
||||||
|
writer: program.writer || null,
|
||||||
|
adapter: program.adapter || null,
|
||||||
|
producer: program.producer || null,
|
||||||
|
composer: program.composer || null,
|
||||||
|
editor: program.editor || null,
|
||||||
|
presenter: program.presenter || null,
|
||||||
|
commentator: program.commentator || null,
|
||||||
|
guest: program.guest || null,
|
||||||
site: item.channel.site,
|
site: item.channel.site,
|
||||||
_qid: result._qid
|
_qid: result._qid
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue