VLC Meida Player

Post date: Apr 08, 2013 12:55:15 PM

@rem VLC Meida Player is a free and open source cross-platform multimedia player

@rem for most multimedia files and various streaming protocols . 影音播放器

@rem https://www.videolan.org/

if not exist "%SystemDrive%\Program Files (x86)" goto not_64bit

if exist VLCMediaPlayer\vlc-3.0.7-win64.exe goto next

start /wait "" wget.exe "https://mirror.downloadvn.com/videolan/vlc/3.0.7/win64/vlc-3.0.7-win64.exe" --directory-prefix=VLCMediaPlayer

:next

start /wait VLCMediaPlayer\vlc-3.0.7-win64.exe /S

goto end

:not_64bit

if exist VLCMediaPlayer\vlc-3.0.7-win32.exe goto next

start /wait "" wget.exe "https://free.nchc.org.tw/vlc/vlc/3.0.7/win32/vlc-3.0.7-win32.exe" --directory-prefix=VLCMediaPlayer

:next

start /wait VLCMediaPlayer\vlc-3.0.7-win32.exe /S

:end