怎么调用html5的摄像头,录音,视频?
调用image 即打开相册或调用系统相机:
<input type="file" accept="image/*" capture="camera">
调用video 即打开视频或调用系统视频:
<input type="file" accept="video/*" capture="camcorder">
调用audio 即打开音频或调用系统音频:
<input type="file" accept="audio/*" capture="microphone">