according to the Documentation, we can provide the Http URL for the MediaExtractor API as a data source.
Click here for the document . My question is: can we provide Http Live Stream as a data source for MediaExtractor? eg
MediaExtractor mediaExtractor = new MediaExtractor();
mediaExtractor.setDataSource("https://www.youtube.com/watch?v=qybUFnY7Y8w");//this works fine
But what about live streams?
MediaExtractor mediaExtractor = new MediaExtractor();
mediaExtractor.setDataSource("http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8");
source
share