用保存视频的例程,在sd卡里的视频怎么是0字节大小?
-
回复: 用保存视频的例程,在sd卡里的视频怎么是0字节大小?
代码如下:# 保存视频例程 # # 注意:您将需要SD卡来运行此演示。 # # 您可以使用OpenMV Cam来录制mjpeg文件。 您可以为记录器对象提供JPEG帧 # 或RGB565 /灰度帧。 一旦你完成了一个Mjpeg文件的录制,你可以使用VLC # 来播放它。 如果你在Ubuntu上,那么内置的视频播放器也可以工作。 import sensor, image, time, mjpeg, pyb RED_LED_PIN = 1 BLUE_LED_PIN = 3 sensor.reset() # Initialize the camera sensor. sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE sensor.set_framesize(sensor.QVGA) # or sensor.QQVGA (or others) sensor.skip_frames(10) # Let new settings take affect. clock = time.clock() # Tracks FPS. pyb.LED(RED_LED_PIN).on() sensor.skip_frames(30) # Give the user time to get ready. pyb.LED(RED_LED_PIN).off() pyb.LED(BLUE_LED_PIN).on() m = mjpeg.Mjpeg("example.mjpeg") #mjpeg.Mjpeg(filename, width=Auto, height=Auto)创建一个mjpeg对象, #filename为保存mjpeg动图的文件路径 print("You're on camera!") for i in range(200): clock.tick() m.add_frame(sensor.snapshot()) #mjpeg.add_frame(image, quality=50),向mjpeg视频中中添加图片, #quality为视频压缩质量。 print(clock.fps()) m.close(clock.fps()) pyb.LED(BLUE_LED_PIN).off() print("Done! Reset the camera to see the saved recording.")