Package Details: audiorelay 0.27.5-5

Git Clone URL: https://aur.archlinux.org/audiorelay.git (read-only, click to copy)
Package Base: audiorelay
Description: Stream your PC audio to your phone
Upstream URL: https://audiorelay.net
Keywords: audio stream
Licenses: unknown
Submitter: yochananmarqos
Maintainer: detian (yochananmarqos)
Last Packager: detian
Votes: 7
Popularity: 0.31
First Submitted: 2021-12-29 16:52 (UTC)
Last Updated: 2024-02-11 09:56 (UTC)

Dependencies (12)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

Heus_Sueh commented on 2023-08-26 22:36 (UTC)

@yochananmarqos yeah, i understand the problem must be the app itself, i just commented to see if i was the only one having this problem

yochananmarqos commented on 2023-08-26 22:30 (UTC)

@Heus_Sueh: Using the AUR expects one to be using Arch. Nothing else is supported. This is neither the place to troubleshoot issues with the application nor problems with unsupported distros or methods.

Heus_Sueh commented on 2023-08-26 22:26 (UTC)

@detian giving more details, I'm trying to run this app through distrobox in fedora silverblue, is there any other dependency that might not be included in pkgbuild maybe a font package?

detian commented on 2023-08-26 18:27 (UTC)

@Heus_Sueh Tested still running on java20, so not java update or package issue. The only useful info I can find in the log is Could not load font, so maybe is your font config broken? Or better to contact the developer for help.

Heus_Sueh commented on 2023-08-26 17:57 (UTC)

I am having problem when trying to run audiorelay:https://pastebin.com/BU5Avipu

detian commented on 2023-05-14 17:56 (UTC)

@koe updated

koe commented on 2023-05-14 17:18 (UTC)

audiorelay --minimized not work!

detian commented on 2023-04-21 15:03 (UTC)

@yochananmarqos :P

yochananmarqos commented on 2023-04-20 21:36 (UTC)

@detian: I don't even use this, have fun!

detian commented on 2023-04-20 19:07 (UTC) (edited on 2023-04-20 19:12 (UTC) by detian)

I have done some changes to make audiorelay more integrated and removed bundled JVM like:

$ tree /usr/share/java/audiorelay/

/usr/share/java/audiorelay/
├── audiorelay.jar
└── misc
    ├── AudioRelay.cfg
    ├── libnative-libsamplerate.so
    ├── libnative-opus.so
    ├── libnative-portaudio.so
    └── libnative-rtaudio.so

2 directories, 6 files

$ cat /bin/audiorelay

#!/bin/bash
APPDIR="/usr/share/java/audiorelay"

while IFS='=' read -r key value; do
  case $key in
    app.classpath) app_classpath=$value ;;
    app.mainclass) app_mainclass=$value ;;
    java-options) java_options+=("$value") ;;
  esac
done < "$APPDIR/misc/AudioRelay.cfg"

archlinux-java-run -a 17 -- "${java_options[*]}" \
    -Djava.library.path=$APPDIR/misc \
    -cp "$(eval echo "$app_classpath")" "$app_mainclass"

modified file https://github.com/detiam/audiorelay-pkgbuild could you merge them here? @yochananmarqos