Coder Social home page Coder Social logo

fabioassuncao / live-broadcaster Goto Github PK

View Code? Open in Web Editor NEW

This project forked from h7org/live-broadcaster

1.0 1.0 0.0 10.53 MB

Live Streaming Software for Mac and Windows built on Adobe AIR

License: GNU General Public License v3.0

HTML 9.01% Lua 0.41% CSS 0.15% ActionScript 88.89% AngelScript 0.74% Inno Setup 0.80%

live-broadcaster's Introduction

Live Broadcaster

Live Streaming Software for Mac and Windows built on Adobe AIR

Live Streaming Software

How to Use?

How to Debug?

  • Get Adobe Flash Builder
  • Install Java SE 6 for Mac or Windows
  • Download Apache Flex SDK installer, install Apache Flex SDK 4.16.1 with AIR 28 and set it as default SDK in Flash Builder
  • Clone or download project from https://github.com/H7ORG/Live-Broadcaster.git
  • Import project to Flash Builder
  • Edit API.properties. You can skip this but app won't fully work until you get your own google client id and secret for Youtube and Facebook app id for Facebook broadcasting
  • Select LiveBroadcaster.mxml in Flash Builder and try to Run or Debug as Desktop Application

How to make Release?

  • First test if you can debug from Flash Builder
  • Install Ant if you don't have it
  • Edit build.properties and add path to Windows or Mac Flex SDK (you should already have it after succesfull debug)
  • (Mac Only) Download and install Packager: http://s.sudre.free.fr/Software/Packages/about.html
  • Create or get your .p12 certificate and put it to builds/cert/ folder
  • Edit live_broadcaster/build.xml lines:
<property name="KEYSTORE" value="../builds/cert/Certificate.p12"/>
<property name="STOREPASS" value="CERTIFICATE_PASSWORD_HERE"/>
  • Run ant build from live_broadcaster folder
  • This should be enought to build unsigned *.pkg or *.exe installers

How to make signed installer?

  • You need a certificate in keychain for Mac OS or *.pfx file for Windows
  • (Mac Only) get certificate full name from keychain and update build.xml:
<target name="signpackage.mac" if="${MAC}">
  <exec executable="${PRODUCTSIGN}" failonerror="true">
    <arg value="--sign"/>
    <arg value="FULL CERTIFICATE NAME WITH (ABCDE12345)"/>
    <arg value="${TEMPPKG}"/>
    <arg value="${FINALPKG}"/>
  </exec>
  <delete file="${TEMPPKG}" />
</target>
  • (Windows only) put *.pfx file to builds/cert/ folder and update build.xml with path and password:
<target name="package.win" if="${WINDOWS}">
  <echo message="Signing package for Windows" />
  <exec executable="${basedir}/${ISCC}">
    <arg value="/smysigntool=${basedir}\..\builds\tools\iscc\signtool.exe sign /f ${basedir}\..\builds\cert\Certificate.pfx /p PFX_PASSWORD_HERE $f"/>
    <arg value="${basedir}\..\builds\LiveBroadcaster.iss"/>
  </exec>
</target>
  • (Windows only) Remove ; from ;SignTool=mysigntool in build/LiveBroadcaster.iss
  • Run ant build from live_broadcaster folder

live-broadcaster's People

Contributors

boganov avatar h7org avatar venczel avatar

Stargazers

 avatar

Watchers

 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.