DvorakDwarf / Infinite-Storage-Glitch

ISG lets you use YouTube as cloud storage for ANY files, not just video
GNU General Public License v3.0
11.43k stars 909 forks source link

Multithread Support #67

Closed DeEskalator closed 1 year ago

DeEskalator commented 1 year ago

I compiled it for macOS and I mean it is pretty quick, but could there be some multithread support be added to speed up things?

Screenshot 2023-02-25 at 00 09 50
DvorakDwarf commented 1 year ago

105% Efficiency

DeEskalator commented 1 year ago

Found this flag in args.rs.

    /// Threads to use when encoding
    #[arg(long)]
    pub threads: Option<usize>,

How do I set it to five threads?

foodornt commented 1 year ago

Found this flag in args.rs.

    /// Threads to use when encoding
    #[arg(long)]
    pub threads: Option<usize>,

How do I set it to five threads?

cargo run -- embed --threads=5 I guess?