View Single Post
Old 09-03-2014, 08:16 PM   #26
brianinmaine
Evangelist
brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.brianinmaine ought to be getting tired of karma fortunes by now.
 
brianinmaine's Avatar
 
Posts: 457
Karma: 1287375
Join Date: Jan 2013
Location: West Gardiner, Maine
Device: Touch (5.3.7)
if you get tls handshake errors, pandora changed their certificate. this website has the answer:
http://everyday-tech.com/how-to-inst...-raspberry-pi/
run this in linux:
<code>
#!/bin/bash
##
## A simple little shell script that will return the current
## fingerprint on the SSL certificate. It's crude but works
##
## Author: Bob Saska (r35krag0th) <git@r35.net>

openssl s_client -connect tuner.pandora.com:443 < /dev/null 2> /dev/null | \
openssl x509 -noout -fingerprint | tr -d ':' | cut -d'=' -f2
</code>

this will show a code...
this is the string to add to '.config/pianobar/config':
"tls_fingerprint = 2D0AFDAFA16F4B5C0A43F3CB1D4752F9535507C0"


edit: OOPS it's a tls READ error, which needs a rebuild. according to the web, it needs to be built against ffmpeg from source first: http://www.lanmaster53.com/2014/05/r...y-pi-pianobar/
since the pi's have an ARM, seems reasonable to give it a shot. FFMPEG will take a LONG time...
we'll see. I AM on vacation...

Last edited by brianinmaine; 09-03-2014 at 09:01 PM.
brianinmaine is offline   Reply With Quote