Hello,
I am trying to figure out how to properly setup a live stream for viewing with MPEG-DASH and HLS (WebRTC as well but that’s for later). Following various tutorials and such, I currently have all playback types enabled. The transcoder is also enabled with pretty much the “default” values (I added a 1080p) and a SMIL file that reflects this.
For input I currently use the fairly simple command
ffmpeg -re -i [video].mp4 -f flv rtmp://[IP]/WowzaTest/ABRStream
but I have tried using the Wowza GoCoder application on my android phone as well with the same results.
Using this the streaming engine receives the stream and the transcoder provides the additional streams correctly. However, the issues come with viewing the stream. Using Adobe RTMP works fine but since the goal is to use HLS and MPEG-DASH that won’t do.
While the provided HLS player is not supported I have achieved the most success trying to view HLS using VLC. Using only the URL “[IP]/WowzaTest/playlist.m3u8” simply gives the error “httplive stream error: segment 0 should have been available” and nothing else happens.
Adding the SMIL file to the UR: “http://10.20.0.20:1935/WowzaTest/smil:ABRStream.smil/playlist.m3u8” also gives this error but I am able to receive the audio. How do I go about receiving the video as well?
The second issue is with MPEG-DASH, while I have been able to receive audio with HLS, with MPEG-DASH I haven’t even gotten that far. Whether I add the SMIL to the URL or not, the player just doesn’t seem to be able to find the manifest file at all.
I have seen mention of adding a .stream file to the server but that seemed more related to the encoder so I haven’t added one of those. I don’t know how basic these issues are but any advice would be appreciated, thank you.