-
-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recording Download as .mp4 format #176
Comments
Opting for
Special Considerations for SafariWhile WebM excels in many aspects, it is not fully supported on Safari. To ensure compatibility across all platforms, especially on Apple devices, recorded videos in Safari are saved in the H.264You can prioritize recording to use H.264 as the preferred video compression standard for the following reasons:
Converting WebM to MP4If you need to convert a WebM file to MP4, you can easily do so using # Install ffmpeg
sudo apt install -y ffmpeg
# Convert WebM to MP4
ffmpeg -i input.webm output.mp4 |
This is perfect. Thank you |
Feature request
Current Recording download is in .webm format. Was wondering if recordings could be saved as .mp4. Or maybe a choice given.
Pros
This would alleviate having to convert to .mp4.
Additional context
Some users are asking for this feature because they are saying it takes longer to edit a .webm then an .mp4. It might be because the .mp4 is more familiar.
Thank you
The text was updated successfully, but these errors were encountered: