Created
April 27, 2022 00:26
-
-
Save rat/69e94c6fb1f205407e0dd616abc8f806 to your computer and use it in GitHub Desktop.
Estrutura de vídeos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Run Batch script] | |
@="&New Video" | |
"Icon"="%SystemRoot%\\System32\\shell32.dll,71" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Run Batch script\command] | |
@="C:\\Windows\\video.bat \"%V\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@CHCP 1252 >NUL | |
@echo off | |
set args=%* | |
set /p video="Video ID: " | |
mkdir "%~1\%video%\1 - Roteiro" | |
mkdir "%~1\%video%\2 - Áudio Bruto" | |
mkdir "%~1\%video%\3 - Vídeo Bruto" | |
mkdir "%~1\%video%\4 - Projeto" | |
mkdir "%~1\%video%\5 - Artes" | |
mkdir "%~1\%video%\6 - Fotos" | |
mkdir "%~1\%video%\7 - Músicas" | |
mkdir "%~1\%video%\8 - Efeitos Sonoros" | |
mkdir "%~1\%video%\9 - Renderização Final" | |
copy NUL "%~1\%video%\Comentário Fixado.txt" >NUL | |
copy NUL "%~1\%video%\Descrição Vídeo.txt" >NUL | |
copy NUL "%~1\%video%\Keywords.txt" >NUL | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment