Description
First thank you for building this awesome tool! I've being using it to record my lectures everyday.
Whoever I miss the ability to export the recording INSTANTLY without pre-processing or transconding, I record in my Macbook Pro M1 MAX, but I do the transcoding in a more powerful linux machine for maximum compression/quality, where I use FFMPEG or HandBrakeCLI to have a more granular control over the enconding process, ex: using SVT-AV1 with custom parameters.
Currently even using the fastest export method possible with minimal quality loss (minimal compression + 4k), I still have to wait 30~60min for CAP rendering process, just to move this file to my other machine to do another transconding session with HandBrakeCLI:
HandBrakeCLI \
--input ./input.mp4 \
--output ./output-av1-crf50-preset2-30fps.mp4 \
--encoder svt_av1 \
--encoder-preset 2 \
--encoder-tune psnr,fastdecode \
--encoder-profile auto \
--encoder-level auto \
--quality 50 \
--rate 30 \
--pfr
I noticed the files are stored using a custom .cap format, would be nice to have direct access to the media files, or at least a way to export the video without transcoding.
Description
First thank you for building this awesome tool! I've being using it to record my lectures everyday.
Whoever I miss the ability to export the recording INSTANTLY without pre-processing or transconding, I record in my Macbook Pro M1 MAX, but I do the transcoding in a more powerful linux machine for maximum compression/quality, where I use FFMPEG or HandBrakeCLI to have a more granular control over the enconding process, ex: using SVT-AV1 with custom parameters.
Currently even using the fastest export method possible with minimal quality loss (minimal compression + 4k), I still have to wait 30~60min for CAP rendering process, just to move this file to my other machine to do another transconding session with HandBrakeCLI:
HandBrakeCLI \ --input ./input.mp4 \ --output ./output-av1-crf50-preset2-30fps.mp4 \ --encoder svt_av1 \ --encoder-preset 2 \ --encoder-tune psnr,fastdecode \ --encoder-profile auto \ --encoder-level auto \ --quality 50 \ --rate 30 \ --pfrI noticed the files are stored using a custom
.capformat, would be nice to have direct access to the media files, or at least a way to export the video without transcoding.