RuneAudio 0.4-beta for Raspberry Pi2/3

Raspberry Pi related support

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby J4K » 20 Apr 2017, 00:07

Hi Frank,

Here's the debug info requested:

release version: 0.4 (build: beta-20160313)
Attachments
Debug info.rar
Debug Info
(17.6 KiB) Downloaded 313 times
J4K
 
Posts: 40
Joined: 25 Mar 2017, 21:20

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby hondagx35 » 20 Apr 2017, 10:56

Hi J4K,

release version: 0.4 (build: beta-20160313)

###### System info ######
Linux version 4.1.20-1-ARCH (builduser@leming) (gcc version 5.3.0 (GCC) ) #1 SMP Sat Mar 19 20:07:23 MDT 2016

system time: Wed Apr 19 23:52:11 BST 2017

system load: 1.08 0.26 0.08 3/163 854

HW platform: RaspberryPi2 (08)

This is definitively not the latest version.

The debug info should look like this:
release version: 0.4b (build: 20170229)

###### System info ######
Linux version 4.4.39-ARCH+ (frank@franks-ubuntu) (gcc version 4.8.3 20140106 (prerelease) (crosstool-NG linaro-1.13.1-4.8-2014.01 - Linaro GCC 2013.11) ) #5 SMP Sat Feb 11 15:43:36 CET 2017

system time: Thu Apr 20 11:54:34 CEST 2017

system load: 0.21 0.20 0.10 1/201 3349

HW platform: RaspberryPi2 (08)


Frank
User avatar
hondagx35
 
Posts: 3042
Joined: 11 Sep 2014, 22:06
Location: Germany

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby hondagx35 » 20 Apr 2017, 11:23

Hi VD2000,

please post your config.txt.

For me it looks like you have booth "dtoverlay=ads7846" and "dtoverlay=waveshare35a" enabled.
If so try to comment out ads7846.

Frank
User avatar
hondagx35
 
Posts: 3042
Joined: 11 Sep 2014, 22:06
Location: Germany

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby witched » 21 Apr 2017, 20:20

ianhaynes wrote:Another thought - would song info be possible for radio and Spotify?


if it can help you, I made a little change for artist info when you're listening spotify (not perfect but it iworks for me)

first, you need to install netcat (the gnu one if asked):
Code: Select all
pacman -S netcat



then, never forget to save your files before changes
Code: Select all
cp /var/www/command/artist_info.sh /var/www/command/artist_info.sh.old


then modify /var/www/command/artist_info.sh like this:

Code: Select all
nano /var/www/command/artist_info.sh


Code: Select all
#!/bin/bash

daemon=`ps -ed|grep mpd|awk '{print $4}'`
if [ "$daemon" == "mpd" ]
then
  artist_name=`mpc -f %artist% | head -n 1`
  artist=`perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$artist_name"`
  echo $artist
else
  artist_name=`(echo status;sleep 0.1)|netcat -c localhost 6602|head -2|tail -1|cut -d "\"" -f 16 | iconv -f utf8 -t ascii//TRANSLIT`
  artist=`perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$artist_name"`
  echo $artist
fi

curl -s "http://ws.audioscrobbler.com/2.0/?method=artist.getinfo&autocorrect=1&artist=$artist&api_key=ba8ad00468a50732a3860832eaed0882&format=json" |sed ':a;N;$!ba;s/\n/<\/br>/g'


then, you need to modify the php (once again, don't forget to save the original one!!)
Code: Select all
nano /var/www/app/artist_info_ctl.php

look for those lines and do some comments:
Code: Select all
//[/color]if ($activePlayer != 'MPD' && $redis->Get('artist-info')) {
    echo sysCmd("sh /var/www/command/artist_info.sh")[1];
//}

Witched

because sound matters!

My RuneAudio : RPI2/DAC Sabre ES9023 V2.2/PI-SPC ATX/OLED DISPLAY/IR REMOTE/ Audiophonics RASPDAC box
Equipment: BC Acoustic EX322 + Triangle ZERIUS 202
User avatar
witched
 
Posts: 2
Joined: 14 Apr 2017, 16:27

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby Fif91 » 22 Apr 2017, 18:50

Hi
The new image seems to work well.
But, the runeaudio android application does not work with this 0.4b version.

EDIT :
I have a problem with internet, tahn i did not get with the previous version
Code: Select all
ping 8.8.8.8
ping: socket: Address family not supported by protocol (raw socket required by specified options).

ping -c3 www.google.com
ping: socket: Address family not supported by protocol (raw socket required by specified options).

ping -4 -c3 www.google.com
PING www.google.com (216.58.204.132) 56(84) bytes of data.
64 bytes from par21s05-in-f4.1e100.net (216.58.204.132): icmp_seq=1 ttl=55 time=17.7 ms
64 bytes from par21s05-in-f4.1e100.net (216.58.204.132): icmp_seq=2 ttl=55 time=21.1 ms
64 bytes from par21s05-in-f4.1e100.net (216.58.204.132): icmp_seq=3 ttl=55 time=19.9 ms

--- www.google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2003ms
rtt min/avg/max/mdev = 17.775/19.626/21.140/1.399 ms



The IPv6 seems to be set as default
Last edited by Fif91 on 22 Apr 2017, 19:53, edited 2 times in total.
Fif91
 
Posts: 12
Joined: 04 Mar 2017, 16:12

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby gearhead » 22 Apr 2017, 19:21

The Android app detects and operates both my pi2 and pi1 running this version of the UI. Don't know what might be going on. DHCP conflict? Network configuration issue?

Gearhead
gearhead
 
Posts: 101
Joined: 25 Nov 2014, 06:04

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby J4K » 22 Apr 2017, 19:25

Hi Frank,

Thankyou for the support, and sorry I led you up the path, I've re-downloaded the runeaudio software and all is well.

I've no idea what I did wrong :)

Jak
J4K
 
Posts: 40
Joined: 25 Mar 2017, 21:20

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby hondagx35 » 22 Apr 2017, 21:59

Hi,

gearhead wrote:The Android app detects and operates both my pi2 and pi1 running this version of the UI. Don't know what might be going on. DHCP conflict? Network configuration issue?

Gearhead


The Android app uses avahi to detect the player, so player name matters not the ip address.

Frank
User avatar
hondagx35
 
Posts: 3042
Joined: 11 Sep 2014, 22:06
Location: Germany

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby Kilgore » 24 Apr 2017, 03:59

I just want to say a big THANK YOU to the Rune Dev team and especially Frank. I downloaded the 0.4 Beta a couple of weeks ago, and hooked up my Pi3 + 7" touch Screen + Digi Pro+ and the whole experience was painless. I now have a fabulous stand alone player sitting in the lounge that the whole family can easily use without worrying about the remote or who's got the tablet. Storage is a 1TB USB drive plugged straight in. I was even a bit surprised that I had working sound before even selecting the Audio Output.
Also being able to turn off the display whilst watching TV is great for using in the family room.

So I encourage anyone else who is happily using this fantastic software to support the team as I just have with a modest donation using the 'Support us' link at the bottom of the page.

Here is what it looks like in action.....very high WAF....
Pi Side.jpg
Pi Side.jpg (151.83 KiB) Viewed 1346 times

Pi Rear.jpg
Pi Rear.jpg (103.45 KiB) Viewed 1346 times
[Rune 0.4 Beta / Rasbperry Pi 3 / Pi 7" touch screen / HiFi Digi+ Pro / Optical / Schiit Bifrost MB]
User avatar
Kilgore
 
Posts: 70
Joined: 05 Mar 2014, 06:05
Location: Melbourne

Re: RuneAudio 0.4-beta for Raspberry Pi2/3

Postby morias » 24 Apr 2017, 05:04

Kilgore wrote:Here is what it looks like in action.....very high WAF....


Nice case. Do you mind sharing where you got it.


Sent from my iPhone using Tapatalk
morias
 
Posts: 26
Joined: 10 Nov 2015, 01:22

support RuneAudio Donate with PayPal

PreviousNext

Return to Raspberry Pi

Who is online

Users browsing this forum: No registered users and 10 guests