Les nouveaux flux Hifi HD de Radio France 📻

Les nouveaux flux Hifi HD de Radio France 📻

Les nouveaux flux web audio Hifi HD au format .aac des stations de Radio France 📻

Radio-France-Flux-HD-AAC-2 Radio-France-Flux-HD-AAC-1

Canaux : Stéréo
Fréquence d'échantillonnage : 48000 Hz
Bits par échantillon : 32

France Musique

FiP

France Culture, France Inter

iTunes Playlist Import/Export in XML format

Fichier > Bibliothèque > Exporter la playlist... > Format XML

itunes-export-playlist

Télécharger le fichier et retirer le suffixe .txt du nom du fichier avant importation

Python Web Scraping

# coding=utf8
# the above tag defines encoding for this document and is for Python 2.x compatibility

import re

regex = r"(?P<link>http[^\"]*?/(?P<title>[^\.]*?)\.aac\?id=radiofrance)"

test_str = ("<copy-paste here HTML source code from: https://www.francemusique.fr>")

subst = ""

# You can manually specify the number of replacements by changing the 4th argument
result = re.sub(regex, subst, test_str, 0)

if result:
    print (result)

# Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.

France Musique .AAC link scraping on Regex101