System: |
|
Fields
TVEpID |
integer |
|
|
|
|
|
|
|
StreamID |
integer |
|
|
|
|
|
|
|
Video_Width |
text |
|
|
|
|
|
|
|
Video_Height |
text |
|
|
|
|
|
|
|
Video_Codec |
text |
|
|
|
|
|
|
|
Video_Duration |
text |
|
|
|
|
|
|
|
Video_ScanType |
text |
|
|
|
|
|
|
|
Video_AspectDisplayRatio |
text |
|
|
|
|
|
|
|
Video_Language |
text |
|
|
|
|
|
|
|
Video_LongLanguage |
text |
|
|
|
|
|
|
|
Video_Bitrate |
text |
|
|
|
|
|
|
|
Video_MultiViewCount |
text |
|
|
|
|
|
|
|
Video_MultiViewLayout |
text |
|
|
|
|
|
|
|
Video_StereoMode |
text |
|
|
|
|
|
|
|
Video_FileSize |
integer |
|
|
|
0 |
|
|
|
Indexes
Foreign keys
There are no foreign keys for table "tvvstreams"
Checks
There are no checks for table "tvvstreams"
Triggers
There are no triggers for table "tvvstreams"
References
There are no references for table "tvvstreams"
Definition:
CREATE TABLE TVVStreams (
TVEpID integer NOT NULL,
StreamID integer NOT NULL,
Video_Width text,
Video_Height text,
Video_Codec text,
Video_Duration text,
Video_ScanType text,
Video_AspectDisplayRatio text,
Video_Language text,
Video_LongLanguage text,
Video_Bitrate text,
Video_MultiViewCount text,
Video_MultiViewLayout text,
Video_StereoMode text,
Video_FileSize integer NOT NULL DEFAULT 0,
PRIMARY KEY (TVEpID, StreamID)
);