stale-psychiatrist-58431
08/13/2025, 6:06 PMtall-airline-16756
08/13/2025, 6:06 PMtall-airline-16756
08/13/2025, 6:07 PMstale-psychiatrist-58431
08/13/2025, 6:08 PMstale-psychiatrist-58431
08/13/2025, 6:08 PMstale-psychiatrist-58431
08/13/2025, 6:10 PMtall-airline-16756
08/13/2025, 6:10 PMstale-psychiatrist-58431
08/13/2025, 6:10 PMtall-airline-16756
08/13/2025, 6:11 PMstale-psychiatrist-58431
08/13/2025, 6:12 PMtall-airline-16756
08/13/2025, 6:14 PMstale-psychiatrist-58431
08/13/2025, 6:15 PMtall-airline-16756
08/13/2025, 6:16 PMstale-psychiatrist-58431
08/13/2025, 6:17 PMtall-airline-16756
08/13/2025, 6:18 PMlk room join --identity publisher --publish <path_to_1080p_video> <room_name>
This will help you see how the server handles 1080p streams. If you want, I’m here to walk you through the setup or answer any questions!stale-psychiatrist-58431
08/13/2025, 6:18 PMstale-psychiatrist-58431
08/13/2025, 6:19 PMtall-airline-16756
08/13/2025, 6:19 PMstale-psychiatrist-58431
08/13/2025, 6:20 PMtall-airline-16756
08/13/2025, 6:21 PMenabled_codecs
section under the room
configuration. Here’s a quick example:
room:
enabled_codecs:
- mime: audio/opus
- mime: video/vp8
- mime: video/h264
This setup lets you enable the codecs you want for publishing tracks in the room. Feel free to customize this list with codecs like H.264, VP8, VP9, or AV1 depending on what you need. If you’d like a hand with this or have any questions, just let me know—I’m here to help!stale-psychiatrist-58431
08/13/2025, 6:23 PMtall-airline-16756
08/13/2025, 6:23 PMstale-psychiatrist-58431
08/13/2025, 6:25 PMtall-airline-16756
08/13/2025, 6:25 PMlk room join --identity publisher --publish <path_to_1080p_video> <room_name>
This will help you check that the server is handling 1080p streams just right. If you run into any questions or want a hand with any step, just let me know—I’m here to help!stale-psychiatrist-58431
08/13/2025, 6:26 PMtall-airline-16756
08/13/2025, 6:26 PMstale-psychiatrist-58431
08/14/2025, 8:32 AMtall-airline-16756
08/14/2025, 8:32 AMstale-psychiatrist-58431
08/14/2025, 8:32 AMtall-airline-16756
08/14/2025, 8:32 AMffprobe
to take a look at the video stream being sent to the server. Just run this command:
`ffprobe -v quiet -print_format json -show_streams <input_stream>`Then, peek at the width
and height
fields in the output to see if it’s 1080p (1920x1080).
2. Monitor Server Logs: Another way is to check the LiveKit server logs. They usually show details about the incoming video tracks, including their resolution.
3. Use Debugging Tools: If you’re using a LiveKit client, try turning on debugging. It’ll show you the video track dimensions that are being sent to the server.
If you want, I’m here to help you walk through any of these steps or tools. Just let me know!stale-psychiatrist-58431
08/14/2025, 8:35 AMtall-airline-16756
08/14/2025, 8:35 AMffprobe
command right on the machine where your video stream is being sent or received. Just use the <input_stream>
as the URL or file path of the video stream you want to check out. Here’s how:
• If you’re working with a video file, just use the file path like this:
ffprobe -v quiet -print_format json -show_streams /path/to/video.mp4
• If you’re looking at a live stream, use the stream URL instead (like an RTMP or WebRTC stream):
ffprobe -v quiet -print_format json -show_streams <rtmp://your-stream-url>
Feel free to reach out if you want a hand figuring out the right input stream or getting ffprobe
set up—I’m here to help!