chore: add symbols for Forecast

This commit is contained in:
jlucfarias 2025-11-10 10:16:44 -03:00
parent f7146a4543
commit 55fae925b9
2 changed files with 18 additions and 0 deletions

View File

@ -84,3 +84,11 @@ const AVLayerVideoGravity AVLayerVideoGravityResizeAspectFill = @"AVLayerVideoGr
const AVMediaType AVMediaTypeAudio = @"soun";
const AVMediaType AVMediaTypeVideo = @"vide";
const AVMetadataKey AVMetadataCommonKeyAlbumName = @"albumName";
const AVMetadataKey AVMetadataCommonKeyArtist = @"artist";
const AVMetadataKey AVMetadataCommonKeyArtwork = @"artwork";
const AVMetadataKey AVMetadataCommonKeyDescription = @"description";
const AVMetadataKey AVMetadataCommonKeyTitle = @"title";
const AVMetadataKey AVMetadataID3MetadataKeyUserURL = @"WXXX";

View File

@ -1,5 +1,15 @@
#import <Foundation/Foundation.h>
typedef NSString *AVMetadataKey;
extern const AVMetadataKey AVMetadataCommonKeyAlbumName;
extern const AVMetadataKey AVMetadataCommonKeyArtist;
extern const AVMetadataKey AVMetadataCommonKeyArtwork;
extern const AVMetadataKey AVMetadataCommonKeyDescription;
extern const AVMetadataKey AVMetadataCommonKeyTitle;
extern const AVMetadataKey AVMetadataID3MetadataKeyUserURL;
typedef NSString *AVMediaType;
typedef NSString *AVFileType;