Open source media manager
Find a file
2025-02-19 09:03:24 +05:30
.github/workflows fix: removed android tv from the build 2025-01-31 20:09:38 +05:30
android fix: prerelease 2025-01-30 21:58:43 +05:30
assets fix: prerelease 2025-01-30 21:58:43 +05:30
ios fix: small changes 2025-02-19 09:03:24 +05:30
lib fix: small changes 2025-02-19 09:03:24 +05:30
linux fix: small changes 2025-02-19 09:03:24 +05:30
macos fix: small changes 2025-02-19 09:03:24 +05:30
messages fix: small changes 2025-02-19 09:03:24 +05:30
native/hub fix: small changes 2025-02-19 09:03:24 +05:30
test_web Project import generated by Copybara. 2025-01-02 18:46:26 +00:00
web Project import generated by Copybara. 2025-01-06 04:48:48 +00:00
windows fix: small changes 2025-02-19 09:03:24 +05:30
.gitignore fix: small changes 2025-02-19 09:03:24 +05:30
.gitlab-ci.yml Project import generated by Copybara. 2025-01-02 18:46:26 +00:00
.metadata Project import generated by Copybara. 2025-01-02 18:46:26 +00:00
analysis_options.yaml Project import generated by Copybara. 2025-01-02 18:46:26 +00:00
Cargo.lock fix: small changes 2025-02-19 09:03:24 +05:30
Cargo.toml fix: small changes 2025-02-19 09:03:24 +05:30
copy.bara.sky Project import generated by Copybara. 2025-01-02 18:46:26 +00:00
devtools_options.yaml Project import generated by Copybara. 2025-01-02 18:46:26 +00:00
LICENSE Project import generated by Copybara. 2025-01-02 18:51:56 +00:00
Makefile fix: small changes 2025-02-06 23:08:55 +05:30
pubspec.lock fix: small changes 2025-02-19 09:03:24 +05:30
pubspec.yaml fix: small changes 2025-02-19 09:03:24 +05:30
README.md fix: small changes 2025-02-19 09:03:24 +05:30

Open Source Media Manager

An open-source media manager app built with Flutter, designed to stream videos from Stremio addons. This project aims to provide an easy-to-use platform for managing and streaming media content.

Features

  • Stream Videos from various Stremio addons.
  • Cross-Platform Support: Works on Android, iOS supported by Flutter.
  • Open Source: Contributions are welcome!

Screenshots

Application Screenshot

Getting Started

Prerequisites

  • Dart SDK and Flutter installed on your machine.
  • Ensure you have all necessary dependencies for Flutter projects.

Local Development

To build and run the project locally, use the following command:

dart run build_runner build --delete-conflicting-outputs

Running the App

  1. Clone this repository.
  2. Navigate to the project directory.
  3. Run the app using Flutter's run command:
flutter run

Contributing

Contributions, issues, and feature requests are welcome!
Feel free to fork the repository and submit a pull request.

This application is designed to be an open source media player that can process URLs and add-ons.

The developers of Madari:

Do not host, develop, or distribute any content Do not endorse or promote copyright infringement or illegal activities Are not responsible for third-party add-ons or content accessed through them Expect users to respect intellectual property rights and their local laws

Users are solely responsible for the add-ons they install and content they access through the application.

Using Rust Inside Flutter

This project leverages Flutter for GUI and Rust for the backend logic, utilizing the capabilities of the Rinf framework.

To run and build this app, you need to have Flutter SDK and Rust toolchain installed on your system. You can check that your system is ready with the commands below. Note that all the Flutter subcomponents should be installed.

rustc --version
flutter doctor

You also need to have the CLI tool for Rinf ready.

cargo install rinf

Messages sent between Dart and Rust are implemented using Protobuf. If you have newly cloned the project repository or made changes to the .proto files in the ./messages directory, run the following command:

rinf message

Now you can run and build this app just like any other Flutter projects.

flutter run

For detailed instructions on writing Rust and Flutter together, please refer to Rinf's documentation.