What encoding parameters is guaranteed to work with this library? From broadway.js:
The decoder expects an .mp4 file and does not support weighted prediction for P-frames and CABAC entropy encoding. To create such bitstreams use ffmpeg and x264 with the following command line options:
ffmpeg -y -i sourceFile -r 30000/1001 -b:a 2M -bt 4M -vcodec libx264 -pass 1 -coder 0 -bf 0 -flags -loop -wpredp 0 -an targetFile.mp4
However streaming from a video using these settings results in STREAM_ENDED after trying to read the first frame
What encoding parameters is guaranteed to work with this library? From broadway.js:
ffmpeg -y -i sourceFile -r 30000/1001 -b:a 2M -bt 4M -vcodec libx264 -pass 1 -coder 0 -bf 0 -flags -loop -wpredp 0 -an targetFile.mp4However streaming from a video using these settings results in
STREAM_ENDEDafter trying to read the first frame