python-flashmedia icon indicating copy to clipboard operation
python-flashmedia copied to clipboard

A Python library for manipulating various Flash related file formats and packets.

Results 1 python-flashmedia issues
Sort by recently updated
recently updated
newest added

```python class AMFMessage(Packet): @property def size(self): size = 4 size += AMF0String.size(self.target_uri) size += AMF0String.size(self.response_uri) size += AMF0Value.size(self.value) return size ``` Why size is set that way? And what is...