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()

Changelog

This sections lists the biggest changes done on each release.

Release 1.0

  • FieldFile protocol compatibility
  • removed database storage

0.x

  • init