Reputation: 1906
is it possible to cast m3u8 file.? I am using avplayer. In google cast site they mentioned that it only support formats : - AAC MP3 MP4 WAV WebM
link : https://developers.google.com/cast/docs/media
If m3u8 is supporting, how can I implement it programatically?
Upvotes: 0
Views: 4624
Reputation: 19034
m3u8 playlists are supported. You can read the docs; there is not much difference between casting an mp4 or m3u8; you may need to make sure CORS headers are sent from the content server. To see an example, look at the official sample CastVideos-android sample that can play such content.
Upvotes: 2