Quest for the perfect camera for the Primary School classroom of 2010

I want to find the perfect camera for your classroom, I don’t expect to find a one size suits all type solution.

Challenge CLC have been extremely kind in funding this project and Bradford schools have been more then happy to write a review based on their experiences with the different cameras. My plan is to rotate the cameras between schools and classrooms to get multiple reviews on each camera.

We are buying 10 cameras and reviewing them over the next few weeks. Also thanks to @Raff31, @LordLangley73 and @DeerWood for their input. We will be using this document for suggestions on ways to use these cameras.

Our shortlist (of which we probably need to remove 1/2):

  1. Kodak Zi6 (£90)
  2. *Kodak Zi8 (£120)
  3. Toshiba Camelio P30 (£115)
  4. Panasonic SDR S15 (£160)
  5. +/ Apple iPod Nano 8GB 5Th generation (£105)
  6. / Zoom Q3 (£200)
  7. Veho VCC 002 (£100)
  8. Panasonic SDR S26 (£163)
  9. Kodak Zx1 (£70)
  10. *Sanyo VPC CG10EBK / Xacti (£145)
  11. / Mustek DV316L (£38)
  12. / Samsung U10 (£83)
  13. Veho VCC-001 (£90) (Not sure on this one because its designed for youtube)
  14. m/ Sony MHS-PM1 (£130)
  15. / Creative Vado (£54)
  16. / Creative Vado HD (£90)
  17. Vivitar DVR 545 (£70)
  18. +/ *Flip Video Ultra High Definition Camcorder 8GB (£120)
  19. +/ Flip Video Ultra Camcorder 2nd Generation 4GB (£90)

And a bit controversial:

  1. Actioncam Action Video Camera (£28)
  2. +Veho VCC-003 Muvi (£50)

* = Comes highly recommended
/ = Stunning design
+ = Built in memory (Enough to record video)
m = Special memory required

Which would you remove? Has anyone seen any info on an action video camera being used in a classroom before? Does this seem completely silly? I like Silly, do you?

Removing the first bunch..

Getting my list down was painfully difficult, I wanted to try as many cameras as possible but some where too expensive or not suitable and my budget is limited!

Here is are the camcorders I removed and reasons for removing them:

  1. Panasonic SDR S15 (£160) — too expensive
  2. Panasonic SDR S26 (£163) — too expensive
  3. Zoom Q3 (£200) too expensive
  4. Vivitar DVR 545 (£70) — out of stock
Total amount to spend is now only £1440 for cameras and £195 for memory cards! Bargain for 17 cameras! Now to see if we can get that level of funding! 🙂

And the winner is.. Teachers!

I found a new level of respect for teachers this week.

Teachers nationwide used our technology to run live, on-line lessons for their pupils, this meant that learning was able to continue even with school closures.

These teachers are an inspiration. Keep up the good work, you know who you are! If you are one of these teachers then please leave a comment and maybe a link to a blog post about how you delivered your lessons!

One school even made the local press!

Simple MagickWand Text Generator

Just finishing up for the day and wanted to quickly publish this, it might be a bit sloppy..

Change Font Face, Size, Color & Background image height and width by modifying the GET parameters.

Example GET = <img src=”http://primaryschoolteaching.co.uk/generator/font2.php?font=kiddy&txt=api%20for%20school%20fonts&width=150&height=50&fontsize=15&colorcode=b6d4f1″>

Example output =

Code (copy and paste to test2.php and change url):


<?php
$font = $_GET[‘font’];
$txt = $_GET[‘txt’];
$height = $_GET[‘height’];
$width = $_GET[‘width’];
$fontsize = $_GET[‘fontsize’];
$color = $_GET[‘colorcode’];

// die if font permissions are bad
if(!is_readable(“$font.ttf”)) {
die(“$font is not readable!”);
}

if(extension_loaded(‘magickwand’)) {
$resource = NewMagickWand();
$status = MagickReadImage($resource, “white-pixel.jpg“);
$resource = MagickTransformImage($resource,’0x0′,”$heightx$width”);
$draw = NewDrawingWand();

DrawSetFont($draw,”/path/to/$font.ttf“);
DrawSetFontSize($draw, $fontsize);
DrawSetFillColor($draw, “#$color”);
MagickCropImage($resource, 200, 30, 0, 0 );

$status = MagickAnnotateImage($resource, $draw, 5, 20, 0, “$txt”);

header(‘Content-Type: image/gif’);
echo MagickEchoImageBlob($resource);
exit;
}
?>

You could now use jQuery to pass the color or whatever on the fly so it autoregens each time you edit a param.. Simples! Don’t forget to supply a background file!