File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -24,19 +24,27 @@ const FFMPEG_OPUS_ARGUMENTS = [
24
24
25
25
/**
26
26
* The different types of stream that can exist within the pipeline.
27
- *
28
- * @remarks
29
- * - `Arbitrary` - the type of the stream at this point is unknown.
30
- * - `Raw` - the stream at this point is s16le PCM.
31
- * - `OggOpus` - the stream at this point is Opus audio encoded in an Ogg wrapper.
32
- * - `WebmOpus` - the stream at this point is Opus audio encoded in a WebM wrapper.
33
- * - `Opus` - the stream at this point is Opus audio, and the stream is in object-mode. This is ready to play.
34
27
*/
35
28
export enum StreamType {
29
+ /**
30
+ * The type of the stream at this point is unknown.
31
+ */
36
32
Arbitrary = 'arbitrary' ,
33
+ /**
34
+ * The stream at this point is Opus audio encoded in an Ogg wrapper.
35
+ */
37
36
OggOpus = 'ogg/opus' ,
37
+ /**
38
+ * The stream at this point is Opus audio, and the stream is in object-mode. This is ready to play.
39
+ */
38
40
Opus = 'opus' ,
41
+ /**
42
+ * The stream at this point is s16le PCM.
43
+ */
39
44
Raw = 'raw' ,
45
+ /**
46
+ * The stream at this point is Opus audio encoded in a WebM wrapper.
47
+ */
40
48
WebmOpus = 'webm/opus' ,
41
49
}
42
50
You can’t perform that action at this time.
0 commit comments