Search
Categories
- 01 Audio (3)
- 01 Songs/Music (6)
- 02 Production News (4)
- 03 Stockphoto (12)
- 04 Substance (30)
Archive
Tags in a cloud!
Looking for some cool rhythms and lounge music? We started to produce a new category for istockaudio. Our lounge songs have a wide range of different rhythms but they are not overloaded with sounds so they can be used in many different ways. South american rhythms from brazil combined with guitar or funky grooves with world instruments like tabla. Different loops from these songs will be uploaded to istock soon.
Wer auf der Suche nach cooler Lounge Musik ist, ist bei uns richtig. Ein Teil unserer nächsten Stücke behandeln das Themas Chill oder auch Lounge Musik mit leichten Rhythmen oder funky Sounds. Diese Songs können in vielen verschiedenen Bereichen eingesetzt werden. Demnächst werden wir aus den beiden Stücken noch Loops hochladen.
We created five new and wonderful acoustic guitar songs. They fits perfectly for background music. We tried to create different moods from dreamy melody to a little bit melancholic songs. All songs are produced with logic express and pro tools. For the perfect sounds we used the same T-Racks plug ins from IK multimedia and CSR Classik Studio Reverb to create the reverb sound. Listen and tell us what do you think.
Wir haben fünf neue, akustische Gitarrensounds produziert und auf istock veröffentlich. Alle Songs sind perfekt für Hintergrundmusik geeignet oder Multimedia Anwendungen sowie wieder für Film und Fernsehen. Wir haben verschiedene Stimmungen erstellt, von träumenden Melodien bis leicht melancholischen Songs. Alle Stücke wurden mit Logic Express und ProTools aufgenommen und abgemischt. Für den richtigen Sound haben wir wieder T-Racks Plug ins verwendet. Der Hall wurde mit dem CSR Classik Studio Reverb plug in erstellt. Hört mal rein und erzählt uns auf Facebook wie euch die Stücke gefallen.
On the 29th of Jun 2011 4 x6 a contributor on istockphoto wrote “Has anyone ‘successfully’ synced two Canon DSLR in the studio environment? I spent most of today trying to work it out. The best I could get it was 50% sync rate of the two cameras with the studio strobes.”
This started a conversation on what would be the best way to release the shutters on both cameras at the same time. My suggestion was to uses the Arduino microprocessor for controlling the cameras. If you’re wondering I’m not a programmer or electronic engineer, in fact my knowledge on both subjects is about nil. So why would I suggest using a Arduino and trying a DIY project of building a camera shutter release, because sometime it’s the only way to get what you want without paying some insane price. The suggestion got from the Pocketwizard Rep to 4×6 was he needed something like the Pocketwizard Multimax. Which is okay if you have $300,00 plus just hanging around un-used. For me the main problem isn’t getting the flashes to fire, but have the cameras fire in sync. To get the flashes to fire all you would need it one cheap Ebay wireless flash trigger and slave the flashes together. The end cost for this test circuit was under $40,00, add wireless flash trigger and you’re talking about something around $70,00.
The shutter release I came up with is partly based on a design for an Arduino Intervalometer that’s posted on the OpenMoCo website. If you want to build this shutter release you’ll need to replace the LEDs in this test circuit with (2x) 4N28 Optocouplers, you can find more info on wiring your camera to the Arduino on the OpenMoCo site. The major changes I made was to add a Passive Infra Red Movement Alarm (PIR) sensor to trip the shutters if movement is detected. I also added a mode switch so that you could fire the cameras in a manual mode.
The code that drive’s the cameras is listed below. If you want to improve on this design you’re free to copy and used the code. If you can think of any cool functionality to add let me know.
CODE:
// 4 X 6 Camera Trigger.v3
////////////////////////////////////////////////////////////////////
//Fires two cameras at the same time if motion is detected
// or two cameras at the same time if you select mode 0
// Mode 0 places the trigger in manual mode.
// @author: Willie B. Thomas /eyedesign9@googlemail.com
// @date: July 19 2011
// released under a creative commons “Attribution-NonCommercial-ShareAlike 2.0″ license
// * http://creativecommons.org/licenses/by-nc-sa/2.0/de/
////////////////////////////////////////////////////////////////////////
int calibrationTime = 30;
int sensorPin = A0; // int Analog pin 0
int shutterPin = 13; // int Pin 13 for Camera 1
int shutterPin2 = 9; // int Pin 9 for Camera 2
int ModeButton = 3;
int myButton = 7; // sensor for camera mode
int val = 0; // val for storing the button state
void setup()
{
Serial.begin(9600);
pinMode (shutterPin, OUTPUT);
pinMode (shutterPin2, OUTPUT);
pinMode (sensorPin, INPUT);
pinMode (ModeButton, INPUT);
pinMode (myButton, INPUT);
}
void loop(){
val = digitalRead(ModeButton); // Reads modebutton high this selects the Sensor mode
// If modebutton reads low this places the trigger into the manual mode. The void loop function calls
// two function one call mySensor the other myButtonTrigger.
if (val == HIGH){
mySensor();
}
else{
myButtonTrigger();
}
}
// myButtonTrigger Function///////////////////////////////////////////////
void myButtonTrigger(){
val = digitalRead(myButton ); // read input value and store it// check whether the input is HIGH (button pressed)
if (val == HIGH) {
digitalWrite(shutterPin, HIGH); // turn LED ON
digitalWrite(shutterPin2, HIGH); // turn LED ON
} else {
digitalWrite(shutterPin, LOW);
digitalWrite(shutterPin2, LOW);
// delay(1000);
digitalWrite(shutterPin2,LOW);
//delay(1000);
}
}
void mySensor()
{
//give the sensor some time to calibrate
int Reading = analogRead(sensorPin); // int “Reading” as varable for sensorPin and read the value
if(Reading <=400){ // If value is less than or equal to 400 write pin 13/9 HIGH
digitalWrite(shutterPin, HIGH);
digitalWrite(shutterPin2, HIGH);
delay(500); // Delay 500ms to fire shutters on both cameras than write pins LOW
digitalWrite(shutterPin, LOW);
digitalWrite(shutterPin2, LOW);
delay(2000); // Delay 2000ms to give sensor time to reset
}
}
Two new Rock Songs are uploaded to our istock library. Both great for backgroundmusic or an introduction for a television show. The guitar sounds are recorded with logic. The rhythm and drums are programmed in Record/Reason. The final mixing are made in logic with t-racks plugins. For the guitar and bass sound we are using amplitube 3 plugins from ik multimedia.
Zwei neue Rock Songs stehen zum Download bereit. Beide eignen sich z. B. für Hintergrundmusik auf Webseiten oder als Einleitende Stücke für Fernsehshows. Die Gitarre wurde mti Logic aufgenommen und mit amplitube 3 von ik Multimedia wurde der Gitarren- und Basssound erzeugt. Die Rhythmen und Drums wurden in Record/Reason programmiert. Das finale Mixing wurde ebenfalls in Logic erstellt mit T-Racks Plugins, um den entsprechenden Sound zu erzeugen.
Today’s post will deal with getting a natural light feel using an one light setup. The best part of using only one light is you don’t need to carry around a tons of gear. For years I didn’t own a car and going from one job to the next quickly turned into a pain if I need to carry more than I could fit into my backpack and Camera Bag. This was back in the days before the Strobist and all his cool speed lighting tips. I developed a system that allowed me to get the job done using the minimum amount of gear. If It didn’t fit into my Camera Bag, and Backpack it wasn’t taken. The other plus to using only one light in the setups is if done the right you can shoot images from more than one shooting position. With the classic three light setup you are often limited to shooting the subject from one view point, plus you still have to lug around all that damn gear.
The keys points for me when using only one light in a setup is to make the light look believable and not have it tie me down too only one angle of shooting. For this shoot I’ll use a Hensel Integra Pro 500 flash head with a bare bulb, lightstand, and white reflector. The two elements of this image are Svenja Polenz, model and manager of Propeller fashions, and the room in which Svenja will be posing. The room is lit from four large windows that sit behind a dividing half wall that also has three small windows. Looking at the images below you may ask when not just use the window light? Well on this day the Sun refused to play ball, it was a dark rainy Berlin day. Being the old School Mofo that I am dark sky and rain were not going to keep me from getting the shot.
When using a one light setup I always start with determining the direction of the origin of source, in this case it’s the Sunlight or one this day mud grey light entering the room from the main windows. The sources of Illumination are the white wall. Knowing this information I can place my main light into position. For this shot I placed a Hensel bare flash head so that the light would bounces off the ceiling facing the main windows. This creates the direction for the Illumination. The benefit of using a bare flash head is I’m also able to light other parts of the set in a very natural way that mimics the way light would normally enter the room. If you look at the lighting setup below the areas in yellow is how much of the set the flash covered.
In the first image of this post Svenja was facing the main windows. The image below was taken with Svenja on her side and the windows behind. To shape the light on the this image I used a reflector to push a bit more light back into the subject. As you can see with this one light setup I able to easily change my shooting position and still have nice light falling on the subject. If you have any one light setups post your comments and idea.
This week’s lighting tip is how to uses a very simple lighting setup for actor headshots. The requirements for headshots other then capturing the personality of the actor is to light the actor so you don’t have harsh glaring highlight and overly dark shadows. A key was of doing this is to use diffused light. Two great lighting tools for this are large light boxes or lighting panels. I decide to go with using a panel because I like the flexible of using panels and I didn’t want to have to be moving three lights around on the set.
After talking with Sena a young black actress from Berlin the plan was to shot a low key image using the natural background of the studio. The main problem of shooting a black actress on a dark background was separating her off the background. To solve this problem I needed to be able to light the background but still keep the low key lighting look.
To get the effect I was looking for I setup a Panel to the left of the model and lit it with an INTEGRA 500 plus Hensel flash head. The flash was placed so that some of the light would spill pass the panel and light part of the background. To get some separation on the right-hand side of the model I place another Hensel with a grid spot to the right of the model. The last key to this puzzle was I needed to block some of the light coming off the panel that was spilling into the lens of the camera. I did this by placing a Gobo between the panel and the camera. I hope this Friday’s tip helps on your next photo shoot. For more cool tips on lighting visit my friend Luis Alvarez’s site vela-photo.
About three months ago while doing research on time-lapse photography I ran across the Timescrapes.org website. Some of the work being done there by Tom Lowe, Jay Burlage aka Milapse and others is amazing. What blew me away is that these are not your typical time-lapse images shot with a camera on a stationary tripod. These guys have worked out some great techniques for putting the camera in motion.
After doing some more research I found out this technique was pioneered by cinematographer Ron Fricke for has film Baraka. In a nutshell what Fricke and his team developed was a motion control dolly system that enable them to pan or tilt the camera while shooting time-lapse footage. The question then was how were the DIY on Timescrapes pulling off building motion control systems without paying thousands of dollars.
After a little more digging around a found there is a whole Open-Source photographic motion control community whose home is OpenMoCo.org . The site is run by Chris A. Church aka. Shutterdrone. Chris is the brains behind the software that’s running some the of the coolest motion control rigs for the DIY crowd.
1. So tell me who is Chris A. Church?
As to who I am, well, I’m the kind of guy to say something very humbling about myself, and then follow it up with a statement how annoying it is that people always respond to these sorts of questions with disingenuous inflections of humility. Most people describe me as a workaholic, but I think I just have a knack for finding fun hobbies and neat projects to work on, and that’s what I spend my time doing. Generally speaking, I like to split my time between office/shop, and the outdoors – everything else is done en route to one of those two.
2. How long have you been into photography and when did you develop an interest in time-lapse?
I first got into photography in the mid-nineties, but the bug never really bit me until I got into medium format film and pinhole cameras about ten years ago. I’ve always enjoyed the technical nature of photography, whether it was building a box camera, or tweaking chemical temperatures to see what effect it had grain sizes in particular films. At some point, I realized that I was just burning so much money on film to play with it, if I ever wanted to actually get any pictures printed; I’d better switch to digital. It was just over three years ago I decided that time-lapse would be an interesting diversion, and I met up with Tom, Jay, and the other guys from the timescapes forum right as they were all also just starting to get into DIY moco rigs. As you can imagine, that brought out the technician in me again, and I dove in head-first, forgetting some times that the goal was actually to make time-lapse films…
3. What are the goals of the OpenMoco Project?
The main goal of the OpenMoco project is pretty simple: to create and share motion control solutions based on open hardware and open software. Of course, we’re interested in supporting and helping any open-source photography project and helping people solve novel problems without resorting to expensive, closed hardware or software. Our focus remains largely on the Arduino platform at the moment, but a goal is also to get everything ported over to the ARM platforms out there to craft even more expansive capabilities while still being able to run on hand-held form factors.
4. What part of the project has been the most challenging to develop software or hardware and why?
One of the difficult aspects of working with hardware hackers is that we all get here by a sense of self-design and a need to express our creativity fully. In light of this, one of the most difficult challenges is building a system flexible enough, and complicated enough to encourage the brave to not re-invent a new wheel each time, without also hindering those who are just looking to get their problem solved quickly and easily. Writing software or designing hardware in and of its self isn’t particularly challenging (I’ve spent fifteen years in professional software design and development), but setting strict requirements and boundaries create the hurdles that make it a worthwhile achievement. “It has to be built for less than x dollars,” or “it has to run using less than 1k of memory…” That’s where the real interesting and fun challenges lie.
5. The Openmoco project has two solutions for controlling motors, OpenMoco Slim which is a text-based interface to the your Arduino base timelaspse engine which runs stepper motors. The other being the MX2 dolly engine which is a combination of Arduino microntroller with an attached Arduino motor shield that runs DC motors. What are the advantages of one over the other?
The core TimeLapse Engine, which forms the basis of the reference design, is to enable any sort of motion control, for up to four axes, using stepper motors. This is the Swiss Army knife of moco tools – it can do just about everything, but if you just got one thrown in your hand, it’s going to take some time to figure out where that right tool is for the job. In its current form, it’s really designed to entice the software developers and the seasoned makers to focus just on what they have to to come up with the next great motion control tool. It has accuracy, scripting capabilities, keyframing, the ability to react to the environment and its own activities. Slim is just a scripting interface into it, meant to demonstrate what the API it provides can do, to experiment with capabilities, and to support debugging of software development around it. Until we finish the GUI for the TimeLapse engine, its complexity keeps it a bit out of reach of the novice.
The MX2 DollyEngine was designed to be an absolute lowest-cost solution with minimal entry requirements. Whereas the TimeLapse Engine requires four additional motor drivers, a whole lot of soldering, a separate device for user interaction, the MX2 packages it all into a single board (plus arduino). The choice for DC motors here is just to get the job done easily, and at a low-cost. For about 80% of what people want to do in time-lapse, DC motors are perfectly fine for the task, and the theory behind their operation (not to mention the wiring) is simple for a newcomer to get quickly. Of course, the MX2 has several broken-out I/O ports, so one could easily use it to drive external stepper drivers, making it a great learner platform for the first time experimenter.
6. On October 1st you started selling a version of your dolly. Do you anticipate any conflicts with selling this product and the open-source philosophy of the project? Bottom-line will you still be out there helping others to develop Openmoco systems?
Absolutely, the Dynamic Perception project was not to distract from the OpenMoCo project, but instead to enhance it. I kept running into two problems: the first was that there were a lot of guys with a nice garage workshop who could put all of the mechanical stuff together, but no electronics experience who kept asking if they could buy this circuit or that from me, so that they’d have a stable platform to start their learning experience on. The second was that, like in any project, you can pick money or time, and this is an expensive hobby! There are a lot of things we wanted to achieve, but funds were always limited – we could sell systems and put that money back into R&D to create the next generation of open systems to share with everyone. Our hope is that the success of DP can be turned into an accelerator for all things in the OpenMoCo project. The continued success of DP is intricately tied to OpenMoCo: I am a firm believer in open-source software and open hardware, and truly believe that when one eliminates price and the bottom 20% of the features (those that 80% of the shooters rarely use), there isn’t much left to differentiate players in the same field. Open-ness and helping the community grow – even if it means that others can capitalize on our work – is a key tenet of the business. We’re even in talks with a few people who are building competitive systems on the OM reference design, and helping to enable them rather than hinder them. We hope to be seen as a knowledge base more so than just another company selling moco gear.
7. After reading so much about stepper motors on the site I was a little surprise to find you went with a DC motor on the Dynamic Perception Time-lapse Dolly Stage Zero, are you planning on coming out with a stepper base version of the dolly?
Absolutely, we’re working right now on a four-axis stepper driver board that will be both low-cost and powerful, and a GUI that can be run on numerous hand-held platforms. The Stage Zero is aptly named, as it is a building block – we will be providing lots of upgrades for it, stepper upgrade, 2nd and 3rd axes, and some fairly neat configurations that I don’t think anyone’s seen before. These upgrades will open up some shooting techniques that have only been imagined at this point, and put them within reach of the hobbyist. Obviously, the whole repeatable move aspect is going to be there, but we think the envelope needs to be pushed even further.
8. Okay thanks Chris, how that you have the Dynamic Perception Time-lapse Dolly Stage Zero up and running what are your future plans?
At the moment were starting to work together with the Apertus(open-source cinema) project to merge both the open motion control and the open video camera together into one integrated system.
I would like to thank Chris for taking the time to answers the questions here and putting in so much time in development of the OpenMoCo software.
This week’s lighting tip is how to uses a very simple lighting setup for actor headshots. The requirements for headshots other then capturing the personality of the actor is to light the actor so you don’t have harsh glaring highlight and overly dark shadows. A key was of doing this is to use diffused light. Two great lighting tools for this are large light boxes or lighting panels. I decide to go with using a panel because I like the flexible of using panels and I didn’t want to have to be moving three lights around on the set.
After talking with Sena a young black actress from Berlin the plan was to shot a low key image using the natural background of the studio. The main problem of shooting a black actress on a dark background was separating her off the background. To solve this problem I needed to be able to light the background but still keep the low key lighting look.
To get the effect I was looking for I setup a Panel to the left of the model and lit it with an INTEGRA 500 plus Hensel flash head. The flash was placed so that some of the light would spill pass the panel and light part of the background. To get some separation on the right-hand side of the model I place another Hensel with a grid spot to the right of the model. The last key to this puzzle was I needed to block some of the light coming off the panel that was spilling into the lens of the camera. I did this by placing a Gobo between the panel and the camera. I hope this Friday’s tip helps on your next photo shoot. For more cool tips on lighting visit my friend Luis Alvarez’s site vela-photo.
About three months ago while doing research on time-lapse photography I ran across the Timescrapes.org website. Some of the work being done there by Tom Lowe, Jay Burlage aka Milapse and others is amazing. What blew me away is that these are not your typical time-lapse images shot with a camera on a stationary tripod. These guys have worked out some great techniques for putting the camera in motion.
After doing some more research I found out this technique was pioneered by cinematographer Ron Fricke for has film Baraka. In a nutshell what Fricke and his team developed was a motion control dolly system that enable them to pan or tilt the camera while shooting time-lapse footage. The question then was how were the DIY on Timescrapes pulling off building motion control systems without paying thousands of dollars.
After a little more digging around a found there is a whole Open-Source photographic motion control community whose home is OpenMoCo.org . The site is run by Chris A. Church aka. Shutterdrone. Chris is the brains behind the software that’s running some the of the coolest motion control rigs for the DIY crowd.
1. So tell me who is Chris A. Church?
As to who I am, well, I’m the kind of guy to say something very humbling about myself, and then follow it up with a statement how annoying it is that people always respond to these sorts of questions with disingenuous inflections of humility. Most people describe me as a workaholic, but I think I just have a knack for finding fun hobbies and neat projects to work on, and that’s what I spend my time doing. Generally speaking, I like to split my time between office/shop, and the outdoors – everything else is done en route to one of those two.
2. How long have you been into photography and when did you develop an interest in time-lapse?
I first got into photography in the mid-nineties, but the bug never really bit me until I got into medium format film and pinhole cameras about ten years ago. I’ve always enjoyed the technical nature of photography, whether it was building a box camera, or tweaking chemical temperatures to see what effect it had grain sizes in particular films. At some point, I realized that I was just burning so much money on film to play with it, if I ever wanted to actually get any pictures printed; I’d better switch to digital. It was just over three years ago I decided that time-lapse would be an interesting diversion, and I met up with Tom, Jay, and the other guys from the timescapes forum right as they were all also just starting to get into DIY moco rigs. As you can imagine, that brought out the technician in me again, and I dove in head-first, forgetting some times that the goal was actually to make time-lapse films…
3. What are the goals of the OpenMoco Project?
The main goal of the OpenMoco project is pretty simple: to create and share motion control solutions based on open hardware and open software. Of course, we’re interested in supporting and helping any open-source photography project and helping people solve novel problems without resorting to expensive, closed hardware or software. Our focus remains largely on the Arduino platform at the moment, but a goal is also to get everything ported over to the ARM platforms out there to craft even more expansive capabilities while still being able to run on hand-held form factors.
4. What part of the project has been the most challenging to develop software or hardware and why?
One of the difficult aspects of working with hardware hackers is that we all get here by a sense of self-design and a need to express our creativity fully. In light of this, one of the most difficult challenges is building a system flexible enough, and complicated enough to encourage the brave to not re-invent a new wheel each time, without also hindering those who are just looking to get their problem solved quickly and easily. Writing software or designing hardware in and of its self isn’t particularly challenging (I’ve spent fifteen years in professional software design and development), but setting strict requirements and boundaries create the hurdles that make it a worthwhile achievement. “It has to be built for less than x dollars,” or “it has to run using less than 1k of memory…” That’s where the real interesting and fun challenges lie.
5. The Openmoco project has two solutions for controlling motors, OpenMoco Slim which is a text-based interface to the your Arduino base timelaspse engine which runs stepper motors. The other being the MX2 dolly engine which is a combination of Arduino microntroller with an attached Arduino motor shield that runs DC motors. What are the advantages of one over the other?
The core TimeLapse Engine, which forms the basis of the reference design, is to enable any sort of motion control, for up to four axes, using stepper motors. This is the Swiss Army knife of moco tools – it can do just about everything, but if you just got one thrown in your hand, it’s going to take some time to figure out where that right tool is for the job. In its current form, it’s really designed to entice the software developers and the seasoned makers to focus just on what they have to to come up with the next great motion control tool. It has accuracy, scripting capabilities, keyframing, the ability to react to the environment and its own activities. Slim is just a scripting interface into it, meant to demonstrate what the API it provides can do, to experiment with capabilities, and to support debugging of software development around it. Until we finish the GUI for the TimeLapse engine, its complexity keeps it a bit out of reach of the novice.
The MX2 DollyEngine was designed to be an absolute lowest-cost solution with minimal entry requirements. Whereas the TimeLapse Engine requires four additional motor drivers, a whole lot of soldering, a separate device for user interaction, the MX2 packages it all into a single board (plus arduino). The choice for DC motors here is just to get the job done easily, and at a low-cost. For about 80% of what people want to do in time-lapse, DC motors are perfectly fine for the task, and the theory behind their operation (not to mention the wiring) is simple for a newcomer to get quickly. Of course, the MX2 has several broken-out I/O ports, so one could easily use it to drive external stepper drivers, making it a great learner platform for the first time experimenter.
6. On October 1st you started selling a version of your dolly. Do you anticipate any conflicts with selling this product and the open-source philosophy of the project? Bottom-line will you still be out there helping others to develop Openmoco systems?
Absolutely, the Dynamic Perception project was not to distract from the OpenMoCo project, but instead to enhance it. I kept running into two problems: the first was that there were a lot of guys with a nice garage workshop who could put all of the mechanical stuff together, but no electronics experience who kept asking if they could buy this circuit or that from me, so that they’d have a stable platform to start their learning experience on. The second was that, like in any project, you can pick money or time, and this is an expensive hobby! There are a lot of things we wanted to achieve, but funds were always limited – we could sell systems and put that money back into R&D to create the next generation of open systems to share with everyone. Our hope is that the success of DP can be turned into an accelerator for all things in the OpenMoCo project. The continued success of DP is intricately tied to OpenMoCo: I am a firm believer in open-source software and open hardware, and truly believe that when one eliminates price and the bottom 20% of the features (those that 80% of the shooters rarely use), there isn’t much left to differentiate players in the same field. Open-ness and helping the community grow – even if it means that others can capitalize on our work – is a key tenet of the business. We’re even in talks with a few people who are building competitive systems on the OM reference design, and helping to enable them rather than hinder them. We hope to be seen as a knowledge base more so than just another company selling moco gear.
7. After reading so much about stepper motors on the site I was a little surprise to find you went with a DC motor on the Dynamic Perception Time-lapse Dolly Stage Zero, are you planning on coming out with a stepper base version of the dolly?
Absolutely, we’re working right now on a four-axis stepper driver board that will be both low-cost and powerful, and a GUI that can be run on numerous hand-held platforms. The Stage Zero is aptly named, as it is a building block – we will be providing lots of upgrades for it, stepper upgrade, 2nd and 3rd axes, and some fairly neat configurations that I don’t think anyone’s seen before. These upgrades will open up some shooting techniques that have only been imagined at this point, and put them within reach of the hobbyist. Obviously, the whole repeatable move aspect is going to be there, but we think the envelope needs to be pushed even further.
8. Okay thanks Chris, how that you have the Dynamic Perception Time-lapse Dolly Stage Zero up and running what are your future plans?
At the moment were starting to work together with the Apertus(open-source cinema) project to merge both the open motion control and the open video camera together into one integrated system.
I would like to thank Chris for taking the time to answers the questions here and putting in so much time in development of the OpenMoCo software.
This weekend I had a great shoot with two young models. The shoot was conducted in a local Café and last one hour. During this time the place was full with paying customers. When I setup the shoot the only thing the owner said was no way must paying customers be disturbed. So I had to ask myself how the hell I’m I going to keep that from happening. I mean how do you not disturb people when you’re setting up a ton of lighting gear, stand, and reflectors. I know what you’re saying why not uses speed lights; I guess I’m just too old school for that. With this Lighting Tip and a slight change of camera position I’ll show you how to get two looks without using much space or having to move your lights around. The looks I’ll be going for is one moody the other a bit more light and airy. The lighting gear used was two Hensel 500ws heads, large softbox, and sliver reflector. First let’s take a look at the layout of the space that I had to work within.
The room was tight but I had arranged to uses the area in yellow. If you’re standing at the bar facing the models, to the right are the windows and door. To the left is the seating area any areas outside of the yellow were off limts. In front of the models is the bar area and on this night it was staffed fully. We started the shoot at 17:00 and by this time it was dark outside. No bright sunlight coming into the windows to help light the subjects. The lack of sunlight I would use to my advantage for the first shot which would be the moody one.
To shoot the first image I’ll place a large soft box to the right of the model and slightly behind them and angle it towards the white wall. Fill light will be provided by the white wall behind the models. To keep a darker tone about the image I’ll drop the camera to a lower position to get the dark chair into the foreground. I’ll also move a bit to the models left so that I get some of the darken window into the frame.

For the lighter image I’ll move the camera a bit more to the models right so that I get more of the white wall into the frame, and raises the camera so I have no chairs in the foreground. Next I place a sliver reflector about 40cm in front of the female model. I’ll turn on the second light and direct it the reflector.

As you can see sometimes to get a good shot all you need to do is think about the angles. Full lighting diagram is below.