- Installer VLC (en version > à 2.0)
- Installer Livestreamer
- Dé-commenter la ligne 18 du fichier ouvert (livestreamerrc dans %APPDATA%livestreamer)
player=“C:Program Files (x86)VideoLANVLCvlc.exe” –file-caching=5000
- Créer un fichier .bat avec :
@ECHO off
title Stream on VLC
echo 1. Flux Twitch
echo 2. Flux Daily
echo 3. Flux Youtube
echo 4. Flux Hitbox
echo 5. Obtenir OAuth Twitch
set /P menuInput=Votre choix :
if %menuInput%==1 goto A
if %menuInput%==2 goto B
if %menuInput%==3 goto C
if %menuInput%==4 goto D
if %menuInput%==4 goto E:A
cls
set /p Input=Entrez le nom du channel twitch :
cd c:program files (x86)livestreamer
livestreamer.exe twitch.tv/%Input% best
pause
goto :exit:B
cls
set /p Input=Entrez le ID du channel daily :
cd c:program files (x86)livestreamer
livestreamer http://dailymotion.com/video/%Input%?start=1 best
pause
goto :exit:C
cls
set /p Input=Entrez le ID de la video Youtube :
cd c:program files (x86)livestreamer
livestreamer http://www.youtube.com/watch?v=%Input% best
pause
goto :exit😀
cls
set /p Input=Entrez le ID du channel Hitbox :
cd c:program files (x86)livestreamer
livestreamer http://www.hitbox.tv/%Input% best
pause
goto :exit:E
cls
cd c:program files (x86)livestreamer
livestreamer –twitch-oauth-authenticate
pause
goto :exit:exit
exit
DONE