Skip to content

Commit ea27fbf

Browse files
author
İSMAİL TAŞDELEN
committed
Update camera-v8.3.py
1 parent b6d95ba commit ea27fbf

File tree

1 file changed

+19
-20
lines changed

1 file changed

+19
-20
lines changed

Diff for: camera-v8.3.py

+19-20
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
11
#!/usr/bin/env python
22
#-*- coding: utf-8 -*-
33

4-
#########################################################
5-
# PYTHON CAMERA v8.3 SOFTWARE - GH0ST S0FTWARE #
6-
#########################################################
7-
# CONTACT #
8-
#########################################################
9-
# DEVELOPER : İSMAİL TAŞDELEN #
10-
# GMAIL : pentestdatabase@gmail.com #
11-
# Linkedin : https://www.linkedin.com/in/ismailtasdelen #
12-
# Whatsapp : + 90 534 295 94 31 #
13-
#########################################################
14-
154
import pygame.camera
165
import pygame.image
176

18-
icon_txt = """
7+
camerasoftware_ico = """
198
_________ __ _____________ ___ ____ _____
209
/ ____/ | / |/ / ____/ __ \/ | _ __( __ ) |__ /
2110
/ / / /| | / /|_/ / __/ / /_/ / /| | | | / / __ | /_ <
2211
/ /___/ ___ |/ / / / /___/ _, _/ ___ | | |/ / /_/ / ___/ /
2312
\____/_/ |_/_/ /_/_____/_/ |_/_/ |_| |___/\____(_)____/
24-
13+
14+
#########################################################
15+
# PYTHON CAMERA v8.3 SOFTWARE - GH0ST S0FTWARE #
16+
#########################################################
17+
# CONTACT #
18+
#########################################################
19+
# DEVELOPER : İSMAİL TAŞDELEN #
20+
# GMAIL : pentestdatabase@gmail.com #
21+
# Linkedin : https://www.linkedin.com/in/ismailtasdelen #
22+
# Whatsapp : + 90 534 295 94 31 #
23+
#########################################################
2524
"""
2625

27-
print icon_txt
26+
print camerasoftware_ico
2827

2928
pygame.camera.init()
3029
kamera = pygame.camera.Camera(pygame.camera.list_cameras()[0])
3130
kamera.start()
3231
img = kamera.get_image()
33-
cm = "***************************************************************"
32+
star = "***************************************************************"
3433

35-
print cm
34+
print star
3635

37-
img_name = raw_input("Enter a name : ")
36+
img_name = raw_input("Fotoğrafınıza bir isim belirleyiniz (example.jpg) : ")
3837
pygame.image.save(img, img_name)
39-
loading = "Photo saved... ( Loading... %100 )"
38+
yükleniyor = "Fotoğrafınız kaydedildi... ( Yükleniyor... %100 )"
4039

41-
print loading
40+
print yükleniyor
4241

43-
print cm
42+
print star
4443

4544
pygame.camera.quit()

0 commit comments

Comments
 (0)