-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvideo_encryption_decryption.py
More file actions
228 lines (191 loc) · 7.45 KB
/
video_encryption_decryption.py
File metadata and controls
228 lines (191 loc) · 7.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# Video Encryption Decryption
# imported necessary library
import tkinter
from tkinter import *
import tkinter as tk
import tkinter.messagebox as mbox
from tkinter import ttk
from tkinter import filedialog
from pil import ImageTk, Image
import cv2
import numpy as np
import random
import os
from cv2 import *
from moviepy.editor import *
# Main Window & Configuration
window = tk.Tk() # created a tkinter gui window frame
window.title("Video Encryption Decryption") # title given is "DICTIONARY"
window.geometry('1000x700')
# top label
start1 = tk.Label(text = "VIDEO ENCRYPTION\nDECRYPTION", font=("Arial", 55,"underline"), fg="magenta") # same way bg
start1.place(x = 120, y = 10)
def start_fun():
window.destroy()
# start button created
startb = Button(window, text="START",command=start_fun,font=("Arial", 25), bg = "orange", fg = "blue", borderwidth=3, relief="raised")
startb.place(x =150 , y =580 )
# image on the main window
path = "Images/front.jpg"
# Creates a Tkinter-compatible photo image, which can be used everywhere Tkinter expects an image object.
img1 = ImageTk.PhotoImage(Image.open(path))
# The Label widget is a standard Tkinter widget used to display a text or image on the screen.
panel = tk.Label(window, image = img1)
panel.place(x = 130, y = 230)
# function created for exiting
def exit_win():
if mbox.askokcancel("Exit", "Do you want to exit?"):
window.destroy()
# exit button created
exitb = Button(window, text="EXIT",command=exit_win,font=("Arial", 25), bg = "red", fg = "blue", borderwidth=3, relief="raised")
exitb.place(x =730 , y = 580 )
window.protocol("WM_DELETE_WINDOW", exit_win)
window.mainloop()
# Main Window & Configuration
window1 = tk.Tk() # created a tkinter gui window frame
window1.title("Video Encryption Decryption") # title given is "DICTIONARY"
window1.geometry('1000x700')
# function to select file
def open_file():
global filename
filename = filedialog.askopenfilename(title="Select file")
# print(filename)
path_text.delete("1.0", "end")
path_text.insert(END, filename)
# function to encrypt video and show encrypted video
def encrypt_fun():
global filename
path_list = []
# converting videos to images --------------------------------
# Read the video from specified path
cam = cv2.VideoCapture(filename)
# print(cam.get(cv2.CAP_PROP_FPS))
# info1.config(text="Frame Rate : " + str(cam.get(cv2.CAP_PROP_FPS)))
x = int(cam.get(cv2.CAP_PROP_FPS))
try:
# creating a folder named data
if not os.path.exists('Video Images'):
os.makedirs('Video Images')
# if not created then raise error
except OSError:
print('Error: Creating directory of data')
# frame
currentframe = 0
x2 = 0
while (True):
# reading from frame
ret, frame = cam.read()
if ret:
if currentframe % x == 0:
# if video is still left continue creating images
x1 = int(currentframe / x)
name = './Video Images/frame' + str(x1) + '.jpg'
# print(x1, end = " ")
x2 = x2 + 1
# print ('Creating...' + name)
# writing the extracted images
cv2.imwrite(name, frame)
# ------------- convert to encrypted image -----------------
# name_of = './Video Images/frame' + str(x1) + '.jpg'
image_input = imread(name, IMREAD_GRAYSCALE)
(x3, y) = image_input.shape
image_input = image_input.astype(float) / 255.0
# print(image_input)
mu, sigma = 0, 0.1 # mean and standard deviation
key = np.random.normal(mu, sigma, (x3, y)) + np.finfo(float).eps
# print(key)
image_encrypted = image_input / key
name1 = './Video Images/frame' + str(x1) + '.jpg'
# path_list.append(name1)
# print(x1)
imwrite(name1, image_encrypted * 255)
# ----------------------------------------------------------
# increasing counter so that it will
# show how many frames are created
currentframe += 1
else:
break
# ret,frame = cam.read()
# info2.config(text="No. of frame/Images : " + str(x2))
# Release all space and windows once done
cam.release()
cv2.destroyAllWindows()
# print(len(path_list))
# for i in path_list:
# print(i)
ic_list = []
for i in range(x2):
ic_list.append(ImageClip("Images/sample.jpg").set_duration(1))
video = concatenate(ic_list, method="compose")
video.write_videofile('slide_show.mp4', fps=24)
# playing encrypted video ------------
source1 = cv2.VideoCapture('slide_show.mp4')
# running the loop
while True:
# extracting the frames
ret1, img1 = source1.read()
# displaying the video
cv2.imshow("Encrypted Video", img1)
# exiting the loop
key = cv2.waitKey(1)
if key == ord("q"):
break
# function to decrypt video and show decrypted video
def decrypt_fun():
global filename
source = cv2.VideoCapture(filename)
# running the loop
while True:
# extracting the frames
ret, img = source.read()
# converting to gray-scale
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# displaying the video
cv2.imshow("Decrypted Video", gray)
# exiting the loop
key = cv2.waitKey(1)
if key == ord("q"):
break
# function to reset the video to original video and show preview of that
def reset_fun():
global filename
source3 = cv2.VideoCapture(filename)
# running the loop
while True:
# extracting the frames
ret3, img3 = source3.read()
# displaying the video
cv2.imshow("Original Video", img3)
# exiting the loop
key = cv2.waitKey(1)
if key == ord("q"):
break
# top label
start1 = tk.Label(text = "VIDEO ENCRYPTION\nDECRYPTION", font=("Arial", 55, "underline"), fg="magenta") # same way bg
start1.place(x = 120, y = 10)
# lbl1 = tk.Label(text="Select any video, dimension & crop it...", font=("Arial", 40),fg="green") # same way bg
# lbl1.place(x=50, y=100)
lbl2 = tk.Label(text="Selected Video", font=("Arial", 30),fg="brown") # same way bg
lbl2.place(x=80, y=220)
path_text = tk.Text(window1, height=3, width=37, font=("Arial", 30), bg="light yellow", fg="orange",borderwidth=2, relief="solid")
path_text.place(x=80, y = 270)
# Select Button
selectb=Button(window1, text="ENCRYPT VIDEO",command=encrypt_fun, font=("Arial", 25), bg = "orange", fg = "blue")
selectb.place(x = 120, y = 450)
# Select Button
selectb=Button(window1, text="DECRYPT VIDEO",command=decrypt_fun, font=("Arial", 25), bg = "orange", fg = "blue")
selectb.place(x = 550, y = 450)
# Select Button
selectb=Button(window1, text="SELECT",command=open_file, font=("Arial", 25), bg = "light green", fg = "blue")
selectb.place(x = 80, y = 580)
# Get Images Button
getb=Button(window1, text="RESET",command=reset_fun, font=("Arial", 25), bg = "yellow", fg = "blue")
getb.place(x = 420, y = 580)
def exit_win1():
if mbox.askokcancel("Exit", "Do you want to exit?"):
window1.destroy()
# Get Images Button
getb=Button(window1, text="EXIT",command=exit_win1, font=("Arial", 25), bg = "red", fg = "blue")
getb.place(x = 780, y = 580)
window1.protocol("WM_DELETE_WINDOW", exit_win1)
window1.mainloop()