Merge pull request #331 from saerdnaer/patch-1

use proper mime type for srt files #221
pull/338/head
Dave Jones 2022-02-03 07:42:51 -06:00 zatwierdzone przez GitHub
commit 91b3e5eee4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -31,19 +31,20 @@ Detailed file format information and example files are [here](../transcripts/tra
### Attributes
- **url (required):** URL of the podcast transcript.
- **type (required):** Mime type of the file such as `text/plain`, `text/html`, `application/srt`, `text/vtt`, `application/json`
- **type (required):** Mime type of the file such as `text/plain`, `text/html`, `text/vtt`, `application/json`, `application/x-subrip`
- **language (optional):** The language of the linked transcript. If there is no language attribute given, the linked file is assumed to be the same language that is specified by the RSS `<language>` element.
- **rel (optional):** If the rel="captions" attribute is present, the linked file is considered to be a closed captions file, regardless of what the mime type is. In that scenario, time codes are assumed to be present in the file in some capacity.
### Examples
```xml
<podcast:transcript url="https://example.com/episode1/transcript.html" type="text/html" />
```
```xml
<podcast:transcript url="https://example.com/episode1/transcript.srt" type="text/srt" rel="captions" />
<podcast:transcript url="https://example.com/episode1/transcript.vtt" type="text/vtt" />
```
```xml
@ -51,11 +52,12 @@ Detailed file format information and example files are [here](../transcripts/tra
```
```xml
<podcast:transcript url="https://example.com/episode1/transcript.vtt" type="text/vtt" />
<podcast:transcript url="https://example.com/episode1/transcript.srt" type="application/x-subrip" rel="captions" />
```
<br><br><br><br><!-- Tag block -->
## Locked
`<podcast:locked>`<br><br>
@ -869,4 +871,4 @@ The node value is a free form string meant to explain to the user where this con
```xml
<podcast:contentLink href="https://twitter.com/statuses/somepost">Chat on Twitter!</podcast:contentLink>
```
```