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
Fonte: https://www.maccanismi.it/2012/08/21/elenco-url-streaming-radio-italiane-sul-web-rtl-rds-radio-kiss-kiss-r101-virgin-radio-e-moltre-altre/ | |
Da usare per lettori come VLC e similari. | |
RTL: | |
http://shoutcast.rtl.it:3010/ | |
RTL Best: | |
http://shoutcast.rtl.it:3020/ | |
RTL ItalianStyle: |
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
# To run with pyusb debugging: | |
# | |
# PYUSB_DEBUG=debug python relay.py | |
# | |
# Grab the vendor and product codes from syslog when plugging in the relay: | |
# | |
# usb 3-1: New USB device found, idVendor=1a86, idProduct=7523 | |
# | |
import time | |
import usb.core |
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
XBMC uses pycurl/libcurl to fetch stuff. YouTube requires the RC4 | |
cipher that GnuTLS has removed for security reasons (or doesn't allow | |
it to be selected, or XBMC doesn't allow to specify the cipher...). | |
PyCurl linked against OpenSSL can take the RC4 argument and make the | |
Youtube plugin work (Ubuntu ships it linked against GnuTLS), so we | |
need to rebuild to make it work. | |
/// | |
from: https://code.google.com/p/wfuzz/wiki/PyCurlSSLBug |
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
int ledPin = 13; | |
//led for visualization (use 13 for built-in led) | |
int speakerPin = 11; | |
//speaker connected to one of the PWM ports | |
#define c 261 | |
#define d 294 | |
#define e 329 | |
#define f 349 |