diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-23 04:09:39 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-23 04:09:39 +0100 |
| commit | be7d35ccbb3449332700a0d9ccb1b055e041e401 (patch) | |
| tree | f0475a748de7ccdcc29eb29a0a4e5cff4dfb96e3 /stream | |
| parent | 823c0c6b1c857da62e472a2feda167379691288f (diff) | |
| download | jellything-be7d35ccbb3449332700a0d9ccb1b055e041e401.tar jellything-be7d35ccbb3449332700a0d9ccb1b055e041e401.tar.bz2 jellything-be7d35ccbb3449332700a0d9ccb1b055e041e401.tar.zst | |
update some book things
Diffstat (limited to 'stream')
| -rw-r--r-- | stream/src/stream_info.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs index 694a44f..3312c71 100644 --- a/stream/src/stream_info.rs +++ b/stream/src/stream_info.rs @@ -90,12 +90,12 @@ fn stream_formats(config: &Config, t: &TrackEntry, remux_bitrate: f64) -> Vec<St let sw = t.video.as_ref().unwrap().pixel_width; let sh = t.video.as_ref().unwrap().pixel_height; for (w, br) in [ - (3840, 6000e3), - (1920, 5000e3), - (1920, 2000e3), - (1280, 1500e3), - (640, 800e3), - (320, 200e3), + (3840, 6e6), + (1920, 5e6), + (1920, 2e6), + (1280, 1.5e6), + (640, 0.8e6), + (320, 0.2e6), ] { if w > sw { continue; |