Skip to content

Commit

Permalink
Update README.md with video tutorials and additional guides
Browse files Browse the repository at this point in the history
  • Loading branch information
royshil committed Apr 25, 2024
1 parent 266e939 commit fb5f0d7
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 3 deletions.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,19 @@ It is written in Python and utilizes the following technologies:

## Usage

Videos and tutorials will be provided shortly.
Very short video tutorials:

<div>
<a href="https://youtu.be/wMNolI0w0tE" target="_blank"><img src="docs/image-16.png" width="30%"/></a>
<a href="https://youtu.be/ACY4-yT3x84" target="_blank"><img src="docs/image-17.png" width="30%"/></a>
<a href="https://youtu.be/yowoYzBWrps" target="_blank"><img src="docs/image-18.png" width="30%"/></a>
<a href="https://youtu.be/ptR-Yh5FSPg" target="_blank"><img src="docs/image-19.png" width="30%"/></a>
</div>

Additional guides:

- [How to use the internal HTTP server](docs/http_server.md)
- [How to connect to vMix](docs/vmix.md)

## Installation

Expand Down
Binary file added docs/image-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/image-17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/image-18.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/image-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/image-20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions screen_capture_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ def read(self):
# This is a simple example of how to use the screen capture source in the
# platform-independent part of the code.
if platform.system() == "Darwin":
from screen_capture_source_mac import ScreenCaptureMacOS as ScreenCapture
from screen_capture_source_mac import ScreenCaptureMacOS
ScreenCapture = ScreenCaptureMacOS
elif platform.system() == "Windows":
from screen_capture_source_windows import ScreenCaptureWindows as ScreenCapture
from screen_capture_source_windows import ScreenCaptureWindows
ScreenCapture = ScreenCaptureWindows
else:
ScreenCapture = ScreenCaptureNotImplemented

0 comments on commit fb5f0d7

Please sign in to comment.