Lexical corrections

pull/323/head
Franco Solerio 2022-01-12 11:35:45 +01:00
rodzic 1e5a3b82a1
commit ad8bc22134
1 zmienionych plików z 10 dodań i 13 usunięć

Wyświetl plik

@ -5,27 +5,27 @@
## Purpose
With Value4Value podcasters can give their audience the possibility to send payments in response to the action of listening to a show. After a few months from its invention many shows already demonstrated that audiences embrace this possibility and reward podcasters, creating a virtuous loop that favours the production of more and better content. It is also evident that single listeners contribute in very different degrees, from nothing to big amounts. This can be attributed to many reasons, just to name a few: use of apps that still don't support Podcasting 2.0, the listener's financial condition, education ad good will, the podcaster's ability to stimulate contribution both by improving the quality of their show and istigating the listeners to contribute.
With Value4Value podcasters can give their audience the possibility to send payments in response to the action of listening to a show. After a few months from its invention many shows already demonstrated that audiences embrace this possibility and reward podcasters, creating a virtuous loop that favours the production of more and better content. It is also evident that single listeners contribute in very different degrees, from big amounts to nothing. This can be attributed to many reasons, just to name a few: use of apps that still don't support Podcasting 2.0, the listener's financial condition, culture ad good will, the podcaster's ability to stimulate contribution both by improving the quality of their show and istigating listeners to contribute.
The purpose of the `<bonusItem>` block is to give podcasters another way to stimulate active contribution from the listeners by publishing bonus content on the same RSS feed, and making it available on the same apps the listener already uses to consume regular episodes.
The purpose of the `<bonusItem>` block is to give podcasters another way to stimulate active contribution from the listeners by publishing bonus content on the same RSS feed, and making it available on the same app the listener already uses to consume regular episodes.
Being available only on apps that support the specification, other than encouraging the financial contributions from the listeners, bonus content would give a competitive advantage and stimulate the adoption of the apps that support Poodcasting 2.0 features.
Being available only on apps that support the specification, other than encouraging the financial contributions from the listeners, bonus content would give a competitive advantage and stimulate the adoption of the apps that support Podcasting 2.0 features.
## Process
When the app parses the RSS feed, it stores and displays both the content of the usual `<item>` blocks available in the standard RSS specification and the bonus items contained in `<bonusItem>` blocks. The former are displayed as usual, while bonus content is displayed in a way that marks them as available (aka playable for traditional audio podcasts) only when some conditions are met.
When the app parses the RSS feed, it stores and displays both the content of the usual `<item>` blocks available in the standard RSS specification and the bonus items contained in `<bonusItem>` blocks. The former are displayed as usual, while bonus content is displayed in a way that marks it as available for playing only when some conditions are met.
The conditions can be specified in the `<bonusItem>` block in terms of amount of money contributed in a specific timeframe. More than one alternative condition can be specified.
Examples:
- A bonus episode can be played by listeners who contributed at least 10'000 sats in the last month.
- An episode archive of the previous years is available for those who sent at least 100'000 sats in their lifetime.
- A bonus episode can be played by listeners who contributed with at least 10'000 sats in the last month.
- An hystoric archive of episodes from the previous years is available for those who sent at least 100'000 sats in their lifetime.
## Structure:
The structure is identical to that of a regular `<item>` block, with the addition of a `<condition>` sub-item:
The structure of a `<bonusItem>` block is identical to that of a regular `<item>` block, with the addition of a `<condition>` sub-item:
```xml
<podcast:bonusItem>
@ -34,10 +34,10 @@ The structure is identical to that of a regular `<item>` block, with the additio
<guid isPermaLink="false">...</guid>
<enclosure url="..." length="..." type="..." />
...
<condition>
<condition
minimumAmount="[payed amount(integer)]"
timeInterval="[seconds(integer)]"
</condition>
/>
</podcast:bonusItem>
```
@ -47,7 +47,4 @@ The structure is identical to that of a regular `<item>` block, with the additio
#### Attributes of \<condition\>
- `minimumAmount` (required) specifies the minimum amount the user has to contribute to have access to the bonus item. The type of payment is the one specified in the \<podcast:value\> block contained at the \<channel\> level.
- `timeFrame` specifies the time, in seconds, to be considered for reaching the specified amount. If not present the time interval to be considered valid to reach the minimum amount is infinite.
<br>
- `timeFrame` (optional) specifies the time, in seconds, to be considered for reaching the specified amount. If not present the time interval to be considered valid to reach the minimum amount is infinite.