rtsp-rs icon indicating copy to clipboard operation
rtsp-rs copied to clipboard

An RTSP 2.0 implementation in Rust

Results 18 rtsp-rs issues
Sort by recently updated
recently updated
newest added

``` error[E0599]: no variant or associated item named `Overflow` found for enum `IntErrorKind` in the current scope --> rtsp-2/src/header/types/content_length.rs:199:27 | 199 | IntErrorKind::Overflow => Ok(Overflow), | ^^^^^^^^ variant or associated...

What's the status on the rtsp-1 crate? From what I can tell there is no support for it besides the `Version` enum. For reference, the RTSP 2.0 spec has a...

On running the client.rs, I had to do `//IntErrorKind::Overflow => Ok(Overflow),` but I got ``` extern crate rtsp; error[E0463]: can't find crate for `rtsp` --> rtsp-2/examples/client.rs:3:1 | 3 | extern...

Porting Tokio 0.1 code to stable async/await would be great to make this usable in modern Rust. If possible also drop the tokio dependency to be compatible with all executors.

Nightly features being used (or will be used): - try_from ~~(stable in 1.26)~~ - Non exhaustive enums - ~~compile_fail (stable in 1.22)~~ - ~~conservative_impl_trait (stable in 1.26)~~ - ~~slice_patterns (stable...

T-Feature/Enhancement
S-Blocked
P-Low
E-Easy

I like the way Hyper has strong types for headers (though it seems it's making it optional in an upcoming release). I'd like to do something similar if possible. -...

T-Feature/Enhancement
S-Available
P-Medium
E-Medium

I attempted to connect to an ip camera using the default RTSP version (`RTSP/2.0`); however, it seems that the camera only supports `RTSP/1.0`. In this case, the client prints: ```...

T-Feature/Enhancement
T-Bug
S-Available
P-Medium
E-Medium

https://github.com/servo/rust-url seems to be actively worked on and hyper::uri also seems to be used in some networking code samples I've seen. The [sgodwincs/uriparse-rs](https://github.com/sgodwincs/uriparse-rs) [README](https://github.com/sgodwincs/uriparse-rs/blob/master/README.md) says "The goal of this crate...

T-Question

In the section on RTSP URIs and IRIs, the specification creates a constraint on the use of the `';'` separator in path components: ``` The RTSP IRI and URI are...

T-Feature/Enhancement
S-Available
P-Low
E-Easy

The specification states that while the syntax of a request URI must strictly be a URI, users should be able to specify a IRI and have it be converted to...

T-Feature/Enhancement
S-Available
P-Low
E-Hard