AWS S3 IOS中的混乱sdk?

时间:2012-04-08 18:57:59

标签: iphone amazon-s3 amazon-web-services

我有一个iPhone应用程序,我喜欢在s3中包含IOS sdk。我怀疑getobject请求是否可用于将音频文件从s3流式传输到我的应用程序。大家都说这是下载的。不适合流。这个sdk中是否有任何其他方法仅用于流式传输。所以我不想下载文件。我只需要从s3流式传输我的音频文件的url并在avaudioplayer上播放它。

s3Client = [[AmazonS3Client alloc] initWithAccessKey:ACCESS_KEY withSecretKey:SECRET_KEY];              
S3GetObjectRequest *request = [[S3GetObjectRequest alloc] initWithKey:@"YOURKEY" withBucket:@"YOURBUCKET"];
S3GetObjectResponse *response = [s3Client getObject:request];

够了吗?

1 个答案:

答案 0 :(得分:1)

我认为苹果的http直播可以为您提供帮助。请在以下链接中找到详细信息。 https://developer.apple.com/library/mac/#documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/Introduction/Introduction.html