I know that iOS AV player supplies a UUID session ID in the HTTP request header X-Playback-Session-Id when requesting content chunks from an HTTP streaming server.

What is the behavior of the Android media player in this case? Does it send its session ID to the server at all? If it does, what HTTP request header does it use for this purpose?

Thanks in advance for any feedback!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
+50

Having implemented an in-app HTTP server to stream data into an Android MediaPlayer, I am reasonably certain that the HTTP request does not include any session id header. As I remember it, the HTTP request is pretty basic.

The Android component that handles all that is called "libstagefright"... you can fish through the source code to see what it actually does. Here's one version of the relevant source file that isn't too old: https://github.com/nadlabak/android_frameworks_base/blob/gingerbread/media/libstagefright/NuHTTPDataSource.cpp

link|improve this answer
Thanks! Based on what I see in the code, the only header passed beyond the range- and timeout-related is the User-Agent header. – Olaf Jan 16 at 18:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.