1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package org.opencastproject.inspection.ffmpeg.api;
24
25
26
27
28
29 public class AudioStreamMetadata extends StreamMetadata {
30
31 private Integer channels;
32 private String channelPositions;
33
34
35 private Integer samplingRate;
36
37 private Long samplingCount;
38
39 private Float replayGain;
40 private Float replayGainPeak;
41
42 private Float interleaveVideoFrames;
43
44 private Integer interleaveDuration;
45
46 private Integer interleavePreload;
47
48 public Integer getChannels() {
49 return channels;
50 }
51
52 public void setChannels(Integer channels) {
53 this.channels = channels;
54 }
55
56 public String getChannelPositions() {
57 return channelPositions;
58 }
59
60 public void setChannelPositions(String channelPositions) {
61 this.channelPositions = channelPositions;
62 }
63
64 public Integer getSamplingRate() {
65 return samplingRate;
66 }
67
68 public void setSamplingRate(Integer samplingRate) {
69 this.samplingRate = samplingRate;
70 }
71
72 public Long getSamplingCount() {
73 return samplingCount;
74 }
75
76 public void setSamplingCount(Long samplingCount) {
77 this.samplingCount = samplingCount;
78 }
79
80 public Float getReplayGain() {
81 return replayGain;
82 }
83
84 public void setReplayGain(Float replayGain) {
85 this.replayGain = replayGain;
86 }
87
88 public Float getReplayGainPeak() {
89 return replayGainPeak;
90 }
91
92 public void setReplayGainPeak(Float replayGainPeak) {
93 this.replayGainPeak = replayGainPeak;
94 }
95
96 public Float getInterleaveVideoFrames() {
97 return interleaveVideoFrames;
98 }
99
100 public void setInterleaveVideoFrames(Float interleaveVideoFrames) {
101 this.interleaveVideoFrames = interleaveVideoFrames;
102 }
103
104 public Integer getInterleaveDuration() {
105 return interleaveDuration;
106 }
107
108 public void setInterleaveDuration(Integer interleaveDuration) {
109 this.interleaveDuration = interleaveDuration;
110 }
111
112 public Integer getInterleavePreload() {
113 return interleavePreload;
114 }
115
116 public void setInterleavePreload(Integer interleavePreload) {
117 this.interleavePreload = interleavePreload;
118 }
119
120 }