Skip to content

Commit

Permalink
Goddammit
Browse files Browse the repository at this point in the history
  • Loading branch information
Speykious committed Feb 19, 2022
1 parent 64a0da1 commit 94c0791
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ When you SeeShark, you C#!

SeeShark is a simple cross-platform .NET library for handling camera and screen display inputs on Linux, Windows and MacOS.

Using FFmpeg, it allows you to enumerate camera devices and decode raw frames in 199 different pixel formats (because that's how powerful FFmpeg is!).
Using FFmpeg, it allows you to enumerate camera and display devices and decode raw frames in 206 different pixel formats (because that's how powerful FFmpeg is!).

Features include:
- Zero-copy.
Expand Down Expand Up @@ -54,10 +54,10 @@ namespace YourProgram
// Attach your callback to the camera's frame event handler
camera.OnFrame += FrameEventHandler;

// Start decoding frames
// Start decoding frames asynchronously
camera.StartCapture();

// The camera decodes frames asynchronously.
// Just wait a bit
Thread.Sleep(TimeSpan.FromSeconds(10));

// Stop decoding frames
Expand All @@ -79,7 +79,6 @@ namespace YourProgram
}
}
}

```

You can also look at our overcommented [`SeeShark.Example.Ascii`](./SeeShark.Example.Ascii/) program which displays your camera input with ASCII characters.
Expand Down

0 comments on commit 94c0791

Please sign in to comment.