AWS MediaStore .m3u8 Playback
I am able to watch the stream with the .m3u8, but once the stream is turned off, the .m3u8 will not playback anything. I thought it was maybe the Container and CORS, but I am starting to run out of ideas for what I should put instead. The files are SEGMENTED.
**Here is the Container Policy:**
{
"Version" : "2012-10-17",
"Statement" : \[ {
"Sid" : "MediaStorePublicReadOverHttpOrHttps",
"Effect" : "Allow",
"Principal" : "*",
"Action" : \[ "mediastore:GetObject", "mediastore:DescribeObject" ],
"Resource" : "arn:aws:mediastore:us-east-1:724933024435:container/FargoNorth/*",
"Condition" : {
"Bool" : {
"aws:SecureTransport" : "true"
}
}
} ]
}
**Here is the CORS:**
\[
{
"AllowedHeaders": \[
"*"
],
"AllowedMethods": \[
"GET",
"HEAD"
],
"AllowedOrigins": \[
"*"
],
"ExposeHeaders": \[
"*"
],
"MaxAgeSeconds": 3000
}
]