mirror of
https://github.com/sifacaii/VlcJellyfin
synced 2025-06-03 00:58:06 -04:00
优化详情页
This commit is contained in:
parent
123011b4d5
commit
e926adf005
@ -0,0 +1,49 @@
|
||||
package org.sifacai.vlcjellyfin.Bean;
|
||||
|
||||
public class MediaAttachments {
|
||||
private String Codec;
|
||||
private String CodecTag;
|
||||
private int Index;
|
||||
private String FileName;
|
||||
private String MimeType;
|
||||
|
||||
public String getCodec() {
|
||||
return Codec;
|
||||
}
|
||||
|
||||
public void setCodec(String codec) {
|
||||
Codec = codec;
|
||||
}
|
||||
|
||||
public String getCodecTag() {
|
||||
return CodecTag;
|
||||
}
|
||||
|
||||
public void setCodecTag(String codecTag) {
|
||||
CodecTag = codecTag;
|
||||
}
|
||||
|
||||
public int getIndex() {
|
||||
return Index;
|
||||
}
|
||||
|
||||
public void setIndex(int index) {
|
||||
Index = index;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return FileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
FileName = fileName;
|
||||
}
|
||||
|
||||
public String getMimeType() {
|
||||
return MimeType;
|
||||
}
|
||||
|
||||
public void setMimeType(String mimeType) {
|
||||
MimeType = mimeType;
|
||||
}
|
||||
}
|
@ -36,7 +36,7 @@ public class MediaSources {
|
||||
private boolean SupportsProbing;
|
||||
private String VideoType;
|
||||
private List<MediaStreams> MediaStreams;
|
||||
private List<String> MediaAttachments;
|
||||
private List<MediaAttachments> MediaAttachments;
|
||||
private List<String> Formats;
|
||||
private long Bitrate;
|
||||
private RequiredHttpHeaders RequiredHttpHeaders;
|
||||
@ -210,10 +210,10 @@ public class MediaSources {
|
||||
return MediaStreams;
|
||||
}
|
||||
|
||||
public void setMediaAttachments(List<String> MediaAttachments) {
|
||||
public void setMediaAttachments(List<MediaAttachments> MediaAttachments) {
|
||||
this.MediaAttachments = MediaAttachments;
|
||||
}
|
||||
public List<String> getMediaAttachments() {
|
||||
public List<MediaAttachments> getMediaAttachments() {
|
||||
return MediaAttachments;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user