Questions tagged [aws-mediastore]

AWS Elemental MediaStore is a video origination and storage service that offers the high performance and immediate consistency required for live origination. MediaStore can manage video assets as objects in containers to build dependable, cloud-based media workflows.

Documentation: What is AWS Elemental MediaStore? - AWS Elemental MediaStore

15 questions
443
votes
32 answers

Get filename and path from URI from mediastore

I have an onActivityResult returning from an mediastore image selection which I can get a URI for an image using the following: Uri selectedImage = data.getData(); Converting this to a string gives this: content://media/external/images/media/47 Or…
stealthcopter
  • 13,964
  • 13
  • 65
  • 83
7
votes
2 answers

POST file to AWS Mediastore with Python 3 without SDK, without CLI

I would like to POST a mp4 file to AWS MediaStore using Python and the Signature v4. I am trying to use the PutObject action from MediaStore. For this job, I cannot use the SDK or the CLI. I can make GET requests to MediaStore with Python without…
3
votes
3 answers

AWS S3 vs Elemental MediaStore

This is more of a philosophical question: For a simple video application, which AWS services is the the best to choose, S3 or Elemental MediaStore? and And at which point will one be better to an other. The question is mostly in regards to…
Engam
  • 1,051
  • 8
  • 17
1
vote
1 answer

How to achieve low latency on MediaLive & MediaStore

I am using MediaLive & MediaStore to stream Live content facing a delay of 18sec, Need Help. Using the following configurations MediaLive -Input details Input type -> RTMP (push) Input destinations Channel class-> STANDARD Network mode ->…
1
vote
0 answers

No manifest created in MediaPackage, working from the AWS console

Just getting started on AWS, beginning by using the AWS web interface to begin learning. Doing the training module creating a live feed using MediaLive and MediaPackage. In MediaPackage I've created a channel and then an endpoint (manifest name…
0
votes
1 answer

AWS mediastore java sdk 2 - enable public access

I want to enable public access to objects in my mediastore container, something like in s3 ... s3Client.createBucket(CreateBucketRequest .builder() .bucket(bucketName).acl(BucketCannedACL.PUBLIC_READ).acl(BucketCannedACL.PUBLIC_READ_WRITE) ...
0
votes
2 answers

Best way to store video for a Flutter Application

I'm working on a Flutter App and want to include some Tutorial Videos, which all Users have unlimited access to, so they can rewatch it any time. The Videos will be about 10-20 files with 1-5 minutes length. I guess these amount of data will be too…
Mixdy
  • 13
  • 5
0
votes
1 answer

MediaLive Stream Bad Performance

yesterday i tried to setup an mp4 movie as a live-stream following these instructions: https://aws.amazon.com/blogs/media/metfc-live-stream-pre-recorded-video-using-aws-elemental-medialive/ The input was a 4.4 GB mp4 file and when testing,…
0
votes
1 answer

Cannot play mp4 input in AWS MediaLive

I'm using AWS Media Live for live streaming (together with AWS Media Store). My streaming flow works well but for some reason I cannot broadcast mp4 file as a filler. All seems to be ok, I cannot find also anything bad in MediaLive logs but all I…
Murakami
  • 3,474
  • 7
  • 35
  • 89
0
votes
1 answer

Using AWS Elemental MediaStore as a backend for MediaPackage

I think what I want to do is utilize MediaStore as a backend to MediaPackage, but it's possible mediaPackage has everything I need I just haven't been able to find any answers. What I'm looking for is a way to record live video, and have it…
0
votes
1 answer

Get AWS MediaLive video duration after live stream ends

I'm using AWS MediaLive & MediaStore for live streaming and I'm looking for a way to get the duration of the final video, after the live stream ends. I'm using HLS Output group type and I'm archiving it to S3. One way I was able to do this, is to…
0
votes
1 answer

AWS Elemental Media Store credentials unavailable

So, I'm creating a nodejs application that uses AWS Media Live and AWS Media Store to live stream audio and video. I created the media live channel, the input and the media store container correctly. The role that I used for the channel has the…
0
votes
1 answer

Live Stream from AWS MediaLive service not viewable from VLC

I am trying to build a custom live streaming service as documented here: https://aws.amazon.com/solutions/implementations/live-streaming-on-aws/ I used the pre-provided cloudformation template for "Live Streaming on AWS with MediaStore" which…
0
votes
1 answer

Advice: Setting up a streaming service that allows users to create rtmp push enpoint from a device

At present I am streaming to an EC2-instance either video, audio, or both. I want to do this in the most cost efficient and scalable way possible. The way the service works is that any device is able to publish to the nginx ec2 instance. So from…
0
votes
1 answer

Move objects from AWS S3 to MediaStore

As a legacy from the previous version of our system, I have around 1 TB of old video files on AWS S3 bucket. Now we decided to migrate to AWS Media Services and all those files should be moved to MediaStore for the access unification. Q: Is there…