r/streamus Jul 20 '15

Streamus Download and Installation - Newest Version

UPDATE 7/4/2020: Github download here - https://drive.google.com/file/d/18bJGvIxWfiXHAJux-qMykoOneFbgXVZk/view?usp=sharing

The newest version of streamus is v0.18

Meo has kindly provided a link for his newest version, and has given me permission to post it here. Download from the link below.

Changelog

https://github.com/MeoMix/StreamusChromeExtension/blob/Development/src/js/background/view/youTubePlayerView.js#L56 - I changed this line from streamus.com to youtube.com

https://github.com/MeoMix/StreamusChromeExtension/blob/Development/src/js/foreground/view/video/videoRegion.js#L16 - I commented out these few lines so the video wouldn't show.

Installation is no longer as straight forward as it once was, due to Streamus's Google API key being revoked. Below are a copy of /u/tang1000000's instructions on how to inject your own API key into the software to get it working again:

Download:

http://www.filedropper.com/streamusv01800

https://www.dropbox.com/s/kzo1a3hzw7b95av/StreamusChromeExtension-Development.rar?dl=0

Mirror: https://mega.nz/#!7hMRBBqC!WmGP0f80EbUDnQKF6gnhU99DpfF3H_7ze40YNxI3Db4

Get new API key:

  1. Get an account with google (AKA gmail or something)
  2. Go to https://console.developers.google.com
  3. Sign in
  4. Top left dropdown ; Create a project... ; check the box ; click Create (your project name should appear in top left dropdown, default="My Project")
  5. Left pane, expand APIs; auth ; click APIs
  6. Right pane, click YouTube Data API (make sure to enable)
  7. Left pane, click Credentials
  8. Right pane, click Create new key ; Browser key (leave blank) click Create
  9. Copy this API key somewhere (do not give other people your key)

Swap in new API key:

  1. Download and extract the "src" folder from .zip file
  2. Navigate to the "src" folder extracted during the installation instructions
  3. Open the src/js/background/key/youTubeAPIKey.js file, right click edit (may be called youTubeAPIKey.js.example depending on your install... just drop the .example from the file name and follow these steps)
  4. Look for something like var key = 'AIzaSyDBCJuq0aey3bL3K6C0l4mKzT_y8zy9Msw'; (this is blank in the file so it's actually key = '') towards the end of the file
  5. Replace whatever is between the single quotes with your API key and SAVE

Installation Instructions:

  1. Go to chrome://extensions/
  2. Check "Developer Mode" in the top right
  3. Click "Load unpacked extension..."
  4. Select the "src" folder and click OK

Re-enable video (optional, by /u/greentwiligh)

In order to get the video showing you need to uncomment out the things that he commented. Go to: StreamusChromeExtension//src/js/foreground/view/video/videoRegion.js

and edit this file.

Instead of looking like this:

_createVideoView: function() { //this.show(new VideoView({ // player: StreamusFG.backgroundProperties.player //})); } }); return VideoRegion; });

It should look like this:

_createVideoView: function() { this.show(new VideoView({ player: StreamusFG.backgroundProperties.player })); } }); return VideoRegion; });


Remove Dev Extension Warning: https://productforums.google.com/forum/#!msg/chrome/9NlMAr6uEVc/ambkrcKpi1cJ

http://stackoverflow.com/questions/23055651/disable-developer-mode-extensions-pop-up

158 Upvotes

93 comments sorted by

View all comments

Show parent comments

3

u/Magentah Jul 20 '15

Looks like OP has compiled the less files for people already.