raspberrypi(1,2,3): updated picamera to 1.12; added more resolutions to fast network camera

This commit is contained in:
Calin Crisan 2016-10-01 16:23:11 +03:00
parent e7b8219b24
commit bb30132043
4 changed files with 20 additions and 5 deletions

View File

@ -112,10 +112,15 @@ RESOLUTION_CHOICES = [
('1280x800', '1280x800'),
('1280x960', '1280x960'),
('1280x1024', '1280x1024'),
('1296x972', '1296x972'),
('1440x960', '1440x960'),
('1440x1024', '1440x1024'),
('1600x1200', '1600x1200'),
('1920x1080', '1920x1080')
('1640x922', '1640x922'),
('1640x1232', '1640x1232'),
('1920x1080', '1920x1080'),
('2592x1944', '2592x1944'),
('3280x2464', '3280x2464')
]
ROTATION_CHOICES = [

View File

@ -112,10 +112,15 @@ RESOLUTION_CHOICES = [
('1280x800', '1280x800'),
('1280x960', '1280x960'),
('1280x1024', '1280x1024'),
('1296x972', '1296x972'),
('1440x960', '1440x960'),
('1440x1024', '1440x1024'),
('1600x1200', '1600x1200'),
('1920x1080', '1920x1080')
('1640x922', '1640x922'),
('1640x1232', '1640x1232'),
('1920x1080', '1920x1080'),
('2592x1944', '2592x1944'),
('3280x2464', '3280x2464')
]
ROTATION_CHOICES = [

View File

@ -112,10 +112,15 @@ RESOLUTION_CHOICES = [
('1280x800', '1280x800'),
('1280x960', '1280x960'),
('1280x1024', '1280x1024'),
('1296x972', '1296x972'),
('1440x960', '1440x960'),
('1440x1024', '1440x1024'),
('1600x1200', '1600x1200'),
('1920x1080', '1920x1080')
('1640x922', '1640x922'),
('1640x1232', '1640x1232'),
('1920x1080', '1920x1080'),
('2592x1944', '2592x1944'),
('3280x2464', '3280x2464')
]
ROTATION_CHOICES = [

View File

@ -4,9 +4,9 @@
#
################################################################################
PYTHON_PICAMERA_VERSION = 1.10
PYTHON_PICAMERA_VERSION = 1.12
PYTHON_PICAMERA_SOURCE = picamera-$(PYTHON_PICAMERA_VERSION).tar.gz
PYTHON_PICAMERA_SITE = http://pypi.python.org/packages/source/p/picamera
PYTHON_PICAMERA_SITE = https://pypi.python.org/packages/ab/53/54a20f53e61df5c329480207fb0b6e6e25c64d16e82e899de335e08df7d9
PYTHON_PICAMERA_SETUP_TYPE = distutils
$(eval $(python-package))