We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e249093 commit e0c562dCopy full SHA for e0c562d
1 file changed
crates/export/src/mp4.rs
@@ -49,8 +49,8 @@ impl Mp4ExportSettings {
49
info!("Exporting mp4 with settings: {:?}", &self);
50
info!("Expected to render {} frames", base.total_frames(self.fps));
51
52
- let (tx_image_data, mut video_rx) = tokio::sync::mpsc::channel::<(RenderedFrame, u32)>(32);
53
- let (frame_tx, frame_rx) = std::sync::mpsc::sync_channel::<MP4Input>(32);
+ let (tx_image_data, mut video_rx) = tokio::sync::mpsc::channel::<(RenderedFrame, u32)>(8);
+ let (frame_tx, frame_rx) = std::sync::mpsc::sync_channel::<MP4Input>(8);
54
55
let fps = self.fps;
56
0 commit comments