projkov / django-webcam

UNMAINTAINED: this project is not currently active. no plan to restart it soon

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-webcam

django fields to get and store webcam snaphot

  • fully compatible with Django FileField protocol
  • Supports gif/jpeg/png
  • Manage multiple fields in the same page
  • Works in the admin as any other field ( need import webcam.admin to configure FORMFIELD_FOR_DBFIELD_DEFAULTS)

Note

based on jquery.webcam plugin from Robert Eisele (robert@xarg.org)

Examples

models.py:

import webcam.admin # needed to show the right widget in the admin
from django.db import models
from webcam.fields import CameraField

class Person(models.Model):
    picture = CameraField()

Links

About

UNMAINTAINED: this project is not currently active. no plan to restart it soon

License:Other


Languages

Language:Python 67.9%Language:JavaScript 23.1%Language:Makefile 4.2%Language:HTML 3.8%Language:CSS 1.0%