Especially for (small) SSD installs it saves a lot of space to turn of Hibernation (default is 75% of RAM size)
In an elevated command prompt, type powercfg -h off and press Enter.
Welcome to bosti's Wiki Thursday, August 18 2022 @ 07:08 am CEST
Especially for (small) SSD installs it saves a lot of space to turn of Hibernation (default is 75% of RAM size)
In an elevated command prompt, type powercfg -h off and press Enter.
A brief description how to get a Ilustrator curve into modo.
To convert a quicktime or any other format ffmpeg reads to jpeg use this command:
ffmpeg -i input.mov -qscale:v 1 -qmin 1 -qmax 1 output_%07d.jpg
1 is maximum quality 31 is lowest. The qmin and qmax lock the quality and gives a more consistent encoding level for sequences.
Some resources if you want to change your european stock HTC One to an Google Play Edition (Stock Android)
For unknown reasons sometimes comps start to behave awkwardly.
To pick a random image from a read node create a FrameHold and right click on the frist frame label and select 'Edit Expression' then type 'floor(1+100*random())' to pick a random frame between 1 and 100.
Simple TCL Example script that will create a flicker node (like from a projector or fluerescent light source)snipplr.com/view.php
Filmlight's Baselight and Blackmagic's DaVinci Resolve have more in common then just being great tools for Color Correction, their database system PostgreSQL. To install them correctly on the same machine you need to plan ahead.
You can change the speed of your video using setpts video filter. The "old way" of creating timelapse or still frame was to first split up a video into individual frames, (for instance, as jpg's) then delete some and recombine the frames. Using the setpts filter is the new way and is faster and possibly less lossy :)