there is an online radio station and i have a m3u8 url from that like below:
http://example.com/live/playlist.m3u8
I can capture the audio with ffmpeg with this command:
ffmpeg -i "http://example.com/live/playlist.m3u8" -c copy test.aac
I want to play this streaming with in my PyQt app and i don't need to store the content.
But i don't know how to pass the content from ffmpeg to my python app and play that with QMediaPlayer.