Crate av_stream_info_rust

Source
Expand description

This library can analyze a http/https address and check if leads to an audio or a video stream If so, then it will extract information about the stream from its metadata or in case of HLS streams from its master playlist file.

§Example

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

Structs§

  • Represents a geo-location with latitude and longitude. It can be constructed from a String.
  • Does contain decoded information from a stream information file
  • A check result for a single url
  • Information extracted from a stream

Enums§

Functions§