Commit e2723ef3 authored by Thorfin89's avatar Thorfin89

Ajout des vignettes et de la liste des radios dans les dossiers images et data

parent e0c03c2d
No,Pays,Type,Nom,Url,Logo
1,France,Régionale,France Bleue Auxerre,http://direct.francebleu.fr/live/fbauxerre-midfi.mp3,fb-auxerre.png
2,France,Régionale,France Bleue Isère,http://direct.francebleu.fr/live/fbisere-midfi.mp3,fb-isere.png
3,France,Régionale,France Bleu Armorique,http://direct.francebleu.fr/live/fbarmorique-midfi.mp3,fb-armorique.png
4,France,Informations,France Info,http://direct.franceinfo.fr/live/franceinfo-midfi.mp3,france-info.jpeg
5,France,Généraliste,France Inter,http://direct.franceinter.fr/live/franceinter-midfi.mp3,france-inter.png
6,France,Généraliste,Europe 1,http://mp3lg4.tdf-cdn.com/9240/lag_180945.mp3,europe-1.jpeg
7,UK,Rock,Dépèche Mode,http://streaming.radionomy.com/wwwdepechemodebe-radio,
8,DE,Celtic,Live Ireland ch1,http://66.90.73.250:8080,live-ireland.png
9,DE,Celtic,Bretagne Blog,http://laut.fm/bretagneblog,
10,DE,Celtic,Highlander Radio Live Stream,http://50.7.71.27:9657,
11,DE,Celtic,Celtic Moon,http://streaming211.radionomy.com:80/CelticMoon,
12,DE,Celtic-punk,Celtic-Folk-Punk,http://streaming211.radionomy.com:80/Celtic-Folk-Punk,
13,DE,Hard-rock,100% Hardrock,http://streaming207.radionomy.com:80/100-HARD-ROCK,
14,DE,Rock,Virgin Rock 70,http://icy.unitedradio.it/VirginRock70.mp3,
\ No newline at end of file
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
# Fichier : rw_pupitre.py # Fichier : rw_pupitre.py
# Auteur : Daniel SAZERAT (thorfin89@free.fr) # Auteur : Daniel SAZERAT (thorfin89@free.fr)
# Doc tkinter
# http://tkinter.fdex.eu/index.html
# http://pascal.ortiz.free.fr/contents/tkinter/tkinter/
# import ---------------------------------- # import ----------------------------------
import tkinter as tk import tkinter as tk
...@@ -14,6 +19,18 @@ class Pupitre: ...@@ -14,6 +19,18 @@ class Pupitre:
self.root.title("Web Radio Pi") self.root.title("Web Radio Pi")
self.root.geometry("800x480") self.root.geometry("800x480")
self.root.resizable(width=False, height=False) self.root.resizable(width=False, height=False)
# Fenêtre Haute : Titre / Menu
self.bandeau = tk.Frame(self.root, width="800", height="80", bg="#8D8D8D")
self.bandeau.grid(row=0, column=0, columnspan=2)
# Fenêtre contenant les boutons (vignettes) des radios
self.cadreVignettes = tk.Frame(self.root, width="500", height="400", bg="#000000")
self.cadreVignettes.grid(row=1, column=0)
# Fenêtre d'affichage de la radio en cours de lecture, et des boutons de commande
self.cadreMenu = tk.Frame(self.root, width="300", height="400", bg="#BFBFBF")
self.cadreMenu.grid(row=1, column=1)
def boucle(self): def boucle(self):
self.root.mainloop() self.root.mainloop()
def zones(self):
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment