且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将 HTML5 blob 视频导出到 MP4

更新时间:2023-01-25 18:08:41

getUserMedia API 的当前状态不能直接保存为 MP4 格式,但是可以保存为 webm 格式,然后再转换.

You cannot save directly to MP4 format with the way the current state of getUserMedia API is working, you can however save in webm format and convert it afterwards.

p>

做了几次尝试,webRTC实验项目在浏览器中实现了几个版本的录制:https://www.webrtc-experiment.com/RecordRTC/

但是,您可以使用 HTML Media Capture 直接以 MP4 格式保存.这通过扩展 <input type="file"/> 并为带有音频、视频和照片/快照选项的接受参数添加新值来工作.然而,这仅适用于移动浏览器,因为桌面浏览器只会将其解释为简单的文件上传.

You can however save directly in MP4 format using HTML Media Capture. This works by extending the <input type="file"/> and adding new values for the accept parameter with options for audio, video and photo/snapshot. This however works only for mobile browsers, as the desktop browser will only interpret it as a simple file upload.

如果您从移动设备访问他们的演示,HDFVR 有一个演示.

HDFVR has a demo of this, if you access their demo from a mobile device.

更多详情可以阅读以下文章:http://hdfvr.com/html5-video-recording

More details can be read in the following article: http://hdfvr.com/html5-video-recording