Difference between revisions of "Videotypes table"

From MythTV Official Wiki
Jump to: navigation, search
m (table style)
Line 1: Line 1:
{| cellpadding="4"
+
{{Wrongtitle|videotypes table}}
|- bgcolor="#9999ff"
+
The '''videotypes table''' keeps track of how [[MythVideo]] plays certain content.
! Field name !! Type            !! Allow nulls? !! Key     !! Default value !! Extras
+
==Table Description==
|- bgcolor="#cccccc"
+
{| border="1" cellspacing="0" cellpadding="5" style="border-collapse:collapse; border-color:#8eabd0; background:#e7edf5"
 +
|- style="background: lightsteelblue"
 +
! Field name               !! Type            !! Null !! Key !! Default   !! Extras
 +
|-
 
|intid || int(10) unsigned || No || Primary ||  auto_increment ||  
 
|intid || int(10) unsigned || No || Primary ||  auto_increment ||  
|- bgcolor="#cccccc"
+
|-
 
|extension || varchar(128) || No || None || ||
 
|extension || varchar(128) || No || None || ||
|- bgcolor="#cccccc"
+
|-
 
|playcommand || varchar(255) || No || None ||  ||  
 
|playcommand || varchar(255) || No || None ||  ||  
|- bgcolor="#cccccc"
+
|-
 
|f_ignore || tinyint(1) || Yes || None ||    ||
 
|f_ignore || tinyint(1) || Yes || None ||    ||
|- bgcolor="#cccccc"
+
|-
 
|use_default || tinyint(1) || Yes || None || ||
 
|use_default || tinyint(1) || Yes || None || ||
 
|-
 
|-
 
|}
 
|}
  
This keeps track of how myth plays certain content.
+
 
 
<pre>
 
<pre>
 
select * from videotypes;
 
select * from videotypes;

Revision as of 04:23, 14 March 2007

Important.png Note: The correct title of this article is videotypes table. It appears incorrectly here due to technical restrictions.

The videotypes table keeps track of how MythVideo plays certain content.

Table Description

Field name Type Null Key Default Extras
intid int(10) unsigned No Primary auto_increment
extension varchar(128) No None
playcommand varchar(255) No None
f_ignore tinyint(1) Yes None
use_default tinyint(1) Yes None


select * from videotypes;
+-------+-----------+-------------+----------+-------------+ 
| intid | extension | playcommand | f_ignore | use_default | 
+-------+-----------+-------------+----------+-------------+
|     1 | txt       |             |        1 |           0 |
|     2 | log       |             |        1 |           0 |
|     3 | mpg       | Internal    |        0 |           0 |
|     4 | avi       |             |        0 |           1 |
|     5 | vob       | Internal    |        0 |           0 |
|     6 | mpeg      | Internal    |        0 |           0 |
|     7 | VIDEO_TS  | Internal    |        0 |           0 |
|     8 | iso       | Internal    |        0 |           0 |
|     9 | img       | Internal    |        0 |           0 |
+-------+-----------+-------------+----------+-------------+