softsyst / qirx_issues

Issue tracker for QIRX
1 stars 1 forks source link

Function suggestion, EDI network input #162

Open nona00 opened 1 month ago

nona00 commented 1 month ago

for analyzing a multiplex the receiving of data by EDI network streaming (ETI over network - ETSI ETS 300 799, tcp or udp) would be great. The streams can generated with proprietary multiplexers but also with ODR-DabMux. The playback of raw files generated by ODR-DabMux is already working, but live playback would helpful to test and analyse issues. File playback of ETI or ETI-NI files would also be a great feature.

softsyst commented 1 month ago

This would be certainly a useful enhancement. I'll have to check the effort, in particular also my possibilities for a test environment.

nona00 commented 1 month ago

for EDI output with ODR-DabMux I'm using the following config:

`outputs {

edi {
   destinations {
        example_unicast {
            ; example for unicast EDI over UDP
            ; for unicast EDI, do not set source
            protocol udp
            sourceport  13000
            destination "192.168.1.123"
            port        7001
        }

        example_unicast {
            protocol udp
            sourceport  13001
            destination "127.0.0.1"
            port        7002
        }
    }
}

; Throttle output to real-time (one ETI frame every 24ms)
throttle "simul://"

}

`