Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 03-May-2024 | - | 7,096 | 4,528 | ||
README.md | D | 03-May-2024 | 820 | 31 | 18 | |
build.gradle | D | 03-May-2024 | 2.7 KiB | 67 | 60 |
README.md
1# Transformer module 2 3Provides functionality for transforming media files. 4 5## Getting the module 6 7The easiest way to get the module is to add it as a gradle dependency: 8 9```gradle 10implementation 'com.google.android.exoplayer:exoplayer-transformer:2.X.X' 11``` 12 13where `2.X.X` is the version, which must match the version of the other media 14modules being used. 15 16Alternatively, you can clone this GitHub project and depend on the module 17locally. Instructions for doing this can be found in the [top level README][]. 18 19[top level README]: https://github.com/google/ExoPlayer/blob/release-v2/README.md 20 21## Using the module 22 23Use of the Transformer module is documented in the 24[developer guide](https://exoplayer.dev/transforming-media.html). 25 26## Links 27 28* [Javadoc][] 29 30[Javadoc]: https://exoplayer.dev/doc/reference/index.html 31