Comment to 'Video Portal'
Comment to Video Portal
  • Hi Jerome I think I figured out why the stream won't play the .m3u8 live stream, it is not an audio or video file I found this and want to see if you think it will work.

    How do I convert M3U8 to MP4 using ffmpeg?
    tzmartin/m3u8-to-mp4.md
    1. Copy m3u8 link.
    2. Run command. echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4.

    M3U (or M3U8) is a plain text file format originally created to organize collections of MP3 files. The format is extended for HLS, where it's used to define media streams. ... Media playlist: containing URLs of the files needed for streaming (i.e. chunks of the original video to be played).

    This is the AWS docs

    https://docs.aws.amazon.com/ivs/latest/userguide/player-videojs.html