Can Nvidia RTX Voice be used to cleanup noisy audio in your videos prior to editing?
Learn how to make RTX Voice work with a GTX graphics card.
Curious about drop-in filters and how they fit into high-end lenses like the Nikkor Z 800mm f/6.3? When I first encountered them, I found little to no explanation about what they were or how they worked—until I got hands-on. In this article, I break down the mystery behind drop-in filters, show you how they function, and share tips on where to find replacements. Whether you’re a wildlife or astronomy photographer, this guide will help you get the most out of your gear. Click to learn more!
Unlock the secrets to capturing stunning wildlife photos at the zoo. With 11 expert tips, you’ll learn how to transform ordinary zoo snapshots into professional-level portraits. Whether you're a beginner or a seasoned photographer, these insights will help you elevate your zoo photography to new heights.
The Ulanzi Cooling Fan is a cost-effective solution for preventing camera overheating, significantly extending recording times for models like the Sony ZV-1 and Fujifilm X-H2. Learn more about its impressive features and why it's a must-have accessory for videographers.
The effectiveness of Apple AirTags in safeguarding camera gear against loss or theft is put to the test. Through real-world experimentation of their functionality, discover how these tags assist in tracking down missing equipment. Finally, the potential security implications of these tags for user privacy are examined.
Can Nvidia RTX Voice be used to cleanup noisy audio in your videos prior to editing?
Learn how to make RTX Voice work with a GTX graphics card.
Learn how to improve your Premiere Pro timeline performance by using Proxies. They’re part of Premiere Pro, free, easy to use and dramatically improve performance.
Artificial Intelligence has come a long way. Now days it can be used for all kinds of things related to Videography and Photography. From automatically removing unwanted things from pictures in Photoshop to putting your face right into a movie clip via the Deep Fake A.I., it’s uses are only going to continue to grow
One such use intrigued me after I saw it in action. A group of programmers developed an A.I. called Super-SloMo using the PyTorch framework which allows you to take normal footage and believable turn it into slow motion. https://github.com/avinashpaliwal/Super-SloMo
This is challenging because the A.I. has to predict what should fill in the missing frames. If you convert a video at 30 FPS to 240 FPS, the A.I. has to auto generate 7 extra frames between every real frame, which is no small task.
My desire to try it out was limited until I was editing some footage from my recent mountain climbing trip. I had done a motion time-lapse video that involved taking a photo every 2 seconds for 10 minutes as it panned across a valley. The shot, below, is cool enough, but it got me wondering if I could use this A.I. to smooth out the motion.
So I ran this video through the A.I. and was so amazed by the results that I had to share the process with the world so that other’s could use it. The first video below is a comparison between slowing the video down as shot and what the A.I. was able to do.
See the video below to learn how to do this yourself.
Here are the typed instructions:
Make a folder to keep all of the Slow Motion files together. Call it slomo
Make an Input and Output folder in your slomo folder.
Install a Python Distribution. I’m using Anaconda Distribution. Available for Windows, Mac and Linux - Download 3.7 64bit https://www.anaconda.com/distribution/
Download the Super-SloMo project from GitHub Repo - Click Clone or Download, Download ZIP https://github.com/avinashpaliwal/Super-SloMo
Extract Super-SlowMo Project into a folder. Rename superslomo
Train the model (if you want). Or use a pre-trained model here - https://drive.google.com/file/d/1IvobLDbRiBgZr3ryCRrWL8xDbMZ-KnpF/view
Place that model in the superslomo directory
Download FFmpeg Video Converter - Download the stable version, the correct architecture and choose the Static Linking https://ffmpeg.zeranoe.com/builds/
Unzip that in your slomo folder. Rename it to ffmpeg
Open Terminal (Mac) or Anaconda Prompt (Windows)
On a Mac, this requires using bash, not the zsh default that comes with Catalina. You can check what version you are using by typing: echo $SHELL. It will either say /bin/bash or /bin/zsh. If it says /bin/zsh you must change your shell. To switch to bash type: chsh -s /bin/bash. Then you must restart terminal. To change back to zsh after you're done with this project type: chsh -s /bin/zsh and restart terminal.
Get the correct command for your setup - Choose Stable, Pick your OS, Choose Conda, Choose whatever version of Python you downloaded, Choose None for CUDA unless you have an External NVIDIA GPU https://pytorch.org/get-started/locally/
Copy the command in the box labeled “Run this Command:” and paste it into your Python Terminal. This will download and install all the files and and environments you need
cd into the slomo/superslomo directory
Adjust the following script to match your computer setup
python video_to_slomo.py --ffmpeg /Users/user/slomo/ffmpeg/bin/ --video /Users/user/slomo/input/mountain_timelapse.mp4 --sf 4 --checkpoint /Users/user/slomo/superslomo/SuperSloMo.ckpt --fps 119.880 --output /Users/user/slomo/output/mountain120.mp4 --batch_size 1
Definitions of terms in script
sf = multiple of the frame rate
fps = target frame rate
batch _size = how fast it will run, limited by your computer’s hardware. 1 is default
Take the finished footage into a video editor and slow it down by whatever multiple your sf was to see the magic.