Skip to content

Commit

Permalink
Update encode.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshay-Arjun authored Nov 17, 2022
1 parent 95feafe commit 0ed4b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def clean_tmp(path="./tmp"):
shutil.rmtree(path)
print("[INFO] tmp files are cleaned up")
def main():
ENCODE_CHOICE = input("Choose text or text from text document to hide inside image. \n Enter number either 1 or 2 : \n 1.TEXT \n 2.TEXT DOCUMENT \n")
ENCODE_CHOICE = int(input("Choose text or text from text document to hide inside image. \n Enter number either 1 or 2 : \n 1.TEXT \n 2.TEXT DOCUMENT \n"))
if ENCODE_CHOICE==1:
TEXT_TO_ENCODE = input("Enter the text to encrypt and encode : ")
countFrames()
Expand Down

0 comments on commit 0ed4b44

Please sign in to comment.