You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Its Expecting Byte form But got String in Videosocket.py Inside vsend function :
sent = self.sock.send(lengthstr[metasent:]) )
I Tried to Change to "sent = self.sock.send(lengthstr[metasent:].encode())"
Error goes but at decoding it doesnot works.
If its encoded using 'utf-8' , decoding is not properly done .While Decoding
Error says : UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
The text was updated successfully, but these errors were encountered:
(Its Expecting Byte form But got String in Videosocket.py Inside vsend function :
sent = self.sock.send(lengthstr[metasent:]) )
I Tried to Change to "sent = self.sock.send(lengthstr[metasent:].encode())"
Error goes but at decoding it doesnot works.
If its encoded using 'utf-8' , decoding is not properly done .While Decoding
Error says : UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
The text was updated successfully, but these errors were encountered: