Skip to content

Commit

Permalink
chore: default fps 5 -> 1, should target for 30gb/m while not losing …
Browse files Browse the repository at this point in the history
…crucial information. i dont think there are more than 1 screen switch per second
  • Loading branch information
louis030195 committed Jul 17, 2024
1 parent ad64606 commit a395f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions screenpipe-server/src/bin/screenpipe-server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const DISPLAY: &str = r"
#[command(author, version, about, long_about = None)]
struct Cli {
/// FPS for continuous recording
#[arg(short, long, default_value_t = 5.0)]
#[arg(short, long, default_value_t = 1.0)]
fps: f64,

/// Audio chunk duration in seconds
Expand Down Expand Up @@ -73,7 +73,7 @@ struct Cli {
list_audio_devices: bool,

/// Data directory
#[arg(long, default_value_t = String::from("./data"))]
#[arg(long, default_value_t = String::from("./data"))] // TODO $HOME/.screenpipe
data_dir: String,

/// Enable debug logging for screenpipe modules
Expand Down

0 comments on commit a395f81

Please sign in to comment.