Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
408 views
in Technique[技术] by (71.8m points)

javascript - VideoJS not playing pre-signed URL in mp4 format

I'm using videojs in a vue application to play a pre-signed URL for a mp4 video file on S3. I'm using the pre-signed URL as the source of the videojs player but I get the error

The media could not be loaded, either because the server or network failed or because the format is not supported.

This is how my URL looks like:

https://bucket-name.s3.region.amazonaws.com/object.mp4?AWSAccessKeyId=xxxxxxxxxxxx&Expires=xxxxxxx&Signature=xxxxxx&x-amz-security-token=xxxxxxx

I looked at similar questions on SO and someone suggested to change the URL format to below format, but that didn't work either.

https://s3.amazonaws.com/bucket-name/object.mp4?AWSAccessKeyId=xxxxxxxxxxxx&Expires=xxxxxxx&Signature=xxxxxx&x-amz-security-token=xxxxxxx

The video player plays the video if I put either of the above hardcoded URLs as its source, but not when I do as variables. Why is it changing behaviour when a variable is used ?

<template>
  <div>

        <video-player
          :options="{
            autoplay: false,
            controls: true,
            sources: [
              {
                src: `${URL}`,
                type: 'video/mp4',
              },
            ],
          }"
        />
      </div>
    
</template>

<script>

import VideoPlayer from '@/components/VideoPlayer.vue';

var AWS = require('aws-sdk');

var bucketName = 'xxxx';
var s3 = new AWS.S3({
  apiVersion: '2006-03-01',
  params: { Bucket: bucketName },
});

export default {
  components: {
    VideoPlayer,
  },
  data() {
    return {
      URL: String,
    };
  },

  methods: {
    getURL() {
      var self = this;
      let myPromise = new Promise(function (myResolve, myReject) {
        const url = s3.getSignedUrl('getObject', {
          Key: `xxxxx.mp4`,
          Expires: 3600,
        });

        myResolve(url);
        myReject('sorry, error');
      });

      myPromise.then(
        function (value) {
          self.URL = value;
        },
        function (error) {
          console.log(error);
        }
      );
    },
  },

  mounted() {
    this.getURL();
  },
};
</script>
question from:https://stackoverflow.com/questions/66056670/videojs-not-playing-pre-signed-url-in-mp4-format

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The issue was that the URL value was not being set as the source, as mentioned by @misterben. I made the following changes to set the source in the method. Although there might be better ways of setting the source in Vue ( other than using querySelector)

<video-player
          :options="{
            autoplay: false,
            controls: true,
          }"
        />
      </div>

and,

import videojs from 'video.js';
getSignedUrl() {
  // this is because the imported videoPlayer component has class="video-js"
  var player = videojs(document.querySelector('.video-js'));

  var self = this;
  var params = {
    Bucket: 'xxxxx',
    Key: `xxxxx`,
  };
  var promise = s3.getSignedUrlPromise('getObject', params);
  promise.then(
    async function (url) {
      self.URL = url;
      await player.src({
        src: url,
        type: 'video/mp4' /*video type*/,
      });
    },
    function (err) {
      console.log(err);
    }
  );
},

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...