What happens if you accidentally open your private email while recording? When you finish recording, you’ll have a chance to edit your video before uploading.Click Edit to open the directory containing the Paircast drafts.
You can apply a blur with ffmpeg. The following command will apply a boxblur on a Paircast .mp4 from 29:30 to 29:55. Notice how the timestamps are expressed in the cli command, (60*29)+30,(60*29)+55)
.
./ffmpeg.exe -i input.mp4 -vf "boxblur=enable='between(t,(60*29)+30,(60*29)+55)" -c:a copy -preset ultrafast output.mp4
After ffmpeg has applied the filter to the video, you can click Publish to make your Paircast available online!