forked from SxtBox/VLC_Player_Streaming_Data_AIO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutomatic Installer.bat
More file actions
66 lines (61 loc) · 2.73 KB
/
Copy pathAutomatic Installer.bat
File metadata and controls
66 lines (61 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@echo off
color a
cls
title AIO Streaming For VLC Player
echo.
echo ------------------------------------------------------------
echo For More Modules Or Updates Stay Connected to Kodi dot AL
echo ------------------------------------------------------------
echo *------------------------------------------------------*
echo ' AIO Streaming For VLC Player 1.x and 2.x 3.x '
echo *------------------------------------------------------*
echo ' Author : Olsion Bakiaj '
echo ' Email : TRC4@USA.COM '
echo ' Website : KODI.AL '
echo ' Version : 1.0 '
echo ' Created : Wednesday, March 4, 2020 '
echo ' Modified : Thursday, January 27, 2022 '
echo *------------------------------------------------------*
echo.
goto menu
:menu
echo Select Your Operating System:
echo.
echo [1] For Windows 32 BIT
echo [2] For Windows 64 BIT
:choice
echo.
set /P C=Insert your number:
if "%C%"=="1" goto install32
if "%C%"=="2" goto install64
goto choice
:install32
copy "playlist_youtube.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "youtube_live.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "youtube.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "vimeo.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "dailymotion.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "twitch_multi.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "twitch_single.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "twitch-extension.lua" "%ProgramFiles%\VideoLAN\VLC\lua\extensions\"
copy "soundcloud.lua" "%ProgramFiles%\VideoLAN\VLC\lua\playlist\"
copy "browse_window.lua" "%ProgramFiles%\VideoLAN\VLC\lua\http\dialogs\"
goto end
:install64
copy "playlist_youtube.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "youtube_live.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "youtube.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "vimeo.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "dailymotion.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "twitch_multi.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "twitch_single.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "twitch-extension.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\extensions\"
copy "soundcloud.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\playlist\"
copy "browse_window.lua" "%ProgramFiles(x86)%\VideoLAN\VLC\lua\http\dialogs\"
goto end
:end
cls
echo. AIO Streaming For VLC Player Was Installed Successfully, Happy Playing!
echo. Press any key to close this window.
echo.
pause