#message-format #adobe #amf #serialization #deserialize #action #amf0

rml_amf0

Modules for handling the encoding and decoding of data with Adobe's Action Message Format 0 (AMF0 data format)

5 unstable releases

Uses old Rust 2015

0.3.0 Jan 12, 2022
0.2.0 Dec 2, 2021
0.1.2 Jan 6, 2021
0.1.1 Apr 15, 2018
0.1.0 Apr 15, 2018

#789 in Encoding

Download history 33/week @ 2024-07-22 38/week @ 2024-07-29 27/week @ 2024-08-05 28/week @ 2024-08-12 21/week @ 2024-08-19 55/week @ 2024-08-26 25/week @ 2024-09-02 23/week @ 2024-09-09 20/week @ 2024-09-16 111/week @ 2024-09-23 54/week @ 2024-09-30 12/week @ 2024-10-07 29/week @ 2024-10-14 33/week @ 2024-10-21 30/week @ 2024-10-28 19/week @ 2024-11-04

111 downloads per month
Used in 6 crates (via rml_rtmp)

MIT license

25KB
515 lines

This crate provides functions for the serialization and deserialization of AMF0 encoded data.

Documentation

https://docs.rs/rml_amf0/

Installation

This crate works with Cargo and is on crates.io. Add it to your Cargo.toml like so:

[dependencies]
rml_amf0 = "0.1"

Example

use std::io::Cursor;
use std::collections::HashMap;
use rml_amf0::{Amf0Value, serialize, deserialize};

// Put some data into the Amf0Value types
let mut properties = HashMap::new();
properties.insert("app".to_string(), Amf0Value::Number(99.0));
properties.insert("second".to_string(), Amf0Value::Utf8String("test".to_string()));

let value1 = Amf0Value::Number(32.0);
let value2 = Amf0Value::Boolean(true);
let object = Amf0Value::Object(properties);

let input = vec![value1, object, value2];

// Serialize the values into a vector of bytes
let serialized_data = serialize(&input).unwrap();

// Deserialize the vector of bytes back into Amf0Value types
let mut serialized_cursor = Cursor::new(serialized_data);
let results = deserialize(&mut serialized_cursor).unwrap();

assert_eq!(input, results);

Dependencies

~0.3–0.8MB
~19K SLoC