KSYMovieWriter.h 567 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // KSYMovieWriter.h
  3. // KSYStreamer
  4. //
  5. // Created by pengbin on 6/16/16.
  6. // Copyright © 2016 ksyun. All rights reserved.
  7. //
  8. #import "KSYStreamerBase.h"
  9. /** 视频文件录制类
  10. */
  11. @interface KSYMovieWriter : KSYStreamerBase
  12. /**
  13. @abstract write video stream to local files
  14. @param filePath is local file path
  15. @discussion 开始写文件前需要设定好编码参数
  16. @discussion 编码参数主要是视频编码器,音视频码率的设置
  17. */
  18. - (void) startWrite: (NSURL*) filePath;
  19. /**
  20. @abstract stop wirte file
  21. */
  22. - (void) stopWrite;
  23. @end