We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following the documentation on the UserView.md, the react code for Location 13 is not working.
It seems like the src value in the sources array is incorrect.
sources: [{ src: `https://${awsvideo.awsOutputVideo}/output/${item.video.id}.m3u8`, type: 'application/x-mpegURL', }],
After the uploaded video asset is encoded by Media Convert, the files are stored within the public folder of the output s3 bucket.
Changing the src URL to the following, resolved the issue
sources: [{ src: `https://${awsvideo.awsOutputVideo}/public/${item.video.id}/${item.video.id}.m3u8`, type: 'application/x-mpegURL', }],
The text was updated successfully, but these errors were encountered:
Thanks saved me an hour or so of debugging!
Sorry, something went wrong.
No branches or pull requests
Following the documentation on the UserView.md, the react code for Location 13 is not working.
It seems like the src value in the sources array is incorrect.
After the uploaded video asset is encoded by Media Convert, the files are stored within the public folder of the output s3 bucket.
Changing the src URL to the following, resolved the issue
The text was updated successfully, but these errors were encountered: