Scott Lamb
Scott Lamb
The split debug symbols (aka "fission") would currently break backtraces, unfortunately: https://github.com/rust-lang/backtrace-rs/issues/287
Definitely not ideal, although I suspect none of the ones in that list are a major contribution to the binary size given the `cargo bloat` output.
As of 0.7.0, no duplicate packages! ``` [slamb@slamb-workstation ~/git/moonfire-nvr/server]$ cargo bloat --release --crates Finished release [optimized + debuginfo] target(s) in 0.05s Analyzing target/release/moonfire-nvr File .text Size Crate 0.6% 18.7% 982.2KiB...
With 0406e09, the binary shrunk from 154 MiB to 70 MiB. I'm still hoping to reduce it further with split debug info. From [this comment](https://github.com/rust-lang/rust/issues/34651#issuecomment-922454870) and [this PR](https://github.com/rust-lang/rust/pull/89819#issuecomment-1005936137) it looks...
Sorry, I'm just noticing this issue now. Are you still having this problem? The `http://ares:8080/api/?/api/?days=true&cameraConfigs=true` output says the main stream's maxEndTime90k is 146881976510898 (that's 2021-09-18T20:26:01:20898-07:00 as you can see via...
(Oh, yes, I made a typo in the UUID.) That response looks correct. Probably a Javascript-side problem then. Hmm, if you open up your browser's developer console and have the...
Hmm. The server is supposed to tell the browser what time zone to use for display. Looking more closely, its API response in your opening comment says `timeZoneName "US/Pacific\n"`. I...
My server-side time zone detection works like this: 1. try the `TZ` environment, which wasn't set until just now. 2. try seeing where a `/etc/localtime` symlink points, but it wasn't...
Sorry for the lack of documentation. > Curiously the same init segment id (5) is seen for two different streams. The init segment describes properties of the stream like resolution,...
The other headers are meant for creating a (so far unimplemented) single UI that supports both a scrub bar of history and live view. They (should) allow the streamed live...