What is Stream_204? #191
-
So, I'm also working with YouTube on the Wii and whenever I try to play a video it requests from s.youtube.com/stream_204. I've tried researching on what it is or was and couldn't find anything about it. So if anyone knows about this, please let me know |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
may be ads, since it is blocked in many hosts files |
Beta Was this translation helpful? Give feedback.
-
stream_204 and player_204 are logging requests, which could explain it being blocked described above. HOWEVER /stream_204 requests could also be made in case there was an error with video playback. in case of wii's apiplayer, a however, as an example string you may find:
there will be several matches like this, all of which you can look at the function name and add that to the for example, such you can change the
could become
while this could now send a /player_204 instead of /stream_204 ( |
Beta Was this translation helpful? Give feedback.
-
Ok, Thank you for responding, this helps me out a lot |
Beta Was this translation helpful? Give feedback.
-
Ok, so I figured all that out and I did do the thing where you can make it download a flv and.... |
Beta Was this translation helpful? Give feedback.
-
This might be a problem with the instance you’re using. If you have access to the instance's logs I suggest checking them and seeing if you notice anything off. |
Beta Was this translation helpful? Give feedback.
stream_204 and player_204 are logging requests, which could explain it being blocked described above. HOWEVER /stream_204 requests could also be made in case there was an error with video playback.
in case of wii's apiplayer, a
logPlayerEvent
function is used to initiate sending such requests, and if you're looking for the source ofstream_204
requests, they are made whenever logData isstreamingerror
, which should sound pretty self-explanatory.however, as
streamingerror
itself in an error request can be pretty vague, you CAN text search forstreamingerror
within the apiplayer swf and findlogPlayerEvent
s that mentionstreamingerror
.an example string you may find: