Tumgik
#cinecam
lensman-arms-race · 1 year
Text
Skibidi Toilet headcanons
When the camera-heads appear to be eating food, they're taking high-res photos of it; that's their way of enjoying it.
The TV-heads see in infra-red, because their heads are CRTs, which usually used IR for the remote controls.
The speaker-heads can't see at all, and use echolocation.
What looks like the hardware-heads' blood/oil is actually barbecue sauce. There's no basis for this; I just think it would be funny as hell.
The cinecam-heads (the large camera-heads) don't broadcast their recordings live; their primary purpose is to gather high-quality archival footage for analysis.
Part 2 / Add yours on if you want
28 notes · View notes
Photo
Tumblr media
Canon C200 cinema camera.Test at SET Expo in Sao Paulo.
3 notes · View notes
lawass-oke · 2 years
Photo
Tumblr media
Sankyo 8 Y Kamera sinema Memakai film 8mm Kondisi bodi utuh Tutup lensa masih ada semua Fungsi belum dicoba Cocok utk dipakai pajangan atau dekorasi . Minat 085728394499 WA Lokasi Solo . #ready_lawassoke #sankyo #cinecam #cinecamera #kameravideo #kameravintage #8mmfilm #8mm #8mmvintagecamera #kameralawas #kameraantik #kameraanalog #kameramurah #barangvintage #barangjadul https://www.instagram.com/p/CdM9BKOvQEw/?igshid=NGJjMDIxMWI=
0 notes
kevlo75 · 2 years
Photo
Tumblr media
#cinecamer #youngcineastesaward #newgenerationishere 🎥 (à Ministere De La Communication Cameroun) https://www.instagram.com/p/ChYFVZfLQla/?igshid=NGJjMDIxMWI=
0 notes
midgethetree · 3 years
Note
Hi, Midge! Do you think it's possible to get the game to keep a Sim who's delivering twins to stay in their maternity clothes and have their 3rd trimester bump go down to a 2nd trimester bump after they deliver the first twin? And then have the bump disappear and switch them into everyday clothes as the second twin is born? I was looking at the "Home Birth - Anims" and "Event - Change Clothes" BHAVs in Group 0x7F1D0F49 but I'm not sure if this is what I would need to edit. Thank you!
You'd need to edit the BHAV Interaction - Home Birth too because it calls Pregnancy State - Update, which will remove the maternity wear and bump. Home Birth - Cinecam is also important if you ever have cinematics turned on or plan to share this mod. You don't need to edit Event - Change Clothes if you instead change Home Birth - Cinecam and Home Birth - Anims so if the baby is the first of a set of twins that event BHAV isn't used in its anims.
Back to the Pregnancy State updating. If you don't use cinematics or plan to share the mod, you'll need Home Birth - Anims to not call Pregnancy State - Update Flags & Walk if it's the first baby in a set of twins. In Interaction - Home Birth do the same with its call to Pregnancy State - Update, and then add a call to Pregnancy State - Update with the same arguments after Home Birth - Anims (Stack Object's attribute 0x0006). That's a 6, i.e. the second twin, not 5.
To check if it's the first in a set of twins, in Home Birth - Anims or Home Birth - Cinecam first check if Stack Object's attribute 0x0005 == Param 0x0000, and if true check if Stack Object's attribute 0x0006 != Literal 0x0000. If both are true, avoid anims or pregnancy state updating.
In Interaction - Home Birth it's simpler, before the existing Pregnancy State - Update line add a check if Stack Object's attribute 0x0006 != Literal 0x0000.
2 notes · View notes
djchubbychub · 6 years
Photo
Tumblr media
Today 4:30pm est/17:30 (Brasil) MTVBrasil will air the Video release and the Documentary of the video @mtvbrasil release day exclusive on MtvHits on May 15th alouuuuu meu brasil 🇧🇷 fiquem ligados !!!! @djchubbychub Ft @dynastytheking #comethisway prod @drow_mattos @greenandgoldmedia @dee4real @astylealive @don_p16 lets get it Team director @rodrigogiannetto and #cinecam
0 notes
furkanbaser88 · 7 years
Photo
Tumblr media
Keep looking up! dream up future! #shooting #documentary #cinemagraph #filmmakerboost #filmmakerlife #zamansızeşyalar #antika #koleksyon #gramafonevi #docudrama #sethalleri #setarkası #sonyprimes #masterprimes #cinecam #zoom #rodemic #freeflysystems #freefly #a7s2 #atomosinerno #documentaries #shootermag #cinematography #cinemagraph #filmmakers
0 notes
holleringwolf · 6 years
Text
Unity tutorial: Lock On system using Cinemachine Part II - Camera Set-up
Tumblr media
Part I
At this point we should have everything ready to collect and get the target you will be locking onto, aswell as the proper handling of the rotation for your character; now we need to set up our Cinemachine cameras, for this you’ll requiere two cameras, your main camera and your targeting camera, this depends mostly on what kind of game you’re making, but for this tutorial I’ll be using a 3rd person game approach (like Dark Souls). 
So, for the main camera all you have to change is under “Transitions” you should set the Blend Hint to “Screen Space Aim When Targets Differ” and thick the “Inherit Position” option, that should do for your main camera:
Main camera
Tumblr media
Now, for our targeting camera, we create a cinemachine Virtual camera; we leave the Look At option empty (since we will be assigning it via script), then we do the same as with our main camera “Transitions” and set the Blend Hint to “Screen Space Aim When Targets Differ” and “Inherit Position”; for the Body we select “Transposer”, the Binding Mode to “Lock To Target With World Up”, and in Aim select “Hard Look At”, everything else can be adjusted to your liking:
Targeting camera
Tumblr media
Now we need to create an script to handle the enabling/disabling of the cameras, we name the script something like CameraManager (this script should go inside your player gameobject); inside the script we set the cinemachine name space with “using Cinemachine”; and also we declare our variables:
   public GameObject[] vCamera;    CinemachineVirtualCamera cineCam;
Once you assign your cameras in the inspector what we need to do next is get our targeting camera so we can assign a Look At target to it, we will do it in the Start() function of our script:
   void Start()    {        cineCam = vCamera[1].GetComponent<CinemachineVirtualCamera>();    }
Tumblr media
Now, all we have to do is in the Update() function we just need to enable/disable our cameras and also assign the Look At of our targeting camera to the boneToLookAt:
if ( LockOnTargetHandler.lockedOnTarget)        {            vCamera[0].SetActive(false);            cineCam.LookAt = LockOnTargetHandler.boneToLookAt;            vCamera[1].SetActive(true);        }        else        {            vCamera[0].SetActive(true);            vCamera[1].SetActive(false);        }
And that’s pretty much it, now you have a locking system :).
1 note · View note
creativepiefilms · 5 years
Link
Happy New Year! In this blog Nic and Dean from Birmingham based video production company Creative Pie Films reflect back on their second year in business! 
One of the first things of note is how this year has differed greatly from previous years. Having begun in earnest with one major client and focussing heavily on developing that relationship as well as our offering as a video content provider, 2017 has been the year of expanding and developing new relationships. 
As a Birmingham based video production company we set ourselves annual targets, and as a relatively new business those targets initially tend to be client orientated. At Creative Pie Films we love people, we’re genuinely interested in them and we have a passion for the work we do.
  Our aim for 2017 was to link with creative agencies and broaden the subjects of our films, push our creativity and work with new people.
In order to achieve this a huge amount of time was spent networking through platforms such as LinkedIn, starting conversations, arranging coffee dates, waxing lyrical with like minded people who all have common aspirations and goals.
Through extensive networking we have struck up relationships with a number of creative agencies and we even experienced shooting behind bars for a recruitment campaign for Sedexo. 
Our drone filming service literally took off this year, shooting footage for Exensor, Cala Homes, ST Engineering and the RSPB.
We shot a number of large scale events at the NEC in Birmingham for FaceUp TV including Advanced Engineering 2017, IPEX and the Sensors Show. We also filmed at the Priory’s flagship wellbeing centre on Harley Street in London, producing 2 high end promotional films.
.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
  Priory | Harley Street | 2 from Creative Pie Films on Vimeo.
This year also saw us expand our kit by investing in another cinecam and cinelenses which now gives us the ability to capture the same high quality footage on two camera’s instead of matching the grade from our old B cam to our A cam; thanks Sony!
2017 has been a whirlwind year that has taught us a lot about the world of business. It’s had lots of highs and a few lows, LOTS of sleepless nights (due to new family additions, both human and canine) but what remains is our passion, drive and enthusiasm for what we do. We’re living the dream one day at a time and as long as we stay true to ourselves and to our clients, we see no reason why it should end.
The post Lets ‘av it 2018! appeared first on Creative Pie.
0 notes
scutteh · 7 years
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Weekend Studies - 
Unreal Engine 4 + Substance Designer 6
I’ve been playing around more with Substance Designer and wanted to try building some heightmaps in it for terrain in UE4 (just as I think it’s a good platform to easily and rapidly present my progress in Substance Designer). My first initial test (the middle 2 images) were just forming a simple height map with a gradient I could use for masking. It worked well for a first test but a little too noisy (especially as I’m adding materials to this, I don’t need jaggy or super sharp locations).
The second test was following in the footsteps of Vincent Gault who did an excellent video series on terrain creation/generation in SD5. I’ve added or swapped a few bits (a few more slope blurs, nothing fancy) and will continue to experiment with this to produce a fast and fun terrain generation. (note: I add roughness and a base colour in SD6 just to make it easier for me to see).
Today I also started working on a texture or 2 in preparation. The 2 bottom images are the same texture just with a water level added (and some other minor tweaks). Force of habit but if things don’t go well with the texture I end up throwing water level on there to make yet another mud texture haha.
The plan is to create a texture series, get them basically laid out in UE4 with the help of some placement masks (similar to what you’d see in world engine), then some hand placed textures using instances of the same Substances I’ll import.
On a final note I tweaked the cinecam in UE4 to look a little more like my B+W photography! Also added a Track for another camera. Really exciting as I want to try and do a few cool sweeping landscape shots!
Not bad for my first 2-3 days in UE4 anyway. Looking forward to more!
0 notes
kevlo75 · 2 years
Photo
Tumblr media
#off #cinecamer 🇨🇲 #africa #movies #collywoodcinema #actorswanted 🎥 (à Ministere De La Communication Cameroun) https://www.instagram.com/p/ChYEtNDrkjg/?igshid=NGJjMDIxMWI=
0 notes
midgethetree · 4 years
Note
Hi. ik requests are closed i am just asking if it possible. I play with male pregnancies but i don't like the animation used in the cut scene. It fits if the baby was alien but not human. Now i know you have a mod where the female animation for accepting engagement get replaced with the male. So assuming it's the same concept it should work(maybe,maybe not). Sorry for bothering, thanks for all the mods
The male cinematic actually uses two anims to the female’s one, so this should probably be a BHAV edit instead of an animation swap. The BHAV “Home Birth - Cinecam” in the pregnancy controller (group 0x7F1D0F49, unless you use CJH’s alternate pregnancy controller, in which case just find the BHAV of the same name in that mod) should be edited so “My Gender(0=male/1=female) == Literal 0x0000″’s true target is replaced with its false target.
8 notes · View notes
djchubbychub · 6 years
Photo
Tumblr media
Still at country to country Regrann from @kikolatino - Estreia terça na @mtvbrasil release day exclusive on MtvHits at 17:30 May 15th alouuuuu meu brasil 🇧🇷 fiquem ligados !!!! @djchubbychub Ft @dynastytheking #comethisway prod @drow_mattos @greenandgoldmedia @dee4real @astylealive @don_p16 lets get it Team director @rodrigogiannetto and #cinecam (at Rio de Janeiro)
0 notes
natguareschi · 5 years
Photo
Tumblr media
A felicidade mora em um set lindo, com uma equipe foda, com muita vibe boa, muito amor, profissionalismo, respeito e entrega total! Que dia! 💛 (em Cinecam Locações) https://www.instagram.com/p/BxGHMfBBWOt/?utm_source=ig_tumblr_share&igshid=1hstf1otq972v
0 notes
creativepiefilms · 5 years
Link
Nic of Birmingham based video marketing provider Creative Pie Films, takes us through a 2 day project in his latest blog post.
Might seem like a silly question but i do get asked it all the time, “what do you do?!”
My linkedin profile says video content producer, however, connections seem to get a tad confused about what it is we do here at Creative Pie Films.
So this blog post is going to take you through a typical two day shoot that we have just completed for the Priory Group, to help give you an idea of the scope of our service.
Day one…
‘Up and at em’ at 4am to get in the car to travel to Devon with all our kit. As we offer a full production service we bring the following to every shoot. Sony FS7 Cinecam, Panasonic GH4, Ronin M gimble, Wally Dolly, Rode Mics, Lights and not forgetting the pie drone.
Yes, when we approach a project this is the minimum amount of kit we bring, we love our toys!
Once we get on site I will go off to check the area is suitable for aerial filming with regards to safety, whilst Dean heads off to scout for suitable filming locations. He looks for great natural lighting and above all else, a quiet room for interviews.
After this we shoot cut-aways which will be  relevant to the questions that are going to be asked during the interviews. As this particular site is a school, we try and capture learners in the classroom, participating in physical activity and with lots of smiles!
After this we dedicate the afternoon to interviews, as you never how long they are going to take to film. Some people aren’t fazed by the camera whereas others freeze in front of the lens. We always try and make our interviewees feel as relaxed as possible, so we throw a few jokes around and generally take the mick out of ourselves. It’s not easy having a camera staring at you!
After the interviews it’s time to launch the pie drone. All pre-flight checks and risk assessments have already been carried out so it’s just a case of making sure that the area is clear. On this site  we didn’t fly until all the children had left the school. Safety first when flying a drone people!
Creative Pie Films Aerial Show reel. from Creative Pie Films on Vimeo.
Once we’ve shot the aerial footage we head off to our hotel for the evening where we review the footage and see if there are any issues with what we’ve shot or if we have missed anything.
10pm… BED
Day two…
Wake up and get coffee!
Then off to the next locations. As this is a residential school for children with Autism and behaviours that challenge the school has many different residential sites around the area.
We get externals of each location using both our cameras and drone and then pop inside to gather more cut aways of bedrooms, living rooms etc.
We then take a deep breath and do a quick footage review and then it’s time to head home.
Once home, the footage is thrown into our edit machines to transcode overnight ready for editing in the morning.
Oh, that’s what you do!
Yip, and this is what we are known for. Creative Pie Films are a Birmingham based video marketing provider who offer a full professional video production service for all your video content requirements.
This kind of project has to have a quick turnaround and our clients appreciate that we can get in and get the job done.
This has been a snapshot of a small project that has a fast turn around so imagine what a blog entry would look like for one of our bigger projects!
If you are looking for a Birmingham based video marketing provider then give us a shout!
  The post What is it you actually do again? appeared first on Creative Pie.
0 notes