You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
I would like to use ``ffmpeg` to send RPT over multicast and PulseDroidRtp to get the sound.
When I call /usr/bin/ffmpeg -re -i ZZZ.mp3 -filter_complex 'aresample=8000,asetnsamples=n=160' -acodec pcm_mulaw -ac 1 -f rtp udp://239.239.239.240:4444 I can listen the file over VLC for Android. But on PulseDroidRtp, when I configure with the IP and port above, MTU 320 (default), channels 1, channel mask 0, my Android device buzzes when something is played, but it is unclear what is played.
Is it possible ot play with PulseAudioRtp the RTP stream send by ffmpeg over multicase, as stated above?
The text was updated successfully, but these errors were encountered:
For MTU 320, there's some overhead with the IP header so we need to set smaller samples per packet;
The App listens on the multicast address 224.0.0.56:4010 by default. Use whatever works, just make sure that the App listens on the same address that ffmpeg sends data to.
Thanks for your answer. Unfortunately it does not help me. I have hardware, which announces the input from /usr/bin/ffmpeg -re -i ZZZ.mp3 -filter_complex 'aresample=8000,asetnsamples=n=160' -acodec pcm_mulaw -ac 1 -f rtp udp://239.239.239.240:4444. The invocation cannot be changed. Thus, I am looking for Android software, which accepts and plays the output of the above command.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I would like to use ``ffmpeg` to send RPT over multicast and PulseDroidRtp to get the sound.
When I call
/usr/bin/ffmpeg -re -i ZZZ.mp3 -filter_complex 'aresample=8000,asetnsamples=n=160' -acodec pcm_mulaw -ac 1 -f rtp udp://239.239.239.240:4444
I can listen the file over VLC for Android. But on PulseDroidRtp, when I configure with the IP and port above, MTU 320 (default), channels 1, channel mask 0, my Android device buzzes when something is played, but it is unclear what is played.Is it possible ot play with PulseAudioRtp the RTP stream send by ffmpeg over multicase, as stated above?
The text was updated successfully, but these errors were encountered: