Rtmp Implementation In Nodejs Is Possible?
i'm trying to make a implementation of RTMP in Node.js but after seeing the documentation and trying, i'm unable to, and i suspect this is not possible to make it seeing how node.j
Solution 1:
well, my answer was on the same documentation, if i don't call at all setEncoding() on the socket object returned by the Net module, i can receive a plain binary Buffer, that i can parse at will, so this seems to be possible.
still, the data received are not 0's (on bytes 5,6,7 and 8 there is 128 0 7 2) so i need to know how to correctly parse binary data, but at least for now, this seems to be possible.
Regards, Shadow.
Solution 2:
This is not an encoding issue (you are not screwing it up). The closest explanation I could find is in Red5's source:
Somehow that field is used to transmit the version of the implementation.
Post a Comment for "Rtmp Implementation In Nodejs Is Possible?"