NSURL+TransferFileFormat.h 331 B

12345678910111213141516171819202122
  1. //
  2. // NSURL+TransferFileFormat.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/4/27.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSURL (TransferFileFormat)
  11. /// 音频文件格式转换
  12. /// caf转mp3
  13. - (NSURL *)transformCAFToMP3;
  14. @end
  15. NS_ASSUME_NONNULL_END