get_bytes(arg0: mediapipe.python._framework_bindings.packet.Packet) -> bytes
mp.packet_getter.get_bytes()
Get the content of a MediaPipe string Packet as a bytes object.
Args: packet: A MediaPipe string Packet.
Returns: A bytes object.
Raises: ValueError: If the Packet doesn't contain string data.
Examples: packet = mp.packet_creator.create_string(b'\xd0\xd0\xd0') data = mp.packet_getter.get_bytes(packet)