Is there any way to implement a search when streaming video over HTTP with range headers?
We implemented the server using the range header for streaming video over the http protocol, and it works great if we play through the Chrome browser.
But in android, VideoView and MediaPlayer are capable of transmitting data. But the problem occurs when streaming.
1) When we use MediaPlayer, we can only search for buffered video. If we try to find outside the buffer, it will stop playing.
2) We tried to use the Vitamio library, but this does not allow us to search. But he starts to play from the very beginning. (I do not know why)
source
share