media/docs
andrewlewis 9c27cfcda7 Fix parameter names on overridden methods
The dokka javadoc generation tool complains when parameter names don't match between a method and its override. This change updates occurrences where there is currently a mismatch.

Notable renamings that might be controversial:
- `onPlaybackStateChanged(int state)` to `onPlaybackStateChanged(int playbackState)` affected a lot of lines but seems more consistent with other '-Changed' methods.
- `handleMessage(int messageType, Object payload)` to `handleMessage(int messageType, Object message)`
- `ExtractorInput` and `DataSource` inherit `DataReader` which had `read(byte[] target, ...`, while data sources normally called the first parameter `buffer`. I have standardized these all to use `buffer` even though it looks out of place in the `ExtractorInput` interface (which has more `read` methods with `target`).

PiperOrigin-RevId: 387290360
2021-07-28 09:15:29 +01:00
..
_data Add exoplayer.dev page for network stack integration 2021-07-27 12:20:43 +01:00
_includes Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
_layouts Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
_page_fragments Cleanup some RTSP documentation 2021-07-21 18:58:47 +01:00
_sass Rollback of 4c10d2bd4c 2021-07-23 14:14:31 +01:00
assets Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
doc/reference Update javadoc for 2.14.2 2021-07-21 14:51:49 +01:00
images Fix diagram name typo 2021-07-20 08:51:12 +01:00
issues Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
.hgignore Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
404.html Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
_config.yml Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
ad-insertion.md Use the content URI as well as mediaId for the auto-generated ad ID 2021-07-09 08:52:51 +01:00
analytics.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
battery-consumption.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
CNAME Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
customization.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
dash.md Update dev guide to use non-deprecated factory 2021-07-27 12:27:23 +01:00
debug-logging.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
demo-application.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
design-documents.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
downloading-media.md Update dev guide to use non-deprecated factory 2021-07-27 12:27:23 +01:00
drm.md Remove reference to Issue #4133 in exoplayer.dev/drm 2021-05-17 18:17:54 +01:00
Gemfile Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
glossary.md Fix diagram name typo 2021-07-20 08:51:12 +01:00
hello-world.md Document that apps must depend on a consistent module version 2021-07-20 08:48:36 +01:00
hls.md Update dev guide to use non-deprecated factory 2021-07-27 12:27:23 +01:00
index.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
LICENSE Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
listening-to-player-events.md Make onPlayerError take a PlaybackException 2021-06-21 22:15:01 +01:00
live-streaming.md Fix parameter names on overridden methods 2021-07-28 09:15:29 +01:00
media-items.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
media-sources.md Fix RTSP link 2021-07-21 14:35:35 +01:00
network-stacks.md Add exoplayer.dev page for network stack integration 2021-07-27 12:20:43 +01:00
oems.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
playlists.md Deprecate EventListener in favor of Listener 2021-04-30 18:56:35 +01:00
progressive.md Update dev guide to use non-deprecated factory 2021-07-27 12:27:23 +01:00
pros-and-cons.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
README.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
retrieving-metadata.md Fix Metadata.Entry link 2021-07-20 08:56:43 +01:00
rtsp.md Cleanup some RTSP documentation 2021-07-21 18:58:47 +01:00
run_locally.sh Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
shrinking.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
smoothstreaming.md Update dev guide to use non-deprecated factory 2021-07-27 12:27:23 +01:00
supported-devices.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
supported-formats.md Add dev guide for RTSP. 2021-05-12 11:50:31 +01:00
track-selection.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
transforming-media.md Move docs to correct folder for GitHub Pages 2021-04-21 11:00:57 +01:00
troubleshooting.md Update links for new Javadoc 2021-05-17 18:20:33 +01:00
ui-components.md Update links for new Javadoc 2021-05-17 18:20:33 +01:00

ExoPlayer website

The ExoPlayer website is hosted on GitHub Pages, and is statically generated using Jekyll.

  • GitHub provides a guide describing how to setup a GitHub Pages site using Jekyll here.
  • GitHub provides a guide describing how to test changes to the site locally here. Once your machine is setup, you can build and run a local instance of the site using ./run_locally.sh from the root directory.