Regarder la télé sur son Mac c’est possible, il y a toutefois quelques conditions à respecter.
- Avoir QuickTime
- Trouver les flux qui diffusent vos chaines télé
Rendez-vous à Finder –> Applications –> QuickTime … Ouvrez le
- Cliquez sur Fichier
- Ouvrir une adresse…
Dans la fenêtre qui s’ouvre :
Copiez –> Collez un des flux ci-dessous puis cliquez sur Ouvrir.
Je vous met à disposition quelques flux, une recherche sur Google vous permettra de trouver votre bonheur…
Nrj 12 : http://nrj-apple-live.adaptive.level3.net/apple/nrj/nrj/nrj12.m3u8
D17 : http://cupertino-streaming-1.hexaglobe.com/rtpdirectstarlive/smil:directstar-ipad.smil/playlist.m3u8
Bfm : http://http5.iphone.yacast.net/iphone/bfmtv/bfmtv_ipad.m3u8
Bfm Business : http://stream7.bfmbiz.yacast.net/iphone/bfmbiz/bfmbiz_live01.m3u8
NRJ Pop Rock : http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-4/appleman.m3u8
NRJ Pure : http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-3/appleman.m3u8
NRJ Dance : http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-2/appleman.m3u8
NRJ Urban : http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-1/nrjurban.m3u8
Voila après un court chargement votre chaine télé est diffusé sur votre Mac !
Je vais vous faciliter la tache, car cela peu vite devenir pénible de copier coller à chaque changement, je vous ai donc écrit ces lignes de codes que vous allez transformer en un « Launcher » Comment ? C’est très simple …
- À l’aide de l’outil Spotlight ( Rappelez vous la petite loupe dans le coin supérieur droit de votre écran ) Cherchez et ouvrez AppleScript Editor
- Copiez le code ci-dessous
--- début du Script --- on run set choix to choose from list {"NRJ 12", "Direct Star", "BFM", "BFM business", "NRJ pop rock", "NRJ pure", "NRJ dance", "NRJ urban"} set monurl to "" if choix is {"NRJ 12"} then set monurl to "http://nrj-apple-live.adaptive.level3.net/apple/nrj/nrj/nrj12.m3u8" end if if choix is {"Direct Star"} then set monurl to "http://cupertino-streaming-1.hexaglobe.com/rtpdirectstarlive/smil:directstar-ipad.smil/playlist.m3u8" end if if choix is {"BFM"} then set monurl to "http://http5.iphone.yacast.net/iphone/bfmtv/bfmtv_ipad.m3u8" end if if choix is {"BFM business"} then set monurl to "http://stream7.bfmbiz.yacast.net/iphone/bfmbiz/bfmbiz_live01.m3u8" end if if choix is {"NRJ pop rock"} then set monurl to "http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-4/appleman.m3u8" end if if choix is {"NRJ pure"} then set monurl to "http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-3/appleman.m3u8" end if if choix is {"NRJ dance"} then set monurl to "http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-2/appleman.m3u8" end if if choix is {"NRJ urban"} then set monurl to "http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-1/nrjurban.m3u8" end if if monurl ≠ "" then tell application "QuickTime Player" activate open URL monurl end tell end if end run --- Fin du Script --- |
— début du Script — on run set choix to choose from list {« NRJ 12 », « Direct Star », « BFM », « BFM business », « NRJ pop rock », « NRJ pure », « NRJ dance », « NRJ urban »} set monurl to « » if choix is {« NRJ 12 »} then set monurl to « http://nrj-apple-live.adaptive.level3.net/apple/nrj/nrj/nrj12.m3u8 » end if if choix is {« Direct Star »} then set monurl to « http://cupertino-streaming-1.hexaglobe.com/rtpdirectstarlive/smil:directstar-ipad.smil/playlist.m3u8 » end if if choix is {« BFM »} then set monurl to « http://http5.iphone.yacast.net/iphone/bfmtv/bfmtv_ipad.m3u8 » end if if choix is {« BFM business »} then set monurl to « http://stream7.bfmbiz.yacast.net/iphone/bfmbiz/bfmbiz_live01.m3u8 » end if if choix is {« NRJ pop rock »} then set monurl to « http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-4/appleman.m3u8 » end if if choix is {« NRJ pure »} then set monurl to « http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-3/appleman.m3u8 » end if if choix is {« NRJ dance »} then set monurl to « http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-2/appleman.m3u8 » end if if choix is {« NRJ urban »} then set monurl to « http://nrjlive-apple-live.adaptive.level3.net/apple/nrj/nrjlive-1/nrjurban.m3u8 » end if if monurl ≠ « » then tell application « QuickTime Player » activate open URL monurl end tell end if end run — Fin du Script —
Collez le dans l’Éditeur AppleScript puis cliquez sur Compiler !
Allez à Barre de menu
- Fichier
- Enregistrer sous…
- Entrez le nom Par exemple TV
- Choisissez l’emplacement ou sera créer votre Launcher ( le bureau me parait une bonne idée )
- format de fichier : Choisissez Application
- Enregistrer
Vous voila avec un Launcher, dans lequel figure la liste de vos chaines sur lesquelles il vous suffira de double cliquer pour démarrer le streaming.