We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The program could have a big speed up if the encoder and renderer are in two seperate threads.
The encoder gets frames and encodes them into a video. The renderer generates each frame and sends it to the encoder.
If the encoder and the renderer need the same time, then running them in parallel could half the total time to generate a video with rusvid.
Simple diagram:
sequenceDiagram Render->>+Encoder: frame 0 Render->>+Encoder: frame 1 Render->>+Encoder: frame 2 Render->>+Encoder: frame 3 Render->>+Encoder: frame ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The program could have a big speed up if the encoder and renderer are in two seperate threads.
The encoder gets frames and encodes them into a video.
The renderer generates each frame and sends it to the encoder.
If the encoder and the renderer need the same time, then running them in parallel could half the total time to generate a video with rusvid.
Simple diagram:
The text was updated successfully, but these errors were encountered: