Is there a way to get mpv to play a list of URLs that are piped from another command's stdout?
My use case is to play all media links from an HTML page, e.g. with something like this:
extractlinks.py http://example.com '*.mp3' | mpv
extractlinks.py returns a list of playable URLs which could normally be considered a valid m3u playlist. I tried using mpv --playlist but it's not accepting the playlist from stdin.
Is there a way to get mpv to read a list of URLs from stdin?