Skip to content

Commit

Permalink
chore(readme): updated readme with how to use the legacy protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
Kounex committed Jul 12, 2022
1 parent 96d053d commit 0a7f54f
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 20 deletions.
36 changes: 22 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# IMPORTANT

OBS WebSocket updated its protocol to version `5.X` which is not compatible to the previous versions `4.9.1` and below. I will work on supporting the new protocol in the feature - meanwhile you can download and install the `4.9.1-compat` version of the plugin to use this app.

Visit https://github.com/obsproject/obs-websocket/releases and scroll down to the list of assets and download&install one of those (depending on your operating system):

<img src="https://assets.kounex.com/images/obs-blade/legacy-support.png" width="320">

# OBS Blade

![alt text](https://assets.kounex.com/images/obs-blade/store_banner_3.png 'OBS Blade Store Banner')
Expand Down Expand Up @@ -35,23 +43,23 @@ OBS Blade is designed to be your stream companion and help you to manage your li

Currently OBS Blade supports:

- Start / stop the stream
- Changing the active scene
- Toggle visibility of scene items (like desktop capture etc.)
- Change the volume of your current audio sources (or mute them)
- View any Twitch chat and write messages
- See live statistics of your stream performance (FPS, CPU usage, kbit/s etc.)
- Start / stop the stream
- Changing the active scene
- Toggle visibility of scene items (like desktop capture etc.)
- Change the volume of your current audio sources (or mute them)
- View any Twitch chat and write messages
- See live statistics of your stream performance (FPS, CPU usage, kbit/s etc.)

OBS Blade also saves statistics of your previous streams so you can track the overall performance and some nice to know facts!

This app is still in its early stages and will get updated with new features over time - for now the main features which I want to add are:

- More engagement with OBS (renaming, sorting, scripted switching etc.)
- Export / merge statistics
- Enable Youtube chat
- Soundboard
- Incoming feature requests
- (Maybe) Streamlabs client connection
- More engagement with OBS (renaming, sorting, scripted switching etc.)
- Export / merge statistics
- Enable Youtube chat
- Soundboard
- Incoming feature requests
- (Maybe) Streamlabs client connection

I hope you have a good time using this app. If you encounter any bugs, have feature requests or anything similar, feel free to get in touch with me!

Expand All @@ -61,8 +69,8 @@ [email protected]

This App is available in the iOS App Store and the Google Play Store:

- [iOS App Store](https://apps.apple.com/de/app/obs-blade/id1523915884?l=en)
- [Google Play Store](https://play.google.com/store/apps/details?id=com.kounex.obsBlade)
- [iOS App Store](https://apps.apple.com/de/app/obs-blade/id1523915884?l=en)
- [Google Play Store](https://play.google.com/store/apps/details?id=com.kounex.obsBlade)

## Support me!

Expand Down
24 changes: 21 additions & 3 deletions lib/stores/views/intro.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions lib/views/intro/intro.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,10 @@ class _IntroViewState extends State<IntroView> {

_timerToContinue =
Timer.periodic(const Duration(seconds: 1), (timer) {
_slideLockSecondsLeft--;
if (_slideLockSecondsLeft <= 0) {
introStore.slideLockSecondsLeft--;
if (introStore.slideLockSecondsLeft <= 0) {
_timerToContinue!.cancel();
introStore.setLockedOnSlide(false);
_slideLockSecondsLeft = kSecondsToLockSlide;
}
});
}
Expand Down

0 comments on commit 0a7f54f

Please sign in to comment.