mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-22 06:23:20 -07:00
Merge branch 'master' of https://github.com/MachineEditor/DeepFaceLab
This commit is contained in:
commit
7e1945aa16
3 changed files with 56 additions and 4 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,10 +1,7 @@
|
||||||
*
|
__pycache__/
|
||||||
!*.md
|
!*.md
|
||||||
!*.txt
|
!*.txt
|
||||||
!*.jpg
|
!*.jpg
|
||||||
!requirements*
|
!requirements*
|
||||||
!Dockerfile*
|
!Dockerfile*
|
||||||
!*.sh
|
!*.sh
|
||||||
convert.py
|
|
||||||
randomColor.py
|
|
||||||
train.py
|
|
||||||
|
|
3
main.py
3
main.py
|
@ -364,6 +364,9 @@ if __name__ == "__main__":
|
||||||
exit(0)
|
exit(0)
|
||||||
parser.set_defaults(func=bad_args)
|
parser.set_defaults(func=bad_args)
|
||||||
|
|
||||||
|
from utils.logo import print_community_info
|
||||||
|
print_community_info()
|
||||||
|
|
||||||
arguments = parser.parse_args()
|
arguments = parser.parse_args()
|
||||||
arguments.func(arguments)
|
arguments.func(arguments)
|
||||||
|
|
||||||
|
|
52
utils/logo.py
Normal file
52
utils/logo.py
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
|
||||||
|
|
||||||
|
def print_community_info():
|
||||||
|
print ('You are using Machine Video Editor comunity fork')
|
||||||
|
|
||||||
|
print_logo()
|
||||||
|
|
||||||
|
print_discord_info()
|
||||||
|
|
||||||
|
print_commercial_contact()
|
||||||
|
|
||||||
|
print_dontation_link()
|
||||||
|
|
||||||
|
print_recruitment_info()
|
||||||
|
|
||||||
|
def print_discord_info():
|
||||||
|
print ('Join us in discord, inivite link https://discord.gg/BSnt5Fv')
|
||||||
|
|
||||||
|
def print_commercial_contact():
|
||||||
|
print ('Commercial inquires send to ognjen@syntheticfactory.com (shared with the group)')
|
||||||
|
|
||||||
|
def print_logo():
|
||||||
|
print ('''
|
||||||
|
#####
|
||||||
|
.##############*
|
||||||
|
###############(###
|
||||||
|
** ##*#########/(############
|
||||||
|
/&&&&%* ######### ## (# #######
|
||||||
|
/&&&&&&&&&/, (####### # #*######
|
||||||
|
*&&&&&&&&&&&&&#/#####.#( # #########
|
||||||
|
*&&&&&&&&&&&&&%%%%%((## /#### ##########
|
||||||
|
### *&%%%%%%%%&&&&%%%%%%%%%#(###########
|
||||||
|
########(##(%%%%%%%%&&&&&&&&&&&%%%%%%%#(######.
|
||||||
|
/##########(%%%%%%%%%%%&&%%%%&&&%%%%%&&&&%%(#*
|
||||||
|
##########(%%%%%%%%%%%%%%%%%%&&&&&&&&&&&&#.
|
||||||
|
##. ###########(/&&&&%%%%%%%%%%%%%%%&&&&&&&/
|
||||||
|
############# (##/&&&&%%&%%%%%%%%%&&&&&%*
|
||||||
|
.############ # *&&&&&&%%&%%%%%%%%(,
|
||||||
|
*########## ## *&&&&&&&%&%%%%(#####(
|
||||||
|
######## # *&&&&&&%%#(###########
|
||||||
|
######### ###*&&&&#( #############,
|
||||||
|
################ . ###########
|
||||||
|
#############################(
|
||||||
|
### *######################
|
||||||
|
####################.
|
||||||
|
*#######* ### ''')
|
||||||
|
|
||||||
|
def print_dontation_link():
|
||||||
|
print ('Support us via donation https://www.paypal.me/ognjenjaric or patreon https://www.patreon.com/machineeditor')
|
||||||
|
|
||||||
|
def print_recruitment_info():
|
||||||
|
print ('If you would like to contribute we are looking for more members, apply via discord!')
|
Loading…
Add table
Add a link
Reference in a new issue