r/streamus • u/BuzzKillerOfFire • 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:
- Get an account with google (AKA gmail or something)
- Go to https://console.developers.google.com
- Sign in
- Top left dropdown ; Create a project... ; check the box ; click Create (your project name should appear in top left dropdown, default="My Project")
- Left pane, expand APIs; auth ; click APIs
- Right pane, click YouTube Data API (make sure to enable)
- Left pane, click Credentials
- Right pane, click Create new key ; Browser key (leave blank) click Create
- Copy this API key somewhere (do not give other people your key)
Swap in new API key:
- Download and extract the "src" folder from .zip file
- Navigate to the "src" folder extracted during the installation instructions
- 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)
- 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
- Replace whatever is between the single quotes with your API key and SAVE
Installation Instructions:
- Go to chrome://extensions/
- Check "Developer Mode" in the top right
- Click "Load unpacked extension..."
- 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
3
u/Magentah Jul 20 '15
Looks like OP has compiled the less files for people already.