You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very early file. Things will be changed here first, before being pushed to the main TcNo-Transcoder.bat file.
New in v1.3: Folder support. You can add 1 or more folders, as well as files for transcoding.
ECHO If you want it saved to a new directory, exit, and set it in settings.bat.
78
+
PAUSE
79
+
ECHO.
80
+
ECHO%inF% will render with the current settings:
81
+
ECHO Resolution: %res%
82
+
ECHO FPS: %fps%
83
+
ECHO Codec: %codec%
84
+
ECHO.
85
+
ECHO This command will be run:
86
+
ECHO.
87
+
88
+
:: Sets string that it will run
89
+
GOTO setStr
90
+
:setStrReturn
91
+
92
+
ECHO%comStr%
93
+
94
+
ECHO.
95
+
ECHO.
96
+
:: Checks that the user is comfortable running the command
97
+
SET /p corr="Is this correct? (y/n): "
98
+
IF"%corr%"=="y" (%comStr%)
99
+
IF"%corr%"=="n" ( ECHO Stopped. )
100
+
101
+
:: Goes back a folder (if run from command line) so user doesn't have to navigate themselves.
102
+
CD ../
103
+
ECHO.
104
+
ECHO.
105
+
GOTO thanks
106
+
:thanksReturn
107
+
ECHO.
108
+
:: Loops back to the start of the program
109
+
GOTO pgStart
110
+
::---------------------------------------
111
+
112
+
113
+
::---------------------------------------
114
+
:: ------------ HELP + INFO ------------
115
+
::---------------------------------------
116
+
:help
117
+
CLS
118
+
ECHO Hello.
119
+
ECHO Welcome to TechNobo's Video Transcoder %batVer%
120
+
ECHO built for generating Proxy files with multitrack audio quickly.
121
+
ECHO.
122
+
ECHO ---------------------------------------
123
+
ECHO.
124
+
ECHO BASIC USAGE:
125
+
ECHO Edit run.bat with a text editor to manually set variables at the top.
126
+
ECHO.
127
+
ECHO ---------------------------------------
128
+
ECHO.
129
+
ECHO INFORMATION OPTIONS:
130
+
ECHO -h, --help Displays this help INFORMATION
131
+
ECHO -i, --info Displays program + author info
132
+
ECHO -d, --devices Displays available GPUs
133
+
ECHO -a, --audio Displays available input + output audio codecs/formats
134
+
ECHO -v, --video Displays available input + output video codecs/formats
135
+
ECHO.
136
+
ECHO ---------------------------------------
137
+
ECHO.
138
+
ECHO TROUBLESHOOTING:
139
+
ECHO - Make sure you're using the most updated Nvidia drivers. The project currently uses NVEncC version %nvenccVer%. Make sure you're using Nvidia graphics driver %minNV% or later.
140
+
ECHO.
141
+
ECHO.
142
+
ECHO.
143
+
ECHO For far more information, check the TcNo Transcoder Wiki https://github.com/TcNobo/TcNo-Transcoder/wiki
144
+
GOTO :eof
145
+
146
+
:info
147
+
CLS
148
+
ECHO Hello.
149
+
ECHO Welcome to TechNobo's Video Transcoder %batVer%
150
+
ECHO built for generating Proxy files with multitrack audio quickly.
151
+
ECHO.
152
+
ECHO ---------------------------------------
153
+
ECHO.
154
+
ECHO This project is Open-Source, licensed under GPL-3.0
155
+
ECHO You can see what's going on under the hood, or contribute here:
0 commit comments