Skip to main content

Take screenshot on Windows 10 with Mac keyboard

Real quick: `⌘+SHIFT+S` That key combo (Command Key + SHIFT + S) will open Snip & Sketch, which is the replacement for the classic Snipping Tool and includes the keyboard shortcut above to make it easy to access. Once you press the key combo, the app opens with a selector dialog to let you outline the portion of the screen you want to copy to the clipboard. You can select the entire screen if you need that. And once done, you can press CTRL-V to paste the copied image wherever you need it (Paint, Gimp, etc). Lots of disparate advice exists on Q&A and other forums with solutions that vary heavily. But Snip & Sketch will work with any Windows 10 installation and the shortcut key makes it the optimal solution.

Comments

Popular posts from this blog

Audio-reactive color hue animation with ZGameEditor in FLStudio

Animating color hues based on an audio spectrum isn't an easy task for most video editing software. It's dead simple with ZGameEditor in FLStudio, once you understand how a few of its modules work. It's even easier with a template, and ZGameEditor makes templating super easy. This quick guide walks through the process and provides a simple template below. What you'll need: - FLStudio (ZGameEditor is bundled with it) The ZGameEditor modules we'll use: - Image - Color Correction - Automator Let's get started. ## Instructions ⮞ Open FLStudio and open the Mixer (Press F9 ). ⮞ In the **Master** channel, in the very last slot (slot 10), click to open the plugin drop-down and select Visual > **ZGameEditor Visualizer**. You can then close the Mixer. ⮞ Add a music file by dropping it onto the FLStudio sequencer. ⮞ Go to the **Add Content** tab and click **Add Pictures** or **Find online media**, then select an image or video to add. ⮞ Go back to the **Main** tab.

Configure OBS for use with DaVinci Resolve on Linux

DaVinci Resolve supports less codecs on Linux than on Windows. That can present a problem when using OBS (Open Broadcaster Software) which uses defaults that are incompatible. No worries, you can do the following: Go to  Settings > Output . For  Output Mode , select  Advanced . Open  Recording  tab. For  Type , select  Custom Output (FFmpeg) . For  Container Format :  mov . Set  Video Birate  to  5000 . Video Encoder , select  mpeg4 . Audio Encoder , select  pcm_s16be . Ultimately, it should like something like this: That should do it. Click OK or Apply and your recordings should work just fine in OBS.

Convert mp4 to Prores mov

Right to the point. Open a terminal or command-line and enter this: ffmpeg -i "video.mp4" -vcodec prores -profile 3 "video.mov" Just substitute "video" with the filename you need. If you don't have fffmpeg installed, get it for free. ffmpeg downloads:  https://www.ffmpeg.org/download.html Explanation For use with DaVinci Resolve, especially for use on Linux where codec supported is more restrictive, you can use ffmpeg to convert to Apple Prores. Typically this might involve converting from mp4 to mov. While those are just containers, mp4 would more commonly use the Prores codec. Hope that helps!