MediaWiki API help

This is an auto-generated MediaWiki API documentation page.

Documentation and examples: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page

action=wikispeech-segment

(main | wikispeech-segment)

Split a page's HTML content into segments.

Specific parameters:
Other general parameters are available.
page

The title of the page to segment.

This parameter is required.
removetags

HTML tags that should be removed completely during cleaning, as a JSON object of the format:

{
	"tag1": true,
	"tag2": "css-class",
	"tag3": ["css-class-1", "css-class-2"]
}

where tag1 is always removed, tag2 is only removed if it also has the CSS class css-class and tag3 is only removed if it also has the CSS class css-class-1 or css-class-2. Be aware that wikispeech-listen uses default configuration for segmenting and might not be compatible with segments produced with an ad hoc setting of this parameter.

Default: {"span":"mw-editsection","table":true,"sup":"reference","div":["thumb","toc"]}
segmentbreakingtags

HTML tags that should breaks segments. Be aware that wikispeech-listen uses default configuration for segmenting and might not be compatible with segments produced with an ad hoc setting of this parameter.

Separate values with | or alternative.
Maximum number of values is 50 (500 for clients that are allowed higher limits).
Default: h1|h2|h3|h4|h5|h6|p|br|li
consumer-url

URL to the consumer wiki's script path.

Examples:
Segment the main page using default parameters from the config.
api.php?action=wikispeech-segment&format=json&page=Main_Page [open in sandbox]
Segment using custom parameters. The tag sup is removed and so is div when it has the class toc. The tags h1 and h2 break segments.
api.php?action=wikispeech-segment&format=json&page=Main_Page&removetags={"sup": true, "div": "toc"}&segmentbreakingtags=h1|h2 [open in sandbox]
Segment the main page on another wiki.
api.php?action=wikispeech-segment&format=json&page=Main_Page&consumer-url=https://consumer.url/w [open in sandbox]