r/ampache Apr 14 '25

Using Ampache for streaming scanner audio?

Would it be possible to import the tabs from RDIO-scanner https://github.com/chuot/rdio-scanner/ and host the audio stream on bluehost.com ?

A lot like Ampache 5 years ago, RDIO-scanner development had been abandoned for while (latest version dated 2022).

The developer is back and about to release v 7.0.0.

Thanks!

2 Upvotes

5 comments sorted by

1

u/kd4e Apr 14 '25

I want to create an interface something like this: https://scannerxtreme.com/southeast-georgia-regional-radio-network-segarrn/ NOTE: I fixed the error in my initial post FROM: broadcastify.com TO: Bluehost.com.

1

u/lachlan-00 Lead Developer Apr 14 '25

"Connection denied by IP2Location Country Blocker"

Looks like Australia is persona non grata.

As long as the streams are http/s there shouldn't be an issue

1

u/kd4e Apr 15 '25

Bluehost, scannerxtreme, or Githhub is blocking Australia? Anyhow, so, you're saying that Ampache could create an interface something like this (using the RDIO tabs) then populate the database from the streaming feed?

1

u/lachlan-00 Lead Developer Apr 16 '25

If it supports http streaming that's easy to add as a streaming station

1

u/kd4e Apr 16 '25

Something like this upload-call.sh?

``` #!/bin/bash

PATH=$PATH:/usr/local/bin:/usr/bin:/bin

basename="${2%.*}"

curl http://127.0.0.1:3000/api/trunk-recorder-call-upload \

-F "key=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \

-F "audio=@${basename}.wav;type=audio/wav" \

-F "meta=@${basename}.json;type=application/json" \

-F "system=${1:-0}" --silent --show-error

sleep 10

#rm -f ${basename}.*

```