av-stream-info-rust

Check a http/https address if it leads to an audio or a video stream. Analyze the stream's metainformation.

It only uses the HTTP header fields and the first 50 bytes to analyze the stream.

Example

Check url for audio/video stream.

```rust use avstreaminfo_rust;

let list = avstreaminfo_rust::check("https://example.com/test.m3u", 10, 3, 3); for item in list { println!("{:?}", item); } ```

Recognized headers

Additional information