I am running VLC 2.0.2 Twoflower
I have a little batch file that runs 12 instances of VLC and places them around my screen. I tried using a newer version of VLC but it would seem to work with my batch file.
They are all monitoring local UDP streams. Every now and then one or two of them seems to crash.
Is it possible to have VLC restart these particular instances if they crash?
If anyone is interested this is similar to the batch file I am using:
Code: Select all
REM - Top Row
cd C:\Program Files (x86)\VideoLAN\VLC
start vlc C:\vlc\3X2\Stream-1.xspf --video-title-timeout=2147483647 --no-video-deco --no-embedded-video --video-x=1 --video-y=1 --width=640 --video-on-top --aspect-ratio=16:9
TIMEOUT /T 1 /NOBREAK
cd C:\Program Files (x86)\VideoLAN\VLC
start vlc C:\vlc\3X2\Stream-2.xspf --video-title-timeout=2147483647 --no-video-deco --no-embedded-video --video-x=640 --video-y=1 --width=640 --video-on-top --aspect-ratio=16:9
TIMEOUT /T 1 /NOBREAK
cd C:\Program Files (x86)\VideoLAN\VLC
start vlc C:\vlc\3X2\Stream-3.xspf --video-title-timeout=2147483647 --no-video-deco --no-embedded-video --video-x=1280 --video-y=1 --width=640 --video-on-top --aspect-ratio=16:9
TIMEOUT /T 1 /NOBREAK
#REM - Bottom Row
cd C:\Program Files (x86)\VideoLAN\VLC
start vlc C:\vlc\3X2\Stream-4.xspf --video-title-timeout=2147483647 --no-video-deco --no-embedded-video --video-x=1 --video-y=360 --width=640 --video-on-top --aspect-ratio=16:9
TIMEOUT /T 1 /NOBREAK
cd c:\Program Files (x86)\VideoLAN\VLC\
start vlc C:\vlc\3X2\Stream-5.xspf --video-title-timeout=2147483647 --no-video-deco --no-embedded-video --video-x=640 --video-y=360 --width=640 --video-on-top --aspect-ratio=16:9
TIMEOUT /T 1 /NOBREAK
cd \Program Files (x86)\VideoLAN\VLC\
start vlc C:\vlc\3X2\Stream-6.xspf --video-title-timeout=2147483647 --no-video-deco --no-embedded-video --video-x=1280 --video-y=360 --width=640 --video-on-top --aspect-ratio=16:9
TIMEOUT /T 1 /NOBREAK