|
|
|
|
Articles -
Technology
|
|
Written by Bob H
|
|
Saturday, 28 February 2009 09:18 |
This question was posed on LinkedIn recently and I responded in my usual disruptive style. Arguments were made against film because 4k sensors potentially don't have enough dynamic range because of the photon capture well sizes. I think I covered that in my response reproduced below:
While I agree that the dynamic range issue could be a problem, I think that the argument can get a little confused because you can also shutter more quickly and thus you don't have to fill the electron well. You can shoot at 50Hz progressive frames instead of the archaic 24Hz progressive frames. You then achieve much better motion rendering and make it much easier to shoot motion than with film.
With film the intermediate process immediately reduces quality, even with the finest sensor you can never do a 1:1 transfer of analogue media without loss of 'signal' or introduction of noise. Celluloid noise is a nature of the structure of the molecules deposited on the base, as well as the base itself, so while this noise is 'analogue' and thus more acceptable to us than digital noise, it is still present. CCDs are not without noise, but it can be more predictable and controllable as many TK's demonstrate. I think digital origination has more advantages than resolution in presenting an image that is potentially clearer and more reliable than film.
Furthermore I have walked out of films because of the poor state of the print and so I welcome digital cinema for reliable theatrical presentation as well.
If you want to see a picture that can meet of exceed that of a 1950s cinema epic then take a look at SHV from NHK in Japan (demonstrated at IBC in Amsterdam last year with a real live link from London). Their prototype camera uses four 2.5 inch (64 mm) CCDs each with a resolution of only 3840 × 2048. Using two CCDs for green and one each for red and blue, they then used a spatial pixel offset method to bring it to 7680 × 4320. Aptina/Micron are now making a CMOS sensor for NHK's next camera which is 4112 (H) x 2168 (V) and that can capture at up to 60fps. I dare say four of those will do the job!
OK, SHV will be another 5 years away before it is practical, but it is leading the charge towards very high resolution capture at decent frame rates and someone has to do the bleeding edge development to set the bar.
D-Cinema is here, it has many advantages which balance out and for me the most important issue is doing away with people saying they need to shoot a "filmic look", Cinema is my favourite medium but film is a legacy and we need to move on. I have no doubt offended someone with this post, but I think it needs to be said 24p should be put behind us as soon as possible.

|
|
Articles -
Technology
|
|
Written by Bob H
|
|
Tuesday, 24 February 2009 13:01 |
We have a new Canon Multi Function Device (printer, copier, scanner) in the office and it is network ready. So I have configured it to upload scans to the office server for easy access. The problem is that I want to purge these files after some time so as not to clog anything up. The solution was to archive them all off periodically using a CRON job and to use a shell script to manage that process. Here is the file I created:
#!/bin/sh
tar --no-recursion -cjf ~/canon/.archive/scan_archive_`date '+%Y-%m-%d.%s'`.tar.bz2 ~/canon/* if [ $? -eq 0 ] then find ~/canon/ -name '*.jpg' -mtime +6 -delete find ~/canon/ -name '*.tif' -mtime +6 -delete find ~/canon/ -name '*.pdf' -mtime +6 -delete find ~/canon/ -name '*.tar.bz2' -mtime +180 -delete fi
This creates an archive which has a unique time-stamp in its name and then if that goes ahead successfully then it deletes any images older than 6 days from the directory. It also removes any archives older than 180 days just to stop this going on forever and I am contemplating getting it to delete any very small archives because when there is nothing to archive it still creates a fragment of an archive. I must thank this site for inspiring these commands and give them full credit.
|
|
Articles -
Technology
|
|
Written by Bob H
|
|
Sunday, 22 February 2009 16:55 |
Now this is cool, I was just browsing looking for silicon for our products and I found quite a funky little chip from Broadcom . It is the new BCM70020 which describes itself as "a single-chip, full featured, multi-standard audio/video decoder/encoder/transcoder solution targeting volume PC and PC-based consumer electronic applications."
Not only can it encode HD from either analogue or digital sources, but it can transcode between different MPEG formats and also act as a scaler/down-converter! I think someone in the broadcast industry needs to get their hands on these quickly and create a multi-format scaler/encoder/transcoder matrix device! A few of these, a PCI-E bus and voila there you have a cool transmission ops device.
Very cool.
|
|
Articles -
Travelling
|
|
Written by Bob H
|
|
Sunday, 18 January 2009 17:42 |
|
The London Black Cab, or Hackney Carriage (as they may not always be black) is one of the most iconic symbols of London. This Christmas I was asked by Angeliki's brother-in-law what company made them (what brand). Oddly enough no one company makes all of them, unlike in cities like Berlin where almost every (yellow) taxi is a Mercedes, the Hackney Carriage is infact a style of vehicle which has been around since the 40s. From Austin, LTI or Metrocab. The most notable thing about the Hackney Carriage is that it has a 25ft turning circle which allows it to turn around in London's tight streets in one go, I doubt a New York Taxi could achieve such a feat! London's Hackney Carrage drivers are the only ones allowed to stop and ply for trade on the streets of London without a booking, so if visiting London only ever hail a black cab otherwise you might not be so safe. The other advantage of a licensed London Cab driver is that he must has passed "The Knowledge", which is a test which is designed to ensure that the applicant knows every part of London inside and out. They are tested to ensure they can (without the assistance of a map) remember a selection of routes around London and the location of almost any street. Read more about this fascinating vehicle here: http://www.lvta.co.uk/history.htm http://en.wikipedia.org/wiki/Hackney_carriage http://www.lti.co.uk/
|
|
|
|
|
|
|
Page 2 of 4 |