This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AMs Nacionales | |
Radio Madre 530 http://200.68.81.65:8000/am530 | |
Radio Argentina 570 http://am570.prodera.com.ar:8000 | |
Continental 590 http://1351.live.streamtheworld.com:80/CONTINENTAL_SC | |
Rivadavia 630 http://190.104.220.205:8234 | |
Belgrano-650 650 http://wmserver3.aginet.com.ar:13574 | |
Radio 10 710 rtmp://radio10.stweb.tv:1935/radio10/live | |
Cooperativa 770 http://rcoop.cnwks.ws:8358 | |
Radio Mitre 790 http://buecrplb01.cienradios.com.ar/Mitre790.aac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var source = require('vinyl-source-stream'); | |
var buffer = require('vinyl-buffer'); | |
var browserify = require('browserify'); | |
var watchify = require('watchify'); | |
var babel = require('babelify'); | |
function compile(watch) { | |
var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prepare system | |
apt-get updated | |
apt-get install -y cmake pkg-config python-software-properties python g++ make software-properties-common unzip | |
# Grab frest opencv library | |
curl -sL https://github.com/Itseez/opencv/archive/master.zip > opencv.zip | |
unzip opencv.zip | |
rm opencv.zip | |
# Configure & install OpenCV |