Thanks to visit codestin.com
Credit goes to github.com

Skip to content

d3vil-st/amfconv

Repository files navigation

AMF encoding/decoding library for Go

The Adobe Integrated Runtime and Adobe Flash Player use AMF to communicate between an application and a remote server. AMF encodes remote procedure calls (RPC) into a compact binary representation that can be transferred over HTTP/HTTPS or the RTMP/RTMPS protocol. Objects and data values are serialized into this binary format, which increases performance, allowing applications to load data up to 10 times faster than with text-based formats such as XML or SOAP.

AMF0

  • int / Number
  • float64 / Number
  • bool / Boolean
  • string / String
  • map[string]interface{} / Object
  • nil / Null
  • []interface{} / Array
  • time.Time / Date

AMF3

  • int, uint / Number
  • float64 / Number
  • bool / Boolean
  • string / String
  • nil / Null
  • time.Time / Date

Work in progress

About

amf converter for golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages