mirror of
https://github.com/iptv-org/database.git
synced 2025-05-09 19:20:01 -04:00
92 lines
2.9 KiB
YAML
92 lines
2.9 KiB
YAML
name: ➕ Add feed
|
||
description: Request to add a channel feed into the database
|
||
title: 'Add: '
|
||
labels: ['feeds:add']
|
||
|
||
body:
|
||
- type: markdown
|
||
attributes:
|
||
value: |
|
||
Please fill out the issue form as much as you can so we could efficiently process your request.
|
||
|
||
- type: input
|
||
id: channel_id
|
||
attributes:
|
||
label: Channel ID (required)
|
||
description: ID of the channel to which this feed belongs
|
||
placeholder: 'HBO.us'
|
||
validations:
|
||
required: true
|
||
|
||
- type: input
|
||
id: feed_name
|
||
attributes:
|
||
label: Feed Name
|
||
description: "Unique for this channel feed name in English. For example: `HD`, `East`, `French`, `+1`, etc. May include: `a-z`, `0-9`, `space`, `-`, `!`, `:`, `&`, `.`, `+`, `'`, `/`, `»`, `#`, `%`, `°`, `$`, `@`, `?`, `|`, `¡`"
|
||
placeholder: 'SD'
|
||
validations:
|
||
required: true
|
||
|
||
- type: dropdown
|
||
id: is_main
|
||
attributes:
|
||
label: Main Feed
|
||
description: Indicates if this feed is the main for the channel
|
||
options:
|
||
- 'FALSE'
|
||
- 'TRUE'
|
||
validations:
|
||
required: true
|
||
|
||
- type: input
|
||
id: broadcast_area
|
||
attributes:
|
||
label: Broadcast Area
|
||
description: "List of codes describing the broadcasting area of the feed separated by `;`. Any combination of `r/<region_code>`, `c/<country_code>`, `s/<subdivision_code>`. A full list of supported codes can be found here: [data/countries.csv](https://github.com/iptv-org/database/blob/master/data/countries.csv), [data/subdivisions.csv](https://github.com/iptv-org/database/blob/master/data/subdivisions.csv), [data/regions.csv](https://github.com/iptv-org/database/blob/master/data/regions.csv)"
|
||
placeholder: 'c/CN'
|
||
validations:
|
||
required: true
|
||
|
||
- type: input
|
||
id: timezones
|
||
attributes:
|
||
label: Timezones
|
||
description: List of broadcast time zones separated by `;`. A list of all supported timezones and their codes can be found in [data/timezones.csv](https://github.com/iptv-org/database/blob/master/data/timezones.csv)
|
||
placeholder: 'Asia/Shanghai'
|
||
validations:
|
||
required: true
|
||
|
||
- type: input
|
||
id: languages
|
||
attributes:
|
||
label: Languages
|
||
description: List of languages in which the feed is broadcast separated by `;`. A list of all supported languages and their codes can be found in [data/languages.csv](https://github.com/iptv-org/database/blob/master/data/languages.csv)
|
||
placeholder: 'zho;eng'
|
||
validations:
|
||
required: true
|
||
|
||
- type: dropdown
|
||
id: video_format
|
||
attributes:
|
||
label: Format
|
||
description: Video format of the broadcast
|
||
default: 6
|
||
options:
|
||
- '4320p'
|
||
- '2160p'
|
||
- '1080p'
|
||
- '1080i'
|
||
- '720p'
|
||
- '576p'
|
||
- '576i'
|
||
- '480p'
|
||
- '480i'
|
||
- '360p'
|
||
- '240p'
|
||
validations:
|
||
required: true
|
||
|
||
- type: textarea
|
||
attributes:
|
||
label: Notes
|
||
description: 'Anything else we should know?'
|