Merge pull request #1632 from jlucfarias/add-symbols-forecast

Add symbols for Forecast
This commit is contained in:
CuriousTommy 2025-11-28 16:32:03 -08:00 committed by GitHub
commit 3a4da4b789
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;