Coder Social home page Coder Social logo

adrenak / amazonflingunity Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 1.77 MB

A Unity wrapper over Amazon Fling SDK to cast videos to FireTV and Firestick devices. Currently supports only Android and only second screen applications (phone controller/remote).

License: MIT License

C# 100.00%
android cast firestick firetv ott unity unity3d video

amazonflingunity's Introduction

AmazonFlingUnity

Note that this is only for Android devices (currently).

Amazon Fling Untiy plugin has a .so file that is supposed to be for ARM64 devices, but has actually been build for 32 bit architecture. This makes it impossible to release an app on Google Play, as it requires apks to have 64-bit support.

This wrapper works by directly invoking the Fling jar files and provides C# classes that act as proxy for typesafety and other C# benefits. The jar files in this repo are the ones released in 2020 (Amazon did release iOS and Android SDK updates in 2020 but the Unity plugin hasn't been updated since 2018).

Readme, docs and samples coming soon. Until then, this is a good starting point to start testing:

using System.Collections.Generic;
using UnityEngine;
using Adrenak.AmazonFlingUnity;
using System.Linq;

// Attach this script to a gameobject in your test scene.
public class FlingTest : MonoBehaviour {
    DiscoveryController controller;
    List<RemoteMediaPlayer> players = new List<RemoteMediaPlayer>();

    void Start() {
        controller = new DiscoveryController();
        controller.Start(new IDiscoveryListener()
            .OnPlayerDiscovered(discovered => {
                // if the players list doesn't contain an element with the same unique ID, add the new player
                if(players.Where(p => p.GetUniqueIdentifier().Equals(discovered.GetUniqueIdentifier())).Count() == 0)
                    players.Add(discovered);
            })
            .OnPlayerLost(lost => {
                // Update the players list by excluding any elements that have the same unique ID
                players = players.Where(p => p.GetUniqueIdentifier().Equals(lost.GetUniqueIdentifier())).ToList();
            }));
    }

    // Invoke this using a UI button or something
    public void Play() {
        if(players.Count > 0)
            players[0].SetMediaSource("http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4", "Big Buck Bunny", true, true);
        else
            Debug.Log("No players available!");
    }
}

amazonflingunity's People

Contributors

adrenak avatar semantic-release-bot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.