Python 3 get song name from internet radio stream
How can I get song name from internet radio stream? Python: Get name of shoutcast/internet radio station from url I looked here, but there is only getting name of radio station. But how to get name of the playing song? Here is stream link from where I want to get name of song. http://pool.cdn.lagardere.cz/fm-evropa2-128 How should I do it? Can you help me please? To get the stream title, you need to request metadata. See shoutcast/icecast protocol description : #!/usr/bin/env python from __future__ import print_function import re import struct import sys try: import urllib2 except ImportError: