Glimesh / janus-ftl-plugin

A plugin for the Janus WebRTC gateway to enable relaying of audio/video streams utilizing Mixer's FTL (Faster-Than-Light) protocol.
https://hayden.fyi/posts/2020-08-03-Faster-Than-Light-protocol-engineering-notes.html
GNU Affero General Public License v3.0
46 stars 11 forks source link

⬆️ Update base image in Dockerfile #40

Closed danstiner closed 3 years ago

danstiner commented 3 years ago

Always nice to upgrade to the latest Ubuntu LTS, and at least for me this makes the H264 decoder work in the Docker image.

Previously I would continuously see the following printed:

[ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [../FtlStream.cpp:startStreamMetadataReportingThread:438] FTL: Failed to generate JPEG preview for stream 1, error: Could not find H264 codec![ERR] [ice.c:janus_ice_outgoing_stats_handle:4047] [7941889442352283] Got 85 SRTP/SRTCP errors in the last few seconds (last error: srtp_err_status_replay_old)

I also went ahead and added a newline to he log per convention to make this error print nicer.

haydenmc commented 3 years ago

Thanks brah!