We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0254bf7 commit dedab05Copy full SHA for dedab05
rust/src/ffmpeg.rs
@@ -217,7 +217,8 @@ pub fn record_desktop_with_ffmpeg(
217
&recording_name,
218
))
219
} else {
220
- let env_display = env::var(ENV_DISPLAY).unwrap_or_default();
+ let env_display = ":99".to_string();
221
+ // let env_display = env::var(ENV_DISPLAY).unwrap_or_default();
222
Command::new_single(format_four_args(
223
get_recording_command(os),
224
&path_to_string(&ffmpeg_path),
rust/tests/record_tests.rs
@@ -45,5 +45,5 @@ fn test_record() {
45
}
46
};
47
println!("Recording test status code: {:?}", status_code);
48
- panic!("Forced error");
+ // panic!("Forced error");
49
0 commit comments