Hello les gars,
En attendant que je mette en place mon WIP concernant le streaming de radio avec HS, qq'un aurait-il un module pour vlc sous HL3?
Merci d'avance.
hello,
j'ai trouvé cela :
MEmu = vlc
MEmuV = v2.1.0
MURL =
http://www.videolan.org/vlc/index.html
MAuthor = zerojay
MVersion = 2.0.1
MCRC =
iCRC = 6ECFA124
MID = 635038268923820499
MSystem = "VLC, Videos, Movies, TV"
;----------------------------------------------------------------------------
;
;----------------------------------------------------------------------------
StartModule()
FadeInStart()
settingsFile := modulePath . "\" . moduleName . ".ini"
Fullscreen := IniReadCheck(settingsFile, "Settings", "Fullscreen","",,1)
PlayAndExit := IniReadCheck(settingsFile, "Settings", "PlayAndExit","",,1)
Parameters := IniReadCheck(settingsFile, "Settings", "Parameters",,,1)
Fullscreen := (Fullscreen="true" ? (" --fullscreen") : (" --no-fullscreen"))
PlayAndExit := (PlayAndExit="true" ? (" --play-and-exit") : (""))
Run(executable . Fullscreen . PlayAndExit . " " . Parameters . " """ . romPath . "\" . romName . romExtension . """", emuPath)
WinWait("VLC ahk_class QWidget")
WinWaitActive("VLC ahk_class QWidget")
FadeInExit()
Process("WaitClose", executable)
7zCleanUp()
FadeOutExit()
ExitModule()
CloseProcess:
FadeOutStart()
WinClose("VLC ahk_class QWidget")
Return