All Projects → PatilShreyas → Livestream Flutter

PatilShreyas / Livestream Flutter

Licence: mit
Dart package to which makes data communication easy among different modules of your application.

Programming Languages

dart
5743 projects
dartlang
94 projects

Projects that are alternatives of or similar to Livestream Flutter

Ipfs Live Streaming
Like HTTP live streaming, but with IPFS which is maybe better?
Stars: ✭ 301 (+301.33%)
Mutual labels:  livestream
Owncast
Take control over your live stream video by running it yourself. Streaming + chat out of the box.
Stars: ✭ 5,382 (+7076%)
Mutual labels:  livestream
Ksyrtclive android
金山云Android自主研发连麦SDK,支持连麦方实时通讯,同时完成推流功能 https://github.com/ksvc/KSYRTCLive_Android/wiki
Stars: ✭ 32 (-57.33%)
Mutual labels:  livestream
Node Stream
RTMP server in Nodejs for live streaming.
Stars: ✭ 320 (+326.67%)
Mutual labels:  livestream
Evilslive
This project is a SDK about video stream live
Stars: ✭ 420 (+460%)
Mutual labels:  livestream
Ksystreamer android
金山云Android采集推流SDK(Livestream SDK),支持内置/自定义美颜(Beauty Filter)、美声(Beauty Voice)、软硬编(Software/Hardware Encoder) 、网络自适应(Network Auto Adapt)、混音(Voice Mixer)、混响(Reverb)、画中画(PIP)、连麦(RTC)、动态贴纸(Sticker)、大眼瘦脸(Bigger Eyes and Smaller Faces)
Stars: ✭ 702 (+836%)
Mutual labels:  livestream
Live Stream Recorder
Monitor and record live streams from YouTube, OPENREC, TwitCasting, etc. Made for VTuber fans. (VTuber 直播自动录像脚本)
Stars: ✭ 260 (+246.67%)
Mutual labels:  livestream
Greencam
a virtual green backdrop for OBS Studio
Stars: ✭ 63 (-16%)
Mutual labels:  livestream
Pylivestream
Pure Python FFmpeg-based live video / audio streaming to YouTube, Facebook, Periscope, Twitch, and more
Stars: ✭ 442 (+489.33%)
Mutual labels:  livestream
Ksylive ios
金山云直播SDK [ iOS推流+播放 ]融合版 支持美颜滤镜(Beauty Filter)、美声(Beauty Voice)、软硬编(Software/Hardware Encoder) 、网络自适应(Network Auto Adapt)、混音(Audio Mixer)、混响(Reverb)、画中画(PIP)
Stars: ✭ 861 (+1048%)
Mutual labels:  livestream
Pyinstalive
Python script to download Instagram livestreams and replays.
Stars: ✭ 336 (+348%)
Mutual labels:  livestream
Node Media Server
A Node.js implementation of RTMP/HTTP-FLV/WS-FLV/HLS/DASH/MP4 Media Server
Stars: ✭ 4,433 (+5810.67%)
Mutual labels:  livestream
Streamlink
Streamlink is a CLI utility which pipes video streams from various services into a video player
Stars: ✭ 6,883 (+9077.33%)
Mutual labels:  livestream
Monibuca
🧩 Monibuca is a Modularized, Extensible framework for building Streaming Server
Stars: ✭ 307 (+309.33%)
Mutual labels:  livestream
Spionio
Lightweight focus group management platform that can capture and replay user interaction on your site and improve the UX in everything you build
Stars: ✭ 40 (-46.67%)
Mutual labels:  livestream
Legalstream
An m3u8 playlist featuring many LEGALLY FREE IPTV streams. For use with VLC.
Stars: ✭ 299 (+298.67%)
Mutual labels:  livestream
Livego
live video streaming server in golang
Stars: ✭ 7,312 (+9649.33%)
Mutual labels:  livestream
Exoplayer 2 Example
Android example apps
Stars: ✭ 70 (-6.67%)
Mutual labels:  livestream
Lushi8
A tutorial for building your own collection of livestream
Stars: ✭ 47 (-37.33%)
Mutual labels:  livestream
Real Live
A cross-platform network media aggregation application.
Stars: ✭ 942 (+1156%)
Mutual labels:  livestream

LiveStream - Dart

Pub Github Followers GitHub stars GitHub forks GitHub watchers Twitter Follow

LiveStream is a data holder class which can observe change of data in real-time and emit values too. Here's emitter subscriber pattern. It's developed in pure Dart.

⚡️ Getting Started

Add Dependency

Add below dependency in pubspec.yaml.

dependencies:
  livestream: ^1.0.2

Initialize LiveStream Instance

You can create instance as below.

  LiveStream liveStream = new LiveStream();

Subscribe to Stream / Add Observer

LiveStream event will be dispatched when data is changed. See below code to add observer / subscriber.

    liveStream.on("chat-message", (message) {
      print("Message Received: $message");
    });

Whenever data is emitted to chat-message channel/stream above block will be executed.

Emitting Events or Broadcasting

The main idea behind LiveStream is that you can send and receive any events you want, with any data you want. Any objects that can be encoded as JSON will do, and binary data is supported too. See code below.

  void send() {
      String message = "Hi there!";
      liveStream.emit("chat-message", message);
  }

🚀 Sample Usage

Sample code is available in /example directory.

🤝 Contribute

If you want to contribute to this library, you're always welcome! See Contributing Guidelines.

✉️ Contact

If you need any help, you can connect with me.

Visit:- shreyaspatil.dev

📃 License

MIT License

Copyright (c) 2020 Shreyas Patil

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].