From e8b23b37394800332baf1ffc9b9777c67dc664cd Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Sat, 21 Jul 2018 16:17:44 +0200 Subject: change media paths Change-Id: I0d4783d37da25a315073eb847c7f525ed1b51d5c Signed-off-by: Stephane Desneux --- bin/lib4a-tools.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 bin/lib4a-tools.sh (limited to 'bin/lib4a-tools.sh') diff --git a/bin/lib4a-tools.sh b/bin/lib4a-tools.sh new file mode 100644 index 0000000..4029046 --- /dev/null +++ b/bin/lib4a-tools.sh @@ -0,0 +1,35 @@ +stdout_in_terminal=0 +[[ -t 1 ]] && stdout_in_terminal=1 +function color { + [[ $stdout_in_terminal == 0 ]] && return + for k in $*; do + case $k in + bold) tput bold 2>/dev/null;; + none) tput sgr0 2>/dev/null;; + *) tput setaf $k 2>/dev/null;; + esac + done +} +color_green=$(color bold 2) +color_yellow=$(color bold 3) +color_red=$(color bold 1) +color_blue=$(color bold 4) +color_none=$(color none) + +function error() { echo "${color_red}$@${color_none}" >&2; } +function warning() { echo "${color_yellow}$@${color_none}" >&2; } +function info() { echo "${color_green}$@${color_none}" >&2; } +function log() { echo "$@" >&2; } +function debug() { [[ "$DEBUG" == 1 ]] && echo "${color_blue}DEBUG:" "$@" "${color_none}" >&2; } + +function 4a-client() { + # get port for audio service + local port=$(grep -sr X-AFM-http /var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service | cut -f2 -d'=') + + debug "Detected 4A service on port $port" + afb-client-demo -H "localhost:$port/api?token=HELLO&uuid=magic" "$@" +} + +function 4a-roles() { + 4a-client ahl-4a get_roles "" | tail -n +2 | jq '.response|.[]' +} -- cgit 1.2.3-korg From 2dab36eb25c37d8c6534b3e181e8aea94f72e388 Mon Sep 17 00:00:00 2001 From: Loïc Collignon Date: Sun, 22 Jul 2018 16:15:49 +0200 Subject: Added a way to make 4a-api work on host MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On host you can't detect the API port and token based on the systemd unit file. So when the file is not found, use API_4A_PORT and API_4A_TOKEN environment variable to allow users to make it work on host so they can still test 4a. Change-Id: I6379457c29c9e45db9cce8c78f6d646935b2caa5 Signed-off-by: Loïc Collignon --- bin/lib4a-tools.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'bin/lib4a-tools.sh') diff --git a/bin/lib4a-tools.sh b/bin/lib4a-tools.sh index 4029046..ab0ee18 100644 --- a/bin/lib4a-tools.sh +++ b/bin/lib4a-tools.sh @@ -24,10 +24,21 @@ function debug() { [[ "$DEBUG" == 1 ]] && echo "${color_blue}DEBUG:" "$@" "${col function 4a-client() { # get port for audio service - local port=$(grep -sr X-AFM-http /var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service | cut -f2 -d'=') + local port="" + local token="HELLO" - debug "Detected 4A service on port $port" - afb-client-demo -H "localhost:$port/api?token=HELLO&uuid=magic" "$@" + if [ -f "/var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service" ]; then + log "Detected systemd unit file!" + port=$( grep -sr X-AFM-http /var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service | cut -f2 -d'=' ) + log "Port detected: $port" + else + log "No systemd unit file detected, assuming running on host, please set 'API_4A_PORT' and 'API_4A_TOKEN' environment variables to correct values!" + port=${API_4A_PORT:-1234} + token=${API_4A_TOKEN:-"HELLO"} + log "Port: $port, token: $token" + fi + + afb-client-demo -H "localhost:$port/api?token=$token&uuid=magic" "$@" } function 4a-roles() { -- cgit 1.2.3-korg From f43f3cb73ff3f8f9c20e8e9efe533ff19e9d3fc6 Mon Sep 17 00:00:00 2001 From: Loïc Collignon Date: Mon, 23 Jul 2018 00:48:19 +0200 Subject: Fix issue with the unit file detection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix a bug introduced by the commit e4e0b9b, due to the wildcard in the unit file. Change-Id: Iddc47378207a0ced207861433cd0ec02a52bc1a5 Signed-off-by: Loïc Collignon --- TODO | 7 ----- bin/4a-gst | 3 -- bin/4a-play | 56 ++++++++++++++++++++++++++++----- bin/4a-speaker-test | 1 - bin/gst-play | 56 --------------------------------- bin/lib4a-tools.sh | 3 +- media/tone-440-mono-24000-16bits.wav | Bin 480044 -> 0 bytes media/tone-440-mono-24000-24bits.wav | Bin 720044 -> 0 bytes media/tone-440-mono-24000-32bits.wav | Bin 960080 -> 0 bytes media/tone-440-mono-44100-32bits.wav | Bin 1764080 -> 0 bytes media/tone-440-mono-48000-32bits.wav | Bin 1920080 -> 0 bytes media/tone-440-stereo-44100-16bits.wav | Bin 0 -> 1764044 bytes media/tone-440-stereo-44100-24bits.wav | Bin 0 -> 2646044 bytes media/tone-440-stereo-48000-16bits.wav | Bin 0 -> 1920044 bytes media/tone-440-stereo-48000-24bits.wav | Bin 0 -> 2880044 bytes 15 files changed, 50 insertions(+), 76 deletions(-) delete mode 100644 TODO delete mode 100755 bin/4a-gst delete mode 100755 bin/4a-speaker-test delete mode 100755 bin/gst-play delete mode 100644 media/tone-440-mono-24000-16bits.wav delete mode 100644 media/tone-440-mono-24000-24bits.wav delete mode 100644 media/tone-440-mono-24000-32bits.wav delete mode 100644 media/tone-440-mono-44100-32bits.wav delete mode 100644 media/tone-440-mono-48000-32bits.wav create mode 100644 media/tone-440-stereo-44100-16bits.wav create mode 100644 media/tone-440-stereo-44100-24bits.wav create mode 100644 media/tone-440-stereo-48000-16bits.wav create mode 100644 media/tone-440-stereo-48000-24bits.wav (limited to 'bin/lib4a-tools.sh') diff --git a/TODO b/TODO deleted file mode 100644 index 436b8b3..0000000 --- a/TODO +++ /dev/null @@ -1,7 +0,0 @@ -* push OGG file -* finish script 4a-api (calls to AHL/Hal-manager) -* add script for basic aplay on role or device -* add script for basic gst-launch on role or device -* add script for speaker test on role or device -* add script to play with mediaplayer api: list / play / stop / next / prev ... -* add script to play with radio api diff --git a/bin/4a-gst b/bin/4a-gst deleted file mode 100755 index 9a06c83..0000000 --- a/bin/4a-gst +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -gst-launch-1.0 -v uridecodebin uri=file:///media/OrchestralBackgroundMusic.mp3 ! audioconvert ! audioresample ! alsasink device=hw:Loopback,0,2 diff --git a/bin/4a-play b/bin/4a-play index 483b892..620f311 100755 --- a/bin/4a-play +++ b/bin/4a-play @@ -4,14 +4,54 @@ . $(dirname $BASH_SOURCE)/lib4a-tools.sh function usage() { - log "Usage: $0 [role:file2 ...]" - log "Available roles:" - exit 1 + log "$0 [device] [role]" + log " - 'device' can be hw:X where X is a number or the device name." + log " It can also be hw:X,Y,Z, it is used when playing on the loopback card" + log " which is the 4a default sink." + log " Default: hw:Loopback,0,2" + log " - 'role' is the 4a role to use. In future version it will be guessed" + log " based on the device. Use '4a-api roles' to get a list of known roles" + log " Default: multimedia" } -[[ $# == 0 ]] && usage +if [ "$#" == "0" ]; then + error "No file to play!" + usage +fi + +FILEPATH="$( realpath "$1" )" +DEVICE=${2:-'hw:Loopback,0,2'} +ROLE=${3:-'multimedia'} + +CARDID=$( echo "$DEVICE" | cut -d':' -f2 | cut -d',' -f1 ) + +log "Play '$FILEPATH' on '$DEVICE'" + +LOOPBACK_CARDID=$( LANG="C" aplay -l | grep -oEe "^card\\s+[0-9]: Loopback" | uniq | grep -oEe "[0-9]+" ) +if [ "$CARDID" == "Loopback" ] || [ "$CARDID" == "$LOOPBACK_CARDID" ]; then + IS_4A_DEVICE=1 +else + IS_4A_DEVICE=0 +fi + +if [ "$IS_4A_DEVICE" == "1" ]; then + log "The selected card (hw:$CARDID) is handle by 4a, call open on '$ROLE'" + 4a-client ahl-4a "$ROLE" '{ "action": "open" }' + + # BUG: afb-client-demo does not exit an exit code different from zero when api return an error + #if [ "$?" -ne "0" ]; then + # exit -1 + #fi +fi + +if [ "$DEBUG" == "1" ]; then + gst-launch-1.0 -v uridecodebin uri="file://$FILEPATH" ! audioconvert ! audioresample ! alsasink device="$DEVICE" +else + gst-launch-1.0 -v uridecodebin uri="file://$FILEPATH" ! audioconvert ! audioresample ! alsasink device="$DEVICE" > /dev/null +fi + +if [ "$IS_4A_DEVICE" == "1" ]; then + log "The selected card (hw;$CARDID) is handled by 4a, call close on '$ROLE'" + 4a-client ahl-4a "$ROLE" '{ "action": "close" }' +fi -for x in "$@"; do - log "Playing $x ..." - aplay -D Loopback,0,2 $x -done diff --git a/bin/4a-speaker-test b/bin/4a-speaker-test deleted file mode 100755 index 770ddfd..0000000 --- a/bin/4a-speaker-test +++ /dev/null @@ -1 +0,0 @@ -# TODO: run speaker test diff --git a/bin/gst-play b/bin/gst-play deleted file mode 100755 index 46a6c4a..0000000 --- a/bin/gst-play +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash - -# load shell lib -. $(dirname $BASH_SOURCE)/lib4a-tools.sh - -function usage() { - log "$0 [device] [role]" - log " - 'device' can be hw:X where X is a number or the device name." - log " It can also be hw:X,Y,Z, it is used when playing on the loopback card" - log " which is the 4a default sink." - log " Default: hw:Loopback,0,2" - log " - 'role' is the 4a role to use. In future version it will be guessed" - log " based on the device. Use '4a-api roles' to get a list of known roles" - log " Default: multimedia" -} - -if [ "$#" == "0" ]; then - error "No file to play!" - usage -fi - -FILEPATH="$( realpath "$1" )" -DEVICE=${2:-'hw:Loopback,0,2'} -ROLE=${3:-'multimedia'} - -CARDID=$( echo "$DEVICE" | cut -d':' -f2 | cut -d',' -f1 ) - -log "Play '$FILEPATH' on '$DEVICE'" - -LOOPBACK_CARDID=$( LANG="C" aplay -l | grep -oEe "^card\\s+[0-9]: Loopback" | uniq | grep -oEe "[0-9]+" ) -if [ "$CARDID" == "Loopback" ] || [ "$CARDID" == "$LOOPBACK_CARDID" ]; then - IS_4A_DEVICE=1 -else - IS_4A_DEVICE=0 -fi - -if [ "$IS_4A_DEVICE" == "1" ]; then - log "The selected card (hw:$CARDID) is handle by 4a, call open on '$ROLE'" - 4a-client ahl-4a "$ROLE" '{ "action": "open" }' - - # BUG: afb-client-demo does not exit an exit code different from zero when api return an error - #if [ "$?" -ne "0" ]; then - # exit -1 - #fi -fi - -if [ "$DEBUG" == "1" ]; then - gst-launch-1.0 -v uridecodebin uri="file://$FILEPATH" ! audioconvert ! audioresample ! alsasink device="$DEVICE" -else - gst-launch-1.0 -v uridecodebin uri="file://$FILEPATH" ! audioconvert ! audioresample ! alsasink device="$DEVICE" > /dev/null -fi - -if [ "$IS_4A_DEVICE" == "1" ]; then - log "The selected card (hw;$CARDID) is handled by 4a, call close on '$ROLE'" - 4a-client ahl-4a "$ROLE" '{ "action": "close" }' -fi diff --git a/bin/lib4a-tools.sh b/bin/lib4a-tools.sh index ab0ee18..776b1c0 100644 --- a/bin/lib4a-tools.sh +++ b/bin/lib4a-tools.sh @@ -26,8 +26,9 @@ function 4a-client() { # get port for audio service local port="" local token="HELLO" + local unitfile=$( ls /var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service ) - if [ -f "/var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service" ]; then + if [ -f "$unitfile" ]; then log "Detected systemd unit file!" port=$( grep -sr X-AFM-http /var/local/lib/systemd/system/afm-service-agl-service-audio-4a*.service | cut -f2 -d'=' ) log "Port detected: $port" diff --git a/media/tone-440-mono-24000-16bits.wav b/media/tone-440-mono-24000-16bits.wav deleted file mode 100644 index ce57beb..0000000 Binary files a/media/tone-440-mono-24000-16bits.wav and /dev/null differ diff --git a/media/tone-440-mono-24000-24bits.wav b/media/tone-440-mono-24000-24bits.wav deleted file mode 100644 index 54d88b0..0000000 Binary files a/media/tone-440-mono-24000-24bits.wav and /dev/null differ diff --git a/media/tone-440-mono-24000-32bits.wav b/media/tone-440-mono-24000-32bits.wav deleted file mode 100644 index 6b6f5a5..0000000 Binary files a/media/tone-440-mono-24000-32bits.wav and /dev/null differ diff --git a/media/tone-440-mono-44100-32bits.wav b/media/tone-440-mono-44100-32bits.wav deleted file mode 100644 index 4237d49..0000000 Binary files a/media/tone-440-mono-44100-32bits.wav and /dev/null differ diff --git a/media/tone-440-mono-48000-32bits.wav b/media/tone-440-mono-48000-32bits.wav deleted file mode 100644 index 1b262db..0000000 Binary files a/media/tone-440-mono-48000-32bits.wav and /dev/null differ diff --git a/media/tone-440-stereo-44100-16bits.wav b/media/tone-440-stereo-44100-16bits.wav new file mode 100644 index 0000000..d5c685f Binary files /dev/null and b/media/tone-440-stereo-44100-16bits.wav differ diff --git a/media/tone-440-stereo-44100-24bits.wav b/media/tone-440-stereo-44100-24bits.wav new file mode 100644 index 0000000..e800d37 Binary files /dev/null and b/media/tone-440-stereo-44100-24bits.wav differ diff --git a/media/tone-440-stereo-48000-16bits.wav b/media/tone-440-stereo-48000-16bits.wav new file mode 100644 index 0000000..9c5d8c9 Binary files /dev/null and b/media/tone-440-stereo-48000-16bits.wav differ diff --git a/media/tone-440-stereo-48000-24bits.wav b/media/tone-440-stereo-48000-24bits.wav new file mode 100644 index 0000000..06b448f Binary files /dev/null and b/media/tone-440-stereo-48000-24bits.wav differ -- cgit 1.2.3-korg From c3d43245f69639183766b10a530963129fa8d867 Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Wed, 1 Aug 2018 12:07:54 +0200 Subject: 4a-api: add subcommands for mediaplayer and mediascanner Change-Id: Ib4933d68efe23c9f1dce0b190db713bc2001d057 Signed-off-by: Stephane Desneux --- bin/4a-api | 8 +++++++- bin/lib4a-tools.sh | 7 +++++++ 2 files changed, 14 insertions(+), 1 deletion(-) (limited to 'bin/lib4a-tools.sh') diff --git a/bin/4a-api b/bin/4a-api index 1e1bb39..694397f 100755 --- a/bin/4a-api +++ b/bin/4a-api @@ -13,7 +13,10 @@ function usage() { log " api [args]: send direct request to API verb with args" log " roles: get AHL roles" log " hals [-a|--all] [-v|--verbose]: get HALs status" + log " mediascanner ... : interact with mediascanner service" + log " example: 4a-api mediascanner media_result \"\"" log " mediaplayer ... : interact with mediaplayer service" + log " example: 4a-api mediaplayer playlist \"\"" log " radio ... : interact with radio service" exit 1 } @@ -38,8 +41,11 @@ case $cmd in done 4a-client 4a-hal-manager loaded "{'verbose':$verbose,'all':$all}" ;; + mediascanner) + mediascanner-client "$@" + ;; mediaplayer) - echo "TODO" + mediaplayer-client "$@" ;; radio) echo "TODO" diff --git a/bin/lib4a-tools.sh b/bin/lib4a-tools.sh index 776b1c0..f799cc2 100644 --- a/bin/lib4a-tools.sh +++ b/bin/lib4a-tools.sh @@ -45,3 +45,10 @@ function 4a-client() { function 4a-roles() { 4a-client ahl-4a get_roles "" | tail -n +2 | jq '.response|.[]' } + +function mediascanner-client() { + afb-client-demo -H -d unix:/run/user/0/apis/ws/mediascanner "$@" +} +function mediaplayer-client() { + afb-client-demo -H -d unix:/run/user/0/apis/ws/mediaplayer "$@" +} -- cgit 1.2.3-korg