Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amanmj/exoplayer_temp
An Android app to play a "song.mp3" file present in the root directory of SD Card using AssetDataSource where a custom InputStream named "myInputStream" is provided.
https://github.com/amanmj/exoplayer_temp
Last synced: about 1 month ago
JSON representation
An Android app to play a "song.mp3" file present in the root directory of SD Card using AssetDataSource where a custom InputStream named "myInputStream" is provided.
- Host: GitHub
- URL: https://github.com/amanmj/exoplayer_temp
- Owner: amanmj
- Created: 2016-01-04T16:20:14.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-15T06:53:40.000Z (almost 9 years ago)
- Last Synced: 2023-03-02T13:46:58.755Z (almost 2 years ago)
- Language: Java
- Homepage:
- Size: 12 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Modified Exoplayer to play an audio in the form of stream of bytes
An Android app to play a "song.mp3" file present in the root directory of SD Card using AssetDataSource where a custom InputStream named "myInputStream" is provided.
Currently exoplayer does not support any datasource where we can feed an inputstream directly to play an audio file unlike AudioTrack API.
This is an example where "myDataSource" (similar to AssetDataSource) uses "myInputStream" to play an audio file in the form of bytes.