public enum GapsFixMethod extends Enum<GapsFixMethod>
Gaps are typically caused by packet loss in the input streams, such as when an RTP or WebRTC media flow suffers from network congestion and some packets don't arrive at the media server.
Different ways of handling gaps have different tradeoffs:
For example, assume a session length of 15 seconds: packets arrive correctly during the first 5 seconds, then there is a gap, then data arrives again for the last 5 seconds. Also, for simplicity, assume 1 frame per second. With no fix for gaps, the RecorderEndpoint will store each frame as-is, with these timestamps:
frame 1 - 00:01
frame 2 - 00:02
frame 3 - 00:03
frame 4 - 00:04
frame 5 - 00:05
frame 11 - 00:11
frame 12 - 00:12
frame 13 - 00:13
frame 14 - 00:14
frame 15 - 00:15
Notice how the frames between 6 to 10 are missing, but the last 5 frames still conserve their original timestamp. The total length of the file is detected as 15 seconds by most players, although playback could stutter or hang during the missing section.
In our example, the RecorderEndpoint will change all timestamps that follow a gap in the stream, and store each frame as follows:
frame 1 - 00:01
frame 2 - 00:02
frame 3 - 00:03
frame 4 - 00:04
frame 5 - 00:05
frame 11 - 00:06
frame 12 - 00:07
frame 13 - 00:08
frame 14 - 00:09
frame 15 - 00:10
Notice how the frames between 6 to 10 are missing, and the last 5 frames have their timestamps corrected to provide a smooth increment over the previous ones. The total length of the file is detected as 10 seconds, and playback should be correct throughout the whole file.
This is a proposal for future improvement of the RecorderEndpoint.
It is possible to perform a dynamic adaptation of audio rate and add frame duplication to the video, such that the missing parts are filled with artificial data. This has the advantage of providing a smooth playback result, and at the same time conserving all original timestamps.
However, the main issue with this method is that it requires accessing the decoded media; i.e., transcoding must be active. For this reason, the proposal is to offer this option to be enabled only when transcoding would still happen anyways.
In our example, the RecorderEndpoint would change all missing frames like this:
frame 1 - 00:01
frame 2 - 00:02
frame 3 - 00:03
frame 4 - 00:04
frame 5 - 00:05
fake frame - 00:06
fake frame - 00:07
fake frame - 00:08
fake frame - 00:09
fake frame - 00:10
frame 11 - 00:11
frame 12 - 00:12
frame 13 - 00:13
frame 14 - 00:14
frame 15 - 00:15
This joins the best of both worlds: on one hand, the playback should be smooth and even the most basic players should be able to handle the recording files without issue. On the other, the total length of the file is left unmodified, so it matches with the expected duration of the sessions that are being recorded.
| Enum Constant and Description |
|---|
FILL_IF_TRANSCODING |
GENPTS |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static GapsFixMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GapsFixMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GapsFixMethod NONE
public static final GapsFixMethod GENPTS
public static final GapsFixMethod FILL_IF_TRANSCODING
public static GapsFixMethod[] values()
for (GapsFixMethod c : GapsFixMethod.values()) System.out.println(c);
public static GapsFixMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 Kurento. All rights reserved.