All Projects → Metrological → maf3-sdk

Metrological / maf3-sdk

Licence: other
Metrological Application Framework SDK - Develop TV Apps

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to maf3-sdk

fuc
Frequently used commands in bioinformatics
Stars: ✭ 23 (-55.77%)
Mutual labels:  maf
libdvbtee
dvbtee: a digital television streamer / parser / service information aggregator supporting various interfaces including telnet CLI & http control
Stars: ✭ 65 (+25%)
Mutual labels:  tv-apps
stb.core
A NEW ECOSYSTEM OF SOFTWARE SERVICES DRIVEN BY BLOCKCHAIN
Stars: ✭ 15 (-71.15%)
Mutual labels:  stb
DelphiStb
Delphi Stb translations
Stars: ✭ 20 (-61.54%)
Mutual labels:  stb
stb-truetype-example
Example of how to use stb_truetype library for rendering TrueType fonts.
Stars: ✭ 51 (-1.92%)
Mutual labels:  stb
StbSharp
C# port of the famous C framework
Stars: ✭ 62 (+19.23%)
Mutual labels:  stb
lrud
Left, Right, Up, Down. A spatial navigation library for devices with input via directional controls
Stars: ✭ 31 (-40.38%)
Mutual labels:  tv-apps
sdl stb font
Renders text using STB_Truetype in pure SDL
Stars: ✭ 40 (-23.08%)
Mutual labels:  stb
TvPlayer
android智能电视播放器,可以播放各电视台节目,播放基于ijkplayer的实现。
Stars: ✭ 46 (-11.54%)
Mutual labels:  tv-apps
picol
(Fossil repository mirror) A tiny interpreter
Stars: ✭ 19 (-63.46%)
Mutual labels:  stb
Variants2Neoantigen
A neoantigen calling pipeline begins from variants record file (MAF) (Not maintain now)
Stars: ✭ 27 (-48.08%)
Mutual labels:  maf
AndroidTVMovieParadise
Movie Paradise is an Android TV 📺 app. ExoPlayer, Dagger 2, RxJava libraries are used.
Stars: ✭ 68 (+30.77%)
Mutual labels:  tv-apps

MAF SDK

The Metrological Application Framework SDK enables you to develop TV Apps

Getting Started

The getting started, design guidelines and API docs can be found on our SDK website.

Create an App

Create a folder in the "apps" folder using an unique identifier

  mkdir -p apps/com.company.app.AppName

Create the initial structure

  cd apps/com.company.app.AppName
  mkdir -p Contents/Images
  mkdir -p Contents/Javascript
  mkdir -p Contents/Localization
  touch Contents/Localization/en-EU.strings
  touch Contents/Javascript/init.js
  touch Contents/metadata.json

Example Contents/metadata.json

  {
    "identifier": "com.company.app.AppName",
    "name": "My App",
    "version": "1.0.0",
    "author": "My Name",
    "company": "My Company",
    "copyright": "Copyright Company",
    "description": "A description of the App",
    "keywords": "video funny kids music",
    "categories": [
      "video",
      "music",
      "kids"
    ],
    "scripts": "Javascript/init.js",
    "images": {
      "icon": {
        "192x192": "Images/icon.png"
      }
    }
  }

Example Contents/Javascript/init.js which is the first script loaded from the metadata.json (scripts)

  include("Javascript/Views/MainView.js");
  include("Javascript/Views/AboutView.js");

  MAF.application.init({
    views: [
      { id: 'view-MainView', viewClass: MainView },
      { id: 'view-AboutView', viewClass: AboutView }
    ],
    defaultViewId: 'view-MainView',
    settingsViewId: 'view-AboutView'
  });

An empty template has been added into the SDK here

Adding the App

In the "index.html" add your App identifier to the "apps" array in the MAE object

  apps: [
    "com.company.app.AppName"
  ]

Starting the server

The SDK contains an HTTP server using Node.js, please run the following commands from the command line:

  npm install
  npm start

The SDK can then be launched in Safari or Chrome pointing it to http://localhost:8080

License

Please read and agree the the LICENSE before using the SDK.

Support

For support, please contact us via our Helpdesk.

Contribute

Would you like to join our team? Drop your details at [email protected]

Analytics

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].