临时提交

This commit is contained in:
648540858
2024-03-21 18:21:30 +08:00
parent f96250ef45
commit 913099291b
9 changed files with 18 additions and 22 deletions

View File

@@ -171,7 +171,7 @@ public class StreamContent {
}
this.mediaServerId = streamInfo.getMediaServerId();
this.track = streamInfo.getTracks();
this.track = streamInfo.getTrack();
this.startTime = streamInfo.getStartTime();
this.endTime = streamInfo.getEndTime();
this.progress = streamInfo.getProgress();
@@ -389,12 +389,12 @@ public class StreamContent {
this.mediaServerId = mediaServerId;
}
public Object getTracks() {
return tracks;
public Track getTrack() {
return track;
}
public void setTracks(Object tracks) {
this.tracks = tracks;
public void setTrack(Track track) {
this.track = track;
}
public String getStartTime() {